.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    position: relative;
}

.hero-left {
    width: 45%;
}

.tag {
    color: #C8A24A;
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 20px;
}

.title {
    font-family: "Cormorant Garamond";
    font-size: 80px;
    line-height: 1;
}

.desc {
    margin-top: 20px;
    opacity: .6;
    max-width: 420px;
    line-height: 1.8;
}

/* GLOBAL LIGHT LUXURY PAGE HEADER DESIGN */
.page-header {
    background: #FAF8F5;
    /* Very soft light luxury background */
    position: relative;
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(200, 162, 74, 0.15);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    width: 100%;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(100, 48, 133, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(200, 162, 74, 0.05) 0%, transparent 60%),
        linear-gradient(rgba(200, 162, 74, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 162, 74, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    opacity: 0.85;
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C8A24A, transparent);
}

.page-header .tag {
    font-family: 'Great Vibes', cursive;
    font-size: 30px;
    color: #643085;
    /* Changed tag to primary purple for excellent contrast and luxury feel! */
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: inline-block;
}

/* SVG Text Writing/Handwriting style animation */
.svg-title-container {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.svg-header-title {
    width: 100%;
    height: auto;
    overflow: visible;
    display: block;
}

.svg-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 2px;
    fill: rgba(100, 48, 133, 0);
    /* Start with invisible fill */
    stroke: #C8A24A;
    /* Stroke color gold */
    stroke-width: 1.5;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawSvgText 3.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes drawSvgText {
    0% {
        stroke-dashoffset: 1200;
        fill: rgba(100, 48, 133, 0);
    }

    70% {
        stroke-dashoffset: 0;
        fill: rgba(100, 48, 133, 0);
        stroke: #C8A24A;
    }

    100% {
        stroke-dashoffset: 0;
        fill: rgba(100, 48, 133, 1);
        /* Fill with primary purple at the end */
        stroke: rgba(200, 162, 74, 0.4);
        /* Softer gold outline border */
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 50px 0;
    }

    .page-header .container {
        padding: 0;
        max-width: 90%;
    }

    .svg-text {
        font-size: 60px;
    }
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 30px;
}

.btn {
    background: #643085;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    cursor: pointer;
}

.link {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.hero-right .img-wrapper {
    width: 440px;
    margin-left: auto;
}

.hero-right img,
.hero-right video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 60px 120px rgba(0, 0, 0, .15);
}

/* =========================
   HERO DEPTH BACKGROUND
========================= */

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(200, 162, 74, .12), transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(100, 48, 133, .10), transparent 55%);
    z-index: -1;
}

/* =========================
   LEFT ENHANCEMENT
========================= */

.line {
    width: 80px;
    height: 2px;
    background: #C8A24A;
    margin: 25px 0;
}

/* =========================
   IMAGE WRAPPER (LUXURY FRAME)
========================= */

.img-wrapper {
    position: relative;
    padding: 18px;
}

.img-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(200, 162, 74, .5);
    transform: rotate(-2deg);
    border-radius: 30px;
}

.img-wrapper img,
.img-wrapper video {
    width: 100%;
    border-radius: 24px;
    display: block;
}

/* =========================
   FLOATING CARD
========================= */

.floating-card {
    position: absolute;
    bottom: 60px;
    left: -80px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .12);
}

.floating-card h2 {
    font-family: "Cormorant Garamond";
    font-size: 48px;
    color: #643085;
    line-height: 1;
}

/* =========================
   ABOUT SECTION
========================= */

.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 8%;
    background: #fff;
    gap: 80px;
}

/* LEFT IMAGE */

.about-image {
    position: relative;
}

.about-image img {
    width: 520px;
    border-radius: 25px;
    box-shadow: 0 60px 120px rgba(0, 0, 0, .12);
}

/* IMAGE FRAME EFFECT */

.about-image::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(200, 162, 74, .4);
    border-radius: 25px;
    transform: rotate(2deg);
    z-index: -1;
}

/* RIGHT CONTENT */

.about-tag {
    color: #C8A24A;
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 20px;
}

.about-title {
    font-family: "Cormorant Garamond";
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-line {
    width: 80px;
    height: 2px;
    background: #C8A24A;
    margin: 25px 0;
}

.about-text {
    max-width: 500px;
    line-height: 1.9;
    opacity: .7;
}

/* STATS */

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.about-stats h3 {
    font-size: 34px;
    font-family: "Cormorant Garamond";
    color: #643085;
}

.services {
    padding: 120px 0;
    background: #F7F4EF;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.services-head {
    text-align: center;
    margin-bottom: 70px;
}

.tag {
    color: #C8A24A;
    letter-spacing: 3px;
    font-size: 12px;
}

.title {
    font-family: "Cormorant Garamond";
    font-size: 60px;
    margin-top: 20px;
}

/* GRID FIX */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 8%;
}

/* CARD FIX */

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .08);
}

.service-card .img {
    height: 260px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    padding: 20px;
    font-family: "Cormorant Garamond";
    font-size: 24px;
}

.service-card p {
    padding: 0 20px 25px;
    opacity: .7;
}

/* ==========================================================================
   CUISINES SECTION
   ========================================================================== */
.cuisines {
    padding: 120px 8%;
    background: #fff;
}

.cuisines-head {
    text-align: center;
    margin-bottom: 70px;
}

.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.cuisine-card {
    background: #F7F4EF;
    border-radius: 24px;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(200, 162, 74, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.cuisine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(100, 48, 133, 0.08);
    border-color: rgba(200, 162, 74, 0.4);
}

.cuisine-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.cuisine-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cuisine-card:hover .cuisine-img img {
    transform: scale(1.08);
}

.cuisine-info {
    padding: 30px;
}

.cuisine-info h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    color: #643085;
    margin-bottom: 12px;
    font-weight: 600;
}

.cuisine-info p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.7;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
    padding: 120px 8%;
    background: #F7F4EF;
}

.testimonials-head {
    text-align: center;
    margin-bottom: 70px;
}

.testimonial-carousel-container {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 80px;
    border-radius: 30px;
    border: 1px solid rgba(200, 162, 74, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.carousel-quote-icon {
    font-size: 54px;
    color: rgba(200, 162, 74, 0.25);
    margin-bottom: 25px;
    line-height: 1;
}

.testimonial-content-wrapper {
    width: 100%;
}

.quote-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 30px;
    font-style: italic;
    min-height: 100px;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.client-info .stars {
    color: #C8A24A;
    font-size: 13px;
    display: flex;
    gap: 4px;
}

.client-info h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 12px;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.control-btn {
    background: none;
    border: 1px solid rgba(200, 162, 74, 0.3);
    color: #C8A24A;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.control-btn:hover {
    background: #C8A24A;
    color: #fff;
    border-color: #C8A24A;
    box-shadow: 0 8px 20px rgba(200, 162, 74, 0.2);
    transform: translateY(-2px);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(200, 162, 74, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #643085;
    width: 24px;
    border-radius: 10px;
}

/* ==========================================================================
   BOOKING & MAP SECTION
   ========================================================================== */
.booking-section {
    padding: 120px 8%;
    background: #fff;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
}

.booking-form-container {
    background: #F7F4EF;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(200, 162, 74, 0.2);
}

.booking-form-container .title {
    font-size: 54px;
    margin-bottom: 35px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    background: #fff;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #111;
    outline: none;
    transition: all 0.3s ease;
}

.booking-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23111'%3E%3Cpath d='M6 8.825L1.175 4 2.59 2.59 6 6l3.41-3.41L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #C8A24A;
    box-shadow: 0 0 10px rgba(200, 162, 74, 0.15);
}

.booking-form textarea {
    resize: none;
}

.booking-form button {
    border: none;
    font-weight: 600;
    align-self: flex-start;
    padding: 16px 40px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(100, 48, 133, 0.2);
}

.booking-form button:hover {
    background: #C8A24A;
    color: #fff;
    transform: translateY(-2px);
}

.contact-map-container .title {
    font-size: 54px;
    margin-bottom: 35px;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid rgba(200, 162, 74, 0.2);
}

.map-wrapper iframe {
    filter: sepia(30%) contrast(100%) brightness(95%);
    display: block;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-details p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-details p i {
    color: #C8A24A;
    font-size: 16px;
    margin-top: 3px;
}

.whatsapp-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 14px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    align-self: flex-start;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: all 0.3s;
    margin-top: 10px;
}

.whatsapp-link-btn:hover {
    background: #20ba5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose {
    padding: 120px 8%;
    background: #F7F4EF;
}

.why-choose-head {
    text-align: center;
    margin-bottom: 70px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(200, 162, 74, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 162, 74, 0.4);
    box-shadow: 0 30px 60px rgba(100, 48, 133, 0.08);
}

.why-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    font-weight: 700;
    color: rgba(100, 48, 133, 0.15);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.why-card:hover .why-number {
    color: #C8A24A;
}

.why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #111;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Viewports <= 1200px */
@media (max-width: 1200px) {
    .title {
        font-size: 64px;
    }

    .hero-right .img-wrapper {
        width: 370px;
    }

    .about-image img {
        width: 440px;
    }

    .about-stats {
        gap: 30px;
    }
}

/* Viewports <= 992px */
@media (max-width: 992px) {
    .nav {
        padding: 20px 40px;
        background: #F7F4EF;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .mobile-toggle {
        display: flex;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        padding: 50px;
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.08);
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 999;
    }

    .menu.active {
        right: 0;
    }

    .nav-btn {
        display: none;
        /* Hide top bar button, handle dynamic bookings */
    }

    .hero {
        height: auto;
        flex-direction: column-reverse;
        padding: 130px 8% 70px;
        gap: 50px;
        text-align: center;
    }

    .hero-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-left .line {
        margin: 20px auto;
    }

    .desc {
        max-width: 500px;
    }

    .hero-right {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .img-wrapper {
        max-width: 440px;
        width: 100%;
    }

    .img-wrapper img,
    .img-wrapper video {
        width: 100%;
    }

    .about {
        flex-direction: column;
        padding: 80px 8%;
        gap: 50px;
        text-align: center;
    }

    .about-image {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .about-image img {
        width: 100%;
        max-width: 460px;
    }

    .about-image::before {
        display: none;
        /* Simplify on mobile */
    }

    .about-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-line {
        margin: 20px auto;
    }

    .about-stats {
        justify-content: center;
        width: 100%;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 4%;
    }

    .cuisine-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-carousel-container {
        padding: 50px 40px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 4%;
    }

    .footer-about {
        grid-column: span 2;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Viewports <= 768px */
@media (max-width: 768px) {
    .title {
        font-size: 48px;
    }

    .about-title,
    .services-head .title,
    .cuisines-head .title,
    .testimonials-head .title,
    .booking-form-container .title,
    .contact-map-container .title {
        font-size: 42px;
    }

    .hero {
        padding-top: 110px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: auto;
    }

    .cuisine-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: auto;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: auto;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .booking-form-container {
        padding: 30px 20px;
    }

    .booking-form button {
        width: 100%;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Viewports <= 576px */
@media (max-width: 576px) {
    .nav {
        padding: 15px 25px;
    }

    .logo {
        font-size: 24px;
    }

    .title {
        font-size: 38px;
    }

    .about-title,
    .services-head .title,
    .cuisines-head .title,
    .testimonials-head .title,
    .booking-form-container .title,
    .contact-map-container .title,
    .why-choose-head .title {
        font-size: 34px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-actions .link {
        justify-content: center;
    }

    .testimonial-carousel-container {
        padding: 40px 20px;
    }

    .quote-text {
        font-size: 18px;
    }
}

/* ==========================================================================
   GOURMET STATION SECTION
   ========================================================================== */
.gourmet-station {
    padding: 120px 8%;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.gourmet-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.gourmet-left {
    display: flex;
    flex-direction: column;
}

.line-gold {
    width: 80px;
    height: 2px;
    background: #C8A24A;
    margin: 20px 0 30px;
}

.gourmet-text {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
}

.btn-explore {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #643085;
    color: #643085;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
}

.btn-explore:hover {
    background: #643085;
    color: #fff;
    box-shadow: 0 10px 25px rgba(100, 48, 133, 0.25);
    transform: translateY(-2px);
}

.gourmet-right {
    display: flex;
    justify-content: center;
}

.logo-circle-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(200, 162, 74, 0.4);
    border-radius: 50%;
    animation: rotateRing 25s linear infinite;
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.logo-circle {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: radial-gradient(circle, #643085 0%, #3e1b55 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(100, 48, 133, 0.25);
    border: 4px solid #C8A24A;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.logo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(100, 48, 133, 0.35);
}

.brand-monogram {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 700;
    color: #C8A24A;
    line-height: 1;
    letter-spacing: 2px;
}

.brand-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 10px;
    color: #fff;
}

.brand-est {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 5px;
}

/* ==========================================================================
   GOURMET STATION RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
    .gourmet-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .line-gold {
        margin: 20px auto 30px;
    }

    .btn-explore {
        align-self: center;
    }

    .logo-circle-container {
        width: 270px;
        height: 270px;
    }

    .logo-circle {
        width: 230px;
        height: 230px;
    }

    .brand-monogram {
        font-size: 64px;
    }
}

@media (max-width: 576px) {
    .logo-circle-container {
        width: 220px;
        height: 220px;
    }

    .logo-circle {
        width: 180px;
        height: 180px;
    }

    .brand-monogram {
        font-size: 50px;
    }

    .brand-subtext {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .gourmet-station {
        padding: 80px 8%;
    }
}

/* ==========================================================================
   CORPORATE CLIENTS SECTION (INFINITE MARQUEE)
   ========================================================================== */
.corporate-clients {
    padding: 60px 0;
    background: #F7F4EF;
    border-top: 1px solid rgba(200, 162, 74, 0.15);
    border-bottom: 1px solid rgba(200, 162, 74, 0.15);
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #F7F4EF 0%, rgba(247, 244, 239, 0) 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #F7F4EF 0%, rgba(247, 244, 239, 0) 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-item {
    padding: 0 60px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #643085;
    opacity: 0.35;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.marquee-item i {
    font-size: 24px;
    color: #C8A24A;
}

.marquee-item:hover {
    opacity: 0.85;
    color: #643085;
}

@keyframes marqueeScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .corporate-clients {
        padding: 40px 0;
    }

    .marquee-item {
        font-size: 16px;
        padding: 0 40px;
    }

    .marquee-item i {
        font-size: 18px;
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: 80px;
    }
}

/* ==========================================================================
   PROFILE PAGE - FOUNDERS REDESIGN (EDITORIAL)
   ========================================================================== */
.founders {
    padding: 140px 8%;
    background-color: #F7F4EF;
    overflow: hidden;
    position: relative;
}

.founders-head {
    text-align: center;
    margin-bottom: 70px;
}

.founders-head .line-gold {
    margin: 20px auto 0;
}

.founders-editorial {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 80px;
}

.founder-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.founder-row.reverse {
    flex-direction: row-reverse;
}

.founder-editorial-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.editorial-monogram {
    font-family: 'Cormorant Garamond', serif;
    font-size: 180px;
    font-weight: 700;
    color: rgba(100, 48, 133, 0.05);
    line-height: 1;
    text-align: center;
    border: 2px solid rgba(200, 162, 74, 0.15);
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.editorial-monogram img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-row:hover .editorial-monogram {
    color: rgba(200, 162, 74, 0.25);
    border-color: rgba(200, 162, 74, 0.5);
    transform: scale(1.05) rotate(10deg);
    box-shadow: 0 20px 40px rgba(200, 162, 74, 0.06);
}

.founder-editorial-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
}

.editorial-tag {
    font-size: 11px;
    color: #C8A24A;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
}

.editorial-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    color: #111;
    font-weight: 600;
    margin-bottom: 5px;
}

.editorial-title {
    font-size: 14px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 25px;
}

.editorial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: #643085;
    border-left: 3px solid #C8A24A;
    padding-left: 20px;
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 500;
}

.founder-row.reverse .editorial-quote {
    border-left: none;
    border-right: 3px solid #C8A24A;
    padding-left: 0;
    padding-right: 20px;
    text-align: right;
}

.editorial-desc {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.8;
    color: #333;
    max-width: 95%;
}

.founder-row.reverse .editorial-desc {
    text-align: right;
    align-self: flex-end;
}

@media (max-width: 992px) {
    .founders-editorial {
        gap: 80px;
    }

    .founder-row,
    .founder-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .editorial-quote,
    .founder-row.reverse .editorial-quote {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(200, 162, 74, 0.3);
        border-bottom: 1px solid rgba(200, 162, 74, 0.3);
        padding: 15px 0;
        max-width: 90%;
        margin: 0 auto 25px;
        text-align: center;
    }

    .editorial-desc,
    .founder-row.reverse .editorial-desc {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .editorial-monogram {
        width: 200px;
        height: 200px;
        font-size: 140px;
    }

    .editorial-name {
        font-size: 32px;
    }
}

/* ==========================================================================
   SERVICES PAGE - EDITORIAL REDESIGN
   ========================================================================== */
.services-editorial {
    padding: 140px 8%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.editorial-services-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 80px;
}

.service-editorial-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.service-editorial-row.reverse {
    flex-direction: row-reverse;
}

.service-editorial-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.service-img-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(200, 162, 74, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.service-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-editorial-row:hover .service-img-frame img {
    transform: scale(1.08);
}

.service-editorial-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    font-weight: 700;
    color: rgba(100, 48, 133, 0.1);
    line-height: 1;
    margin-bottom: 10px;
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #111;
    font-weight: 600;
    margin-bottom: 5px;
}

.service-line {
    width: 50px;
    height: 2px;
    background: #C8A24A;
    margin: 15px 0 25px;
}

.service-desc {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
}

.service-features li i {
    color: #C8A24A;
    font-size: 16px;
}

/* SUCCESS STORIES */
.success-stories {
    padding: 140px 8%;
    background-color: #F7F4EF;
    position: relative;
    overflow: hidden;
}

.success-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.success-left {
    display: flex;
    flex-direction: column;
}

.success-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #111;
    margin-bottom: 15px;
}

.success-subtext {
    font-size: 15px;
    opacity: 0.75;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.btn-partner {
    display: inline-block;
    padding: 14px 35px;
    background: #643085;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(100, 48, 133, 0.15);
}

.btn-partner:hover {
    background: #3e1b55;
    color: #fff;
    box-shadow: 0 15px 30px rgba(100, 48, 133, 0.25);
    transform: translateY(-2px);
}

.success-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.success-stat-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid rgba(200, 162, 74, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.success-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 162, 74, 0.4);
    box-shadow: 0 15px 40px rgba(100, 48, 133, 0.05);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 700;
    color: #643085;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 992px) {

    .service-editorial-row,
    .service-editorial-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .service-line {
        margin: 15px auto 25px;
    }

    .service-features {
        align-items: center;
    }

    .success-box {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .success-left .line-gold {
        margin: 20px auto 30px;
    }

    .btn-partner {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .service-img-frame {
        height: 240px;
    }

    .service-name {
        font-size: 28px;
    }

    .success-right {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-editorial,
    .success-stories {
        padding: 80px 8%;
    }
}

/* ==========================================================================
   CUISINES & EVENT GALLERY PAGE REDESIGN
   ========================================================================== */
.cuisines-editorial {
    padding: 140px 8%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.cuisines-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.cuisine-editorial-card {
    background: #fff;
    border-radius: 30px;
    border: 1px solid rgba(200, 162, 74, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.cuisine-editorial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 162, 74, 0.4);
    box-shadow: 0 30px 60px rgba(100, 48, 133, 0.06);
}

.cuisine-editorial-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(200, 162, 74, 0.1);
}

.cuisine-editorial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.cuisine-editorial-card:hover .cuisine-editorial-img img {
    transform: scale(1.08);
}

.cuisine-editorial-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cuisine-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #111;
    font-weight: 600;
    margin-bottom: 15px;
}

.cuisine-desc {
    font-size: 15px;
    opacity: 0.75;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
    flex: 1;
}

.cuisine-signature-tag {
    font-size: 11px;
    color: #C8A24A;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    border-top: 1px solid rgba(200, 162, 74, 0.15);
    padding-top: 20px;
}

.cuisine-menu-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cuisine-menu-highlights li {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.cuisine-menu-highlights li::before {
    content: "•";
    color: #C8A24A;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* EVENT GALLERY */
.services-gallery-section {
    padding: 140px 8%;
    background-color: #F7F4EF;
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(200, 162, 74, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    aspect-ratio: 4 / 3;
    background: #111;
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.1) rotate(1deg);
    opacity: 0.45;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(100, 48, 133, 0.85) 0%, rgba(100, 48, 133, 0.4) 60%, rgba(100, 48, 133, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-tag {
    font-size: 11px;
    color: #C8A24A;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 992px) {

    .cuisines-editorial-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .cuisines-editorial-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cuisines-editorial,
    .services-gallery-section {
        padding: 80px 8%;
    }
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(17, 17, 17, 0.95);
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 2002;
    user-select: none;
}

.lightbox-close:hover {
    color: #C8A24A;
    transform: rotate(90deg);
}

.lightbox-content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1100px;
    height: 80%;
}

.lightbox-image-container {
    position: relative;
    max-width: 80%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(200, 162, 74, 0.2);
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 20px 20px 0 0;
    display: block;
}

.lightbox-caption {
    width: 100%;
    background: rgba(17, 17, 17, 0.9);
    padding: 25px 30px;
    border-top: 1px solid rgba(200, 162, 74, 0.15);
    text-align: left;
}

.lightbox-arrow {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    z-index: 2001;
    position: absolute;
}

.lightbox-arrow.prev {
    left: 0;
}

.lightbox-arrow.next {
    right: 0;
}

.lightbox-arrow:hover {
    background: #C8A24A;
    border-color: #C8A24A;
    color: #fff;
    box-shadow: 0 5px 15px rgba(200, 162, 74, 0.3);
}

@media (max-width: 768px) {
    .lightbox-arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .lightbox-arrow.prev {
        left: -10px;
    }

    .lightbox-arrow.next {
        right: -10px;
    }

    .lightbox-image-container {
        max-width: 95%;
    }

    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 40px;
    }
}

/* ==========================================================================
   PINTEREST STYLE EVENT GALLERY
   ========================================================================== */
.gallery-masonry-section {
    padding: 140px 8%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    background: none;
    border: 1px solid rgba(200, 162, 74, 0.3);
    color: #643085;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.filter-tab.info-only {
    pointer-events: none;
    cursor: default;
}

.filter-tab:hover,
.filter-tab.active {
    background: #643085;
    color: #fff;
    border-color: #643085;
    box-shadow: 0 5px 15px rgba(100, 48, 133, 0.15);
}

.gallery-masonry {
    column-count: 3;
    column-gap: 25px;
    width: 100%;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
    break-inside: avoid;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(200, 162, 74, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    background: #111;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
}

.masonry-item:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 162, 74, 0.4);
}

.masonry-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.masonry-img-wrapper img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.masonry-item:hover .masonry-img-wrapper img {
    transform: scale(1.08);
    opacity: 0.45;
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(100, 48, 133, 0.85) 0%, rgba(100, 48, 133, 0.4) 60%, rgba(100, 48, 133, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .gallery-masonry {
        column-count: 2;
        column-gap: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-masonry {
        column-count: 1;
    }

    .gallery-masonry-section {
        padding: 80px 8%;
    }
}

/* ==========================================================================
   SIGNATURE MENU SHOWCASE
   ========================================================================== */
.menu-showcase-section {
    padding: 140px 8%;
    background-color: #F7F4EF;
    position: relative;
    overflow: hidden;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.menu-folio-card {
    background: #fff;
    border-radius: 30px;
    border: 1px solid rgba(200, 162, 74, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    padding: 40px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.menu-folio-card::before {
    content: "";
    position: absolute;
    inset: 15px;
    border: 1px dashed rgba(200, 162, 74, 0.2);
    border-radius: 20px;
    pointer-events: none;
}

.menu-folio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 162, 74, 0.4);
    box-shadow: 0 30px 60px rgba(100, 48, 133, 0.05);
}

.menu-folio-inner {
    position: relative;
    z-index: 1;
}

.menu-folio-header {
    text-align: center;
    margin-bottom: 30px;
}

.menu-folio-tag {
    font-size: 11px;
    color: #C8A24A;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.menu-folio-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #643085;
    font-weight: 700;
}

.menu-folio-divider {
    width: 60px;
    height: 1px;
    background: #C8A24A;
    margin: 15px auto 0;
}

.menu-folio-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.menu-course-group {
    display: flex;
    flex-direction: column;
}

.course-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(200, 162, 74, 0.15);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.course-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.course-items li {
    font-size: 14px;
    color: #444;
    font-weight: 500;
    line-height: 1.4;
}

.badge-seasonal {
    font-size: 9px;
    background: rgba(200, 162, 74, 0.1);
    color: #C8A24A;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 5px;
}

@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .menu-folio-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-folio-card {
        padding: 30px 20px;
    }

    .menu-showcase-section {
        padding: 80px 8%;
    }
}

/* ==========================================================================
   CONTACT PAGE - REDESIGN
   ========================================================================== */
.booking-section {
    padding: 120px 8%;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.contact-form-card {
    background: #F7F4EF;
    border-radius: 30px;
    border: 1px solid rgba(200, 162, 74, 0.2);
    padding: 50px;
    position: relative;
}

.contact-form-card::before {
    content: "";
    position: absolute;
    inset: 15px;
    border: 1px dashed rgba(200, 162, 74, 0.25);
    border-radius: 20px;
    pointer-events: none;
}

.contact-form-header,
.contact-info-header {
    margin-bottom: 40px;
}

.contact-form-header .tag,
.contact-info-header .tag {
    font-size: 11px;
    color: #C8A24A;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.contact-form-header .title,
.contact-info-header .title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    color: #643085;
    font-weight: 700;
}

.contact-form-header .line-gold,
.contact-info-header .line-gold {
    width: 60px;
    height: 1px;
    background: #C8A24A;
    margin-top: 15px;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #643085;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
    background: #fff;
    border: 1px solid rgba(200, 162, 74, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
    border-color: #643085;
    box-shadow: 0 0 0 3px rgba(100, 48, 133, 0.05);
}

.btn-submit-booking {
    background: #643085;
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    align-self: flex-start;
    box-shadow: 0 10px 20px rgba(100, 48, 133, 0.15);
    transition: all 0.3s ease;
}

.btn-submit-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(100, 48, 133, 0.25);
    background: #50236c;
}

/* Contact Info Column (Right Side) */
.contact-info-column {
    display: flex;
    flex-direction: column;
}

.contact-map-card {
    border-radius: 24px;
    border: 1px solid rgba(200, 162, 74, 0.2);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    line-height: 0;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-item .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: rgba(200, 162, 74, 0.1);
    color: #C8A24A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(200, 162, 74, 0.15);
}

.detail-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #643085;
    font-weight: 700;
    margin-bottom: 5px;
}

.detail-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.whatsapp-contact-btn {
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.15);
    transition: all 0.3s ease;
    border: none;
    margin-top: 10px;
}

.whatsapp-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.25);
    background: #20ba5a;
    color: #fff;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .booking-section {
        padding: 80px 8%;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-submit-booking {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   LUXURY TOAST NOTIFICATION
   ========================================================================== */
.luxury-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 0);
    background: rgba(247, 244, 239, 0.95);
    border: 1px solid rgba(200, 162, 74, 0.3);
    border-radius: 16px;
    padding: 16px 28px;
    box-shadow: 0 15px 40px rgba(100, 48, 133, 0.15);
    z-index: 10000;
    backdrop-filter: blur(10px);
    display: none;
    max-width: 90%;
    width: 420px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-icon {
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #643085;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.toast-text p {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.4;
}