:root {
    --bg-warm: #ffffff;
    --dark-green: #1c1a17;
    --gold: #b38e4a;
    --text-dark: #1c1a17;
    --text-muted: #555555;
}

body {
    background-color: var(--bg-warm) !important;
    color: var(--text-dark);
    position: relative;
    overflow-x: clip;
}

/* Subtle gold dot background pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(#b38e4a 0.6px, transparent 0.6px);
    background-size: 28px 28px;
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
}


/* 1. HEADER OVERLAY (Consistent with Home/Package) */
.main-header {
    background: transparent !important;
    position: absolute !important;
    width: 100%;
    z-index: 999;
    box-shadow: none !important;
}

.main-header .header-top {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header .header-top .top-info li,
.main-header .header-top .top-info li i,
.main-header .header-top .top-info li a {
    color: #ffffff !important;
    font-weight: 500;
}

.main-header .navigation li a {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 2. HERO SECTION */
.menu-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: #000;
    overflow: hidden;
}

.menu-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.menu-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

/* 3. INTRO SECTION - PREMIUM REDESIGN */
.menu-intro-section {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.menu-intro-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228, 197, 144, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.menu-intro-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 77, 68, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.intro-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.intro-left {
    flex: 1;
}

.intro-right {
    flex: 1;
}

/* Eyebrow tag */
.intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter Tight", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.intro-eyebrow::before,
.intro-eyebrow::after {
    content: '';
    display: block;
    height: 1.5px;
    width: 30px;
    background: var(--gold);
    opacity: 0.6;
}

.menu-intro-section .section-title {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-weight: 800;
    color: var(--dark-green);
    margin-bottom: 30px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.menu-intro-section .section-title span {
    color: var(--gold);
    font-style: italic;
}

/* Gold underline separator */
.intro-separator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.intro-separator .sep-line {
    height: 2px;
    width: 50px;
    background: var(--gold);
    border-radius: 2px;
}

.intro-separator .sep-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}

.menu-intro-section .intro-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.menu-intro-section .intro-text p {
    margin-bottom: 16px;
}

.menu-intro-section .intro-text strong {
    color: var(--dark-green);
    font-weight: 700;
}

/* CTA button */
.intro-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark-green);
    color: #ffffff !important;
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s ease;
    letter-spacing: 0.5px;
}

.intro-cta:hover {
    background: var(--gold);
    color: var(--dark-green) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(28, 26, 23, 0.2);
}

/* Right side feature cards */
.intro-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.intro-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(179, 142, 74, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.intro-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    border-radius: 20px 0 0 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.intro-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(179, 142, 74, 0.3);
}

.intro-feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(179, 142, 74, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.intro-feature-card:hover .feature-icon {
    background: var(--dark-green);
    color: #ffffff;
}

.feature-title {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    font-family: "Inter Tight", sans-serif;
    margin: 0;
}

/* Stats row */
.intro-stats {
    display: flex;
    gap: 30px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--dark-green);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-number sup {
    font-size: 20px;
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    font-family: "Inter Tight", sans-serif;
}

@media (max-width: 991px) {
    .intro-inner {
        flex-direction: column;
        gap: 50px;
    }

    .menu-intro-section .section-title {
        font-size: 36px;
    }

    .intro-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .intro-feature-grid {
        grid-template-columns: 1fr;
    }

    .intro-stats {
        gap: 15px;
    }
}

/* 4. SELECTION SECTION & STICKY FORM */
.selection-section {
    padding: 80px 0 100px;
    background-color: #ffffff;
    position: relative;
}

.selection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background/bg-15.png');
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 0.1;
    pointer-events: none;
}

.selection-row {
    display: flex;
    flex-wrap: wrap;
}

.selection-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(179, 142, 74, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.selection-card:hover {
    transform: translateY(-5px);
    border-color: rgba(179, 142, 74, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.selection-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 20px;
    text-align: left;
}

/* Custom Select Box Styling */
.custom-select-box {
    background-color: #fff3e18f !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 25px !important;
    font-size: 15px;
    color: #000000 !important;
    cursor: pointer;
    width: 100%;
    appearance: auto;
    margin: 0 0;
    border: 1px solid #f9ddb6 !important;
}

/* STICKY SIDEBAR FORM - COMPACT PREMIUM VERSION */
.form-side {
    position: relative;
}

.sticky-form-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    z-index: 10;
}

.customer-info-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.05);
    border: 1px solid rgb(239 221 196);
    position: relative;
    overflow: hidden;
}

.customer-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.customer-info-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    color: var(--dark-green);
    margin-bottom: 6px;
    font-weight: 800;
}

.form-header p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Compact Form Controls */
.customer-info-card .form-group {
    margin-bottom: 12px;
}

.customer-info-card input,
.customer-info-card select,
.customer-info-card textarea {
    background-color: #f8f8f8 !important;
    border: 1px solid transparent !important;
    border-radius: 30px !important;
    padding: 11px 20px !important;
    width: 100%;
    font-size: 13px;
    color: #333;
    transition: all 0.3s ease;
    font-family: "Inter Tight", sans-serif;
}

.customer-info-card textarea {
    height: 80px;
    border-radius: 15px !important;
    resize: none;
    padding-top: 12px !important;
}

.customer-info-card input:focus,
.customer-info-card select:focus,
.customer-info-card textarea:focus {
    background-color: #ffffff !important;
    border-color: var(--gold) !important;
    box-shadow: 0 4px 12px rgba(228, 197, 144, 0.1) !important;
    outline: none;
}

/* Premium Submit Button - Compact */
.send-quotation-btn {
    background-color: var(--dark-green) !important;
    border-radius: 50px !important;
    padding: 16px 50px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: auto !important;
    min-width: 250px;
    border: none;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(28, 26, 23, 0.2);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.send-quotation-btn::before {
    display: none !important;
}

.send-quotation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(28, 26, 23, 0.35);
    background-color: #000000 !important;
    color: #ffffff !important;
}

.send-quotation-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.send-quotation-btn:hover i {
    transform: translateX(5px);
}

/* COUNTERS GRID */
.counters-card {
    margin-top: 10px;
    padding: 30px 40px !important;
}

.counters-grid {
    text-align: left;
    margin-top: 20px;
}

.counter-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--dark-green);
    border: 1px solid #ddd;
    border-radius: 4px;
}

.counter-item label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 5. TERMS & CONDITIONS - COMPACT VERSION */
.menu-terms-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    border-top: 1px solid rgba(179, 142, 74, 0.2);
}

.menu-terms-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--bg-warm) 0%, #ffffff 60%);
    z-index: 0;
}

.terms-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(179, 142, 74, 0.12);
    position: relative;
    z-index: 1;
}

.terms-title {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    color: var(--dark-green);
    margin-bottom: 45px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
}

.terms-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 10px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
}

.terms-list li {
    position: relative;
    padding-left: 35px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-muted);
    font-family: "Inter Tight", sans-serif;
    transition: all 0.3s ease;
}

.terms-list li::before {
    content: '\f058';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold);
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(228, 197, 144, 0.3));
}

.terms-list li:hover {
    color: var(--dark-green);
    transform: translateX(5px);
}

/* Footer Wavy Transition */
.main-footer {
    position: relative;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    overflow: hidden;
    margin-top: -50px;
    z-index: 5;
}

@media (max-width: 991px) {
    .terms-card {
        padding: 40px 25px;
    }

    .terms-title {
        font-size: 28px;
    }

    .terms-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* --- FIX FOR STICKY SIDEBAR --- */
/* The page-wrapper in responsive.css has overflow: hidden which breaks position: sticky */
.page-wrapper {
    overflow: visible !important;
    overflow-x: clip !important;
}

/* ===== CF7 RESET — let original .customer-info-card styles apply ===== */

/* Remove CF7 wrapper margins/gaps so the .row div works normally */
.customer-info-card .wpcf7 {
    margin: 0;
}

.customer-info-card .wpcf7-form {
    margin: 0;
    padding: 0;
}

/* CF7 wraps each field in a <span>; make it block so width:100% works */
.customer-info-card .wpcf7-form-control-wrap {
    display: block;
}

/* Hide the selected_menu hidden input visually */
.customer-info-card input[name="selected_menu"] {
    display: none !important;
}

/* The CF7 submit is an <input>, not a <button>.
   Use maximum specificity to override style.css global input[type=submit] rules. */
.customer-info-card .wpcf7 form input[type="submit"].send-quotation-btn,
.customer-info-card .wpcf7 input[type="submit"].wpcf7-submit {
    display: block !important;
    width: auto !important;
    min-width: 250px !important;
    margin: 8px auto 0 !important;
    cursor: pointer !important;
    background-color: #1c1a17 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 50px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    font-family: "Inter Tight", sans-serif !important;
    box-shadow: 0 10px 25px rgba(28, 26, 23, 0.2) !important;
    transition: all 0.4s ease !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.customer-info-card .wpcf7 form input[type="submit"].send-quotation-btn:hover,
.customer-info-card .wpcf7 input[type="submit"].wpcf7-submit:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(28, 26, 23, 0.35) !important;
}

/* Response output box */
.customer-info-card .wpcf7-response-output {
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-size: 13px;
    font-family: "Inter Tight", sans-serif;
    margin: 10px 0 0 !important;
    border-width: 1px !important;
}

.customer-info-card .wpcf7 form.sent .wpcf7-response-output {
    background: rgba(26, 77, 68, 0.05);
    border-color: rgba(26, 77, 68, 0.3) !important;
    color: #1a4d44;
}

.customer-info-card .wpcf7 form.failed .wpcf7-response-output,
.customer-info-card .wpcf7 form.invalid .wpcf7-response-output {
    background: rgba(220, 53, 69, 0.05);
    border-color: rgba(220, 53, 69, 0.3) !important;
    color: #dc3545;
}

/* Inline validation error tips */
.customer-info-card .wpcf7-not-valid-tip {
    font-size: 11px;
    color: #dc3545;
    font-family: "Inter Tight", sans-serif;
    margin-top: 4px;
    display: block;
    padding-left: 20px;
}

/* ===== LIVE SELECTION BADGE ===== */
.menu-selection-badge {
    display: inline-block;
    background: var(--gold);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    font-family: "Inter Tight", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-top: 10px;
    animation: badgePop 0.3s ease;
}

@keyframes badgePop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}