html,
body {
    width: 100%;
    overflow-x: clip;
}

img,
video {
    max-width: 100%;
    height: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: #333;
    overflow-x: clip;
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ANIMATION UTILITIES ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 {
    transition-delay: 0.1s;
}
.stagger-2 {
    transition-delay: 0.2s;
}
.stagger-3 {
    transition-delay: 0.3s;
}
.stagger-4 {
    transition-delay: 0.4s;
}
.stagger-5 {
    transition-delay: 0.5s;
}
.stagger-6 {
    transition-delay: 0.6s;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.6s ease,
        height 0.6s ease;
}
.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-red {
    background: #cc3636;
    color: white;
}
.btn-red:hover {
    background: #b02e2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(204, 54, 54, 0.3);
}

.btn-green {
    background: #397f3d;
    color: white;
}
.btn-green:hover {
    background: #2d6630;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(57, 127, 61, 0.3);
}

.btn-dark {
    background: #ed6838;
    color: white;
    border-radius: 25px;
    padding: 14px 35px;
}
.btn-dark:hover {
    background: #d55a2d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(237, 104, 56, 0.3);
}

/* Toasts used by public forms */
.toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    max-width: min(92vw, 360px);
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
    display: none;
    z-index: 9999;
    color: #fff;
    font-weight: 600;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 4px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-outline-white:hover {
    background: white;
    color: #cc3636;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-send {
    background: #397f3d;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}
.btn-send:hover {
    background: #234a1f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(57, 127, 61, 0.3);
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    background-color: white;
    padding: 6px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.6s ease forwards;
}

.navbar-logo {
    flex-shrink: 0;
    text-decoration: none;
}
.navbar-logo img {
    max-width: 68px;
    height: auto;
    display: block;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: flex-end;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    transition:
        color 0.3s ease,
        background 0.3s ease;
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
    color: #cc3636;
    background: rgba(204, 54, 54, 0.06);
}

.navbar-cta {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.navbar-cta .btn {
    padding: 6px 14px;
    font-size: 12px;
}

/* Hamburger toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}
.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.navbar-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar-toggle.open span:nth-child(2) {
    opacity: 0;
}
.navbar-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 80px;
    font-weight: 400;
    color: white;
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: 4px;
    text-transform: uppercase;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero h2 {
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    letter-spacing: 2px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero p {
    color: #e0e0e0;
    max-width: 580px;
    margin: 0 auto 32px;
    font-size: 17px;
    line-height: 1.7;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}
.hero-buttons .btn {
    padding: 16px 44px;
    font-size: 18px;
    border-radius: 6px;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
}
.hero-dot.active {
    background: white;
}

/* ===== BANNER STRIP ===== */
.banner-strip {
    background: #1a1a1a;
    color: white;
}

.banner-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 260px;
}

.banner-strip-image {
    overflow: hidden;
}
.banner-strip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.banner-strip-image:hover img {
    transform: scale(1.04);
}

.banner-strip-text {
    display: flex;
    align-items: center;
    padding: 36px 40px;
}
.banner-strip-text p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Playfair Display", serif;
    font-style: italic;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: white;
    padding: 100px 40px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text h2 {
    font-family: "Outfit", sans-serif;
    font-size: 44px;
    font-weight: 700;
    font-style: italic;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.about-text p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}
.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== SIGNATURE DISHES ===== */
.signature-dishes {
    background: #cc3636;
    padding: 100px 40px;
    text-align: center;
}

.signature-header h2 {
    font-family: "Outfit", sans-serif;
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    color: white;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.signature-rows {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sig-row {
    display: flex;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.sig-row--reverse {
    flex-direction: row-reverse;
}

.sig-image {
    flex: 1;
    overflow: hidden;
}
.sig-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.sig-row:hover .sig-image img {
    transform: scale(1.05);
}

.sig-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    text-align: left;
    background: rgba(0, 0, 0, 0.18);
}

.sig-content h3 {
    font-family: "Outfit", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.sig-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.sig-content .btn-outline-white {
    align-self: flex-start;
}

/* ===== MOMENTS SECTION ===== */
.moments-section {
    background: white;
    padding: 100px 40px;
    text-align: center;
}

.moments-section h2 {
    font-family: "Outfit", sans-serif;
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    color: #333;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.moments-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.moments-photo {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
    position: relative;
}
.moments-photo:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.moments-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.moments-photo:hover img {
    transform: scale(1.08);
}

.moments-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95),
        rgba(0, 0, 0, 0.6)
    );
    color: white;
    padding: 40px 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 0;
    opacity: 0;
    transition:
        height 0.4s ease,
        opacity 0.4s ease;
    gap: 8px;
    text-align: center;
}

.moments-photo:hover .moments-overlay {
    height: 100%;
    opacity: 1;
}

.moments-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: white;
    font-family: "Outfit", sans-serif;
}

.moments-overlay p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.btn-sm {
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
}

.btn-white {
    background-color: white;
    color: #333;
    border: 2px solid white;
}

.btn-white:hover {
    background-color: transparent;
    color: white;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: #cc3636;
    padding: 100px 40px;
    text-align: center;
    color: white;
}

.reviews-section h2 {
    font-family: "Outfit", sans-serif;
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    color: white;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

/* ===== Reviews slider ===== */
.reviews-slider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}

.reviews-viewport {
    overflow: hidden;
    flex: 1;
    padding: 10px 0;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.reviews-track .review-card {
    /* 3 cards visible, accounting for two 30px gaps */
    flex: 0 0 calc((100% - 60px) / 3);
}

.reviews-arrow {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #cc3636;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.reviews-arrow:hover {
    transform: scale(1.08);
}

.reviews-arrow:disabled {
    opacity: 0.4;
    cursor: default;
    transform: none;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.reviews-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.reviews-dots button.active {
    background: white;
    transform: scale(1.25);
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 36px 30px;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.review-stars {
    color: #f5a623;
    font-size: 22px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-size: 13px;
    font-weight: 600;
    color: #397f3d;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: white;
    padding: 100px 40px;
}

.faq-section h2 {
    font-family: "Outfit", sans-serif;
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e8e8e8;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 22px 0;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-question h3 {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: #cc3636;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    padding-bottom: 22px;
}

/* ===== INQUIRY SECTION ===== */
.inquiry-section {
    background: #cc3636;
    padding: 100px 40px;
    color: white;
}

.inquiry-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.inquiry-info h2 {
    font-family: "Outfit", sans-serif;
    font-size: 44px;
    font-weight: 700;
    font-style: italic;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.inquiry-info > p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.inquiry-contact-details p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
    line-height: 1.5;
}
.inquiry-contact-details a {
    color: white;
    text-decoration: underline;
}
.inquiry-contact-details a:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}
.social-icons a {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cc3636;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.social-icons a:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.inquiry-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.inquiry-form-wrapper label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.inquiry-form-wrapper input[type="text"],
.inquiry-form-wrapper input[type="tel"],
.inquiry-form-wrapper input[type="datetime-local"],
.inquiry-form-wrapper textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    color: #333;
}

.inquiry-form-wrapper input:focus,
.inquiry-form-wrapper textarea:focus {
    outline: none;
    border-color: #cc3636;
    box-shadow: 0 0 0 3px rgba(204, 54, 54, 0.1);
}

.inquiry-form-wrapper textarea {
    height: 110px;
    resize: vertical;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background: white;
    padding: 100px 40px;
    text-align: center;
}

.blog-section h2 {
    font-family: "Outfit", sans-serif;
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    color: #333;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.07);
}

.blog-card-body {
    padding: 28px;
}

.blog-tag {
    display: inline-block;
    background: rgba(204, 54, 54, 0.1);
    color: #cc3636;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.blog-card-body h3 {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-body p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    color: #cc3636;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}
.blog-read-more:hover {
    color: #a02c2c;
}

.blog-cta {
    margin-top: 50px;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background: #f9f9f9;
    padding: 100px 40px;
}

.location-section h2 {
    font-family: "Outfit", sans-serif;
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.location-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.nap-block {
    background: white;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    margin-bottom: 24px;
    border-left: 4px solid #cc3636;
}

.nap-item {
    margin-bottom: 24px;
}
.nap-item:last-child {
    margin-bottom: 0;
}

.nap-item h4 {
    font-size: 12px;
    font-weight: 700;
    color: #cc3636;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.nap-item p,
.nap-item a {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
}
.nap-item a:hover {
    color: #cc3636;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
}
.hours-row:last-child {
    border-bottom: none;
}
.hours-row .day {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}
.hours-row .time {
    color: #666;
    font-size: 14px;
}

.directions-box {
    background: white;
    border-radius: 12px;
    padding: 30px 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border-left: 4px solid #397f3d;
}

.directions-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 18px;
}

.directions-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.directions-btn {
    margin-top: 16px;
    padding: 12px 28px;
    font-size: 14px;
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}
.location-map:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.footer-brand h4 {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}
.footer-brand {
    padding-right: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: background 0.3s ease;
}
.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.15);
}
.newsletter-form button {
    padding: 12px 20px;
    background: #cc3636;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}
.newsletter-form button:hover {
    background: #a02c2c;
    transform: translateY(-2px);
}

.footer-column h4 {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-column ul li a:hover {
    color: #cc3636;
}

.footer-hours {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}
.footer-hours p {
    margin-bottom: 12px;
}
.footer-hours .day {
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.footer-contact-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    line-height: 1.6;
}
.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact-info a:hover {
    color: #cc3636;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-links {
    display: flex;
    gap: 25px;
}
.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: white;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .navbar {
        padding: 12px 24px;
    }
    .nav-link {
        font-size: 13px;
        padding: 5px 8px;
    }

    .about-content {
        gap: 40px;
    }
    .about-text h2 {
        font-size: 36px;
    }

    .sig-row {
        flex-direction: column;
        min-height: auto;
    }
    .sig-row--reverse {
        flex-direction: column;
    }
    .sig-image {
        height: 300px;
    }
    .sig-content {
        padding: 40px 30px;
    }

    .moments-gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    .blog-cards {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
        flex-wrap: wrap;
        position: relative;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 999;
    }
    .navbar-menu.open {
        display: flex;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        width: 100%;
        margin-bottom: 16px;
    }
    .nav-link {
        display: block;
        width: 100%;
        font-size: 15px;
        padding: 10px 8px;
    }

    .navbar-cta {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .navbar-cta .btn {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 52px;
    }
    .hero h2 {
        font-size: 20px;
    }
    .hero p {
        font-size: 15px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 80%;
        text-align: center;
        padding: 14px;
        font-size: 16px;
    }

    .banner-strip-inner {
        grid-template-columns: 1fr;
    }
    .banner-strip-image {
        height: 300px;
    }
    .banner-strip-text {
        padding: 40px 30px;
    }
    .banner-strip-text p {
        font-size: 16px;
    }

    .about-section {
        padding: 70px 24px;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-text h2 {
        font-size: 32px;
    }
    .about-image {
        height: 360px;
    }

    .signature-dishes {
        padding: 70px 24px;
    }
    .signature-header h2 {
        font-size: 36px;
    }
    .sig-row {
        flex-direction: column;
        min-height: auto;
    }
    .sig-row--reverse {
        flex-direction: column;
    }
    .sig-image {
        height: 260px;
        flex: none;
    }
    .sig-content {
        padding: 30px 24px;
    }
    .sig-content h3 {
        font-size: 28px;
    }
    .sig-content .btn-outline-white {
        align-self: flex-start;
    }

    .moments-section {
        padding: 70px 24px;
    }
    .moments-section h2 {
        font-size: 36px;
    }
    .moments-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-section {
        padding: 70px 24px;
    }
    .reviews-section h2 {
        font-size: 36px;
    }
    .reviews-track .review-card {
        flex: 0 0 100%;
    }
    .reviews-slider {
        gap: 6px;
    }
    .reviews-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .faq-section {
        padding: 70px 24px;
    }
    .faq-section h2 {
        font-size: 36px;
    }

    .inquiry-section {
        padding: 70px 24px;
    }
    .inquiry-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .inquiry-info h2 {
        font-size: 32px;
    }
    .inquiry-form-wrapper {
        padding: 24px;
    }

    .blog-section {
        padding: 70px 24px;
    }
    .blog-section h2 {
        font-size: 36px;
    }
    .blog-cards {
        grid-template-columns: 1fr;
    }

    .location-section {
        padding: 70px 24px;
    }
    .location-section h2 {
        font-size: 36px;
    }
    .location-layout {
        grid-template-columns: 1fr;
    }
    .location-map {
        min-height: 340px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    .footer-brand {
        grid-column: span 2;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Small phones */
@media (max-width: 500px) {
    .navbar-logo img {
        max-width: 75px;
    }

    .hero {
        min-height: 80vh;
    }
    .hero h1 {
        font-size: 38px;
        letter-spacing: 2px;
    }
    .hero h2 {
        font-size: 16px;
    }

    .moments-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .sig-image {
        height: 220px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .about-section,
    .signature-dishes,
    .moments-section,
    .reviews-section,
    .faq-section,
    .inquiry-section,
    .blog-section,
    .location-section {
        padding: 60px 20px;
    }
}

/* ===== PAGE HERO BANNER (About & Contact pages) ===== */
.page-hero {
    background: linear-gradient(135deg, #cc3636 0%, #a02c2c 100%);
    padding: 90px 40px 80px;
    text-align: center;
    color: white;
}
.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}
.page-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    letter-spacing: 3px;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease forwards;
}
.page-hero p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.breadcrumb {
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 16px;
    animation: fadeIn 0.6s ease forwards;
}
.breadcrumb a { color: white; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== ABOUT PAGE ===== */
.story-section {
    padding: 90px 40px;
    background: #fff;
}
.story-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.story-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}
.story-text h2 span { color: #cc3636; }
.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}
.story-highlight {
    border-left: 4px solid #cc3636;
    padding: 12px 20px;
    font-style: italic;
    color: #333;
    margin: 28px 0;
    background: rgba(204,54,54,0.04);
    border-radius: 0 8px 8px 0;
}

.values-section {
    background: #f9f9f9;
    padding: 90px 40px;
    text-align: center;
}
.values-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}
.values-section > p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.7;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.value-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #cc3636;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(204,54,54,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
}
.value-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.nepal-section {
    background: #cc3636;
    color: white;
    padding: 90px 40px;
}
.nepal-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.nepal-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.nepal-text p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 18px;
}
.nepal-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}
.stat-item {
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
}
.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nepal-image img {
    width: 100%;
    border-radius: 12px;
    height: 440px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 40px auto 0;
}
.about-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 240px;
}
.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.about-gallery-item:hover img { transform: scale(1.05); }

.about-cta-section {
    background: #1a1a1a;
    padding: 80px 40px;
    text-align: center;
    color: white;
}
.about-cta-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 16px;
}
.about-cta-section p {
    font-size: 17px;
    opacity: 0.8;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 90px 40px;
    background: #fff;
}
.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.contact-info h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-style: italic;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.contact-info > p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(204,54,54,0.09);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}
.contact-detail-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.contact-detail-text p,
.contact-detail-text a {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    text-decoration: none;
}
.contact-detail-text a:hover { color: #cc3636; }
.contact-hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 16px;
    margin-top: 4px;
}
.contact-hours-grid span { font-size: 14px; color: #555; }
.contact-hours-grid .day { font-weight: 600; color: #333; }
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}
.contact-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #cc3636;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}
.contact-social a:hover { background: #a02c2c; transform: translateY(-3px); }

.contact-form-wrap {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 44px 40px;
}
.contact-form-wrap h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #cc3636;
    box-shadow: 0 0 0 3px rgba(204,54,54,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-submit { width: 100%; margin-top: 8px; padding: 14px; font-size: 16px; }

.map-section { background: #f9f9f9; }
.map-section iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
}

/* ===== RESPONSIVE: ABOUT + CONTACT pages ===== */
@media (max-width: 1024px) {
    .story-inner, .nepal-inner { gap: 40px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-inner { gap: 40px; }
}
@media (max-width: 768px) {
    .page-hero { padding: 60px 20px 50px; }
    .page-hero h1 { font-size: 44px; }
    .page-hero p { font-size: 16px; }

    .story-section, .values-section, .nepal-section, .about-cta-section, .contact-section {
        padding: 60px 20px;
    }
    .story-inner { grid-template-columns: 1fr; gap: 36px; }
    .story-text h2 { font-size: 30px; }
    .values-section h2, .nepal-text h2, .about-cta-section h2 { font-size: 30px; }
    .values-grid { grid-template-columns: 1fr; }

    .nepal-inner { grid-template-columns: 1fr; gap: 36px; }
    .nepal-image { order: -1; }
    .nepal-image img { height: 260px; }
    .nepal-stats { grid-template-columns: 1fr 1fr; }

    .about-gallery-grid { grid-template-columns: 1fr 1fr; }
    .about-gallery-item { height: 180px; }

    .about-cta-section .btn-group { flex-direction: column; align-items: center; }

    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-info h2 { font-size: 30px; }
    .contact-form-wrap { padding: 30px 22px; }
    .form-row { grid-template-columns: 1fr; }
    .map-section iframe { height: 300px; }
}
@media (max-width: 500px) {
    .about-gallery-grid { grid-template-columns: 1fr; }
    .nepal-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== TEAM SECTION ===== */
.team-section {
    background: #fff;
    padding: 90px 40px;
    text-align: center;
}
.team-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}
.team-section > p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.7;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}
.team-card {
    background: #f9f9f9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.team-card-photo {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #cc3636 0%, #a02c2c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}
.team-card-body { padding: 24px 22px; }
.team-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.team-role {
    font-size: 12px;
    color: #cc3636;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    display: block;
}
.team-card-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ===== JOURNEY / TIMELINE ===== */
.timeline-section {
    background: #f9f9f9;
    padding: 90px 40px;
    text-align: center;
}
.timeline-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}
.timeline-section > p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.7;
}
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.timeline-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: #cc3636;
    opacity: 0.3;
}
.timeline-card {
    position: relative;
    padding: 0 20px;
    text-align: center;
}
.timeline-year-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
    color: white;
    background: #cc3636;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(204,54,54,0.35);
}
.timeline-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.timeline-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
}

/* ===== CONTACT PAGE FAQ ===== */
.contact-faq-section {
    background: #fff;
    padding: 80px 40px;
    text-align: center;
}
.contact-faq-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}
.contact-faq-section > p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 46px;
    line-height: 1.7;
}
.contact-faq-list {
    max-width: 780px;
    margin: 0 auto;
    text-align: left;
}
.contact-faq-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 22px 26px;
    margin-bottom: 14px;
    border-left: 4px solid #cc3636;
}
.contact-faq-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.contact-faq-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive: team, timeline, contact FAQ */
@media (max-width: 1024px) {
    .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .timeline-grid::before { display: none; }
    .team-grid { grid-template-columns: repeat(2, 1fr); max-width: 680px; }
}
@media (max-width: 768px) {
    .team-section, .timeline-section, .contact-faq-section { padding: 60px 20px; }
    .team-grid { grid-template-columns: 1fr; max-width: 400px; }
    .team-section h2, .timeline-section h2, .contact-faq-section h2 { font-size: 30px; }
    .timeline-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 500px) {
    .timeline-grid { grid-template-columns: 1fr; }
}

