 :root {
            --forest: #0f4336;
            --forest-deep: #0a2e24;
            --forest-mid: #1a5c47;
            --forest-pale: #e8f2ef;
            --gold: #d8b888;
            --gold-dark: #b8956a;
            --gold-deeper: #96743f;
            --gold-pale: #faf5eb;
            --white: #ffffff;
            --text: #1c2b26;
            --muted: #4a6860;
            --border: rgba(15, 67, 54, 0.11)
        }

        /* HERO */
        .hero {
            position: relative;
            min-height: 100svh;
            display: flex;
            flex-direction: column;
            overflow: hidden
        }

        .oberoi-hero-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 60%
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: #043222a8 !important;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            /*display: flex;*/
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 100px 24px 60px;
            flex: 1
        }

        .hero-badge {
            
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(216, 184, 136, 0.18);
            border: 1px solid rgba(216, 184, 136, 0.4);
            border-radius: 100px;
            padding: 8px 20px;
            color: var(--gold);
            
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 28px;
            opacity: 0;
            animation: fadeUp .8s .1s forwards
        }

        .hero-badge i {
            font-size: 14px
        }

        .hero h1 {
            font-size: 60px !important; 
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 8vw, 76px);
            font-weight: 700;
            color: #fff;
            line-height: 1.08;
            margin-bottom: 10px;
            opacity: 0;
            animation: fadeUp .8s .3s forwards
        }

        .hero h1 em {
            color: var(--gold);
            font-style: italic
        }

        .hero-location {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #fff;
            
            letter-spacing: 1px;
            margin-bottom: 32px;
            opacity: 0;
            animation: fadeUp .8s .5s forwards
        }

        .hero-location i {
            font-size: 16px;
            color: var(--gold)
        }

        .hero-note {
            background: rgba(15, 67, 54, 0.55);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(216, 184, 136, 0.25);
            border-radius: 14px;
            padding: 18px 28px;
            color: #fff;
            
            max-width: 520px;
            line-height: 1.7;
            opacity: 0;
            animation: fadeUp .8s .7s forwards
        }

        .hero-scroll {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            color: rgba(216, 184, 136, 0.5);
            font-size: 9px;
            letter-spacing: 3px;
            text-transform: uppercase;
            padding-bottom: 32px
        }

        .scroll-line {
            width: 1px;
            height: 44px;
            background: linear-gradient(to bottom, rgba(216, 184, 136, 0.6), transparent);
            animation: scrollPulse 2s ease-in-out infinite
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(22px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes scrollPulse {

            0%,
            100% {
                opacity: .5
            }

            50% {
                opacity: 1
            }
        }

        /* LAYOUT */
        .container {
            max-width: 920px;
            margin: 0 auto;
            padding: 0 20px
        }

        /* QUICK ANSWER */
        .quick-answer {
            background: var(--forest);
            border-radius: 20px;
            padding: clamp(28px, 5vw, 52px);
            margin: clamp(40px, 8vw, 80px) 0 clamp(32px, 6vw, 60px);
            position: relative;
            overflow: hidden
        }

        .quick-answer::after {
            content: '₹';
            position: absolute;
            right: -10px;
            bottom: -30px;
            font-family: 'Playfair Display', serif;
            font-size: 220px;
            color: rgba(216, 184, 136, 0.06);
            line-height: 1;
            pointer-events: none
        }

        .quick-answer h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(20px, 4vw, 30px);
            color: var(--gold);
            margin-bottom: 14px;
            font-weight: 600
        }

        .quick-answer p {
            color: #fff;
            font-size: 15px;
            margin-bottom: 22px
        }

        .pill-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px
        }

        .cost-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(216, 184, 136, 0.13);
            border: 1px solid rgba(216, 184, 136, 0.35);
            color: var(--gold);
            padding: 10px 20px;
            border-radius: 100px;
            
            font-weight: 600;
            transition: background .2s
        }

        .cost-pill i {
            font-size: 15px
        }

        .cost-pill:hover {
            background: rgba(216, 184, 136, 0.22)
        }

        /* SECTION */
        .section {
            margin: clamp(52px, 10vw, 100px) 0
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold-dark);
            font-weight: 600;
            margin-bottom: 12px
        }

        .section-label i {
            font-size: 16px
        }

        h2.section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(24px, 4vw, 40px);
            font-weight: 600;
            color: var(--forest);
            line-height: 1.2;
            margin-bottom: 10px
        }

        .divider {
            width: 48px;
            height: 3px;
            background: linear-gradient(to right, var(--gold), transparent);
            margin: 18px 0 26px;
            border-radius: 2px
        }

        h3.sub-title {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--forest);
            margin: 36px 0 14px;
            padding-left: 16px;
            border-left: 3px solid var(--gold);
            border-radius: 0
        }

        p {
            margin-bottom: 16px;
            color: #2c3a36;
            font-size: 15px
        }

        p:last-child {
            margin-bottom: 0
        }

        /* GALLERY */
        .gallery {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 260px 200px;
            gap: 12px;
            margin: 32px 0;
            border-radius: 20px;
            overflow: hidden
        }

        .gallery-main {
            grid-row: span 2
        }

        .gallery-item {
            overflow: hidden;
            position: relative
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .4s ease
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.05)
        }

        .gallery-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 10px 14px;
            background: linear-gradient(to top, rgba(10, 46, 36, 0.85), transparent);
            color: rgba(255, 255, 255, 0.9);
            
            letter-spacing: 1px;
            text-transform: uppercase
        }

        /* FEATURE CARDS */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
            margin: 28px 0
        }

        .feature-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 22px 20px;
            transition: all .25s;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--forest), var(--gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .3s;
            border-radius: 0
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(15, 67, 54, 0.1);
            border-color: var(--gold)
        }

        .feature-card:hover::before {
            transform: scaleX(1)
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            background: var(--forest-pale);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px
        }

        .feature-icon i {
            font-size: 22px;
            color: var(--forest)
        }

        .feature-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--forest);
            margin-bottom: 6px
        }

        .feature-card p {
            
            color: black;
            margin: 0;
            line-height: 1.6
        }

        /* STATS */
        .stat-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            margin: 36px 0
        }

        .stat-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: clamp(18px, 4vw, 28px) 16px;
            text-align: center;
            transition: all .2s;
            position: relative;
            overflow: hidden
        }

        .stat-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--forest), var(--gold))
        }

        .stat-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 32px rgba(15, 67, 54, 0.1)
        }

        .stat-icon {
            font-size: 26px;
            color: var(--gold);
            margin-bottom: 10px;
            display: block
        }

        .stat-item .number {
            font-family: 'Playfair Display', serif;
            font-size: clamp(26px, 5vw, 40px);
            font-weight: 700;
            color: var(--forest);
            display: block;
            line-height: 1
        }

        .stat-item .label {
            
            color: black;
            margin-top: 6px
        }

        /* TABLES */
        .table-wrap {
            overflow-x: auto;
            border-radius: 16px;
            margin: 28px 0;
            box-shadow: 0 4px 28px rgba(15, 67, 54, 0.08)
        }

        .cost-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 480px
        }

        .cost-table thead th {
            background: var(--forest);
            color: var(--gold);
            padding: 14px 20px;
            text-align: left;
            
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600
        }

        .cost-table thead th:last-child {
            text-align: right
        }

        .cost-table tbody tr:nth-child(even) {
            background: rgba(15, 67, 54, 0.03)
        }

        .cost-table tbody tr:nth-child(odd) {
            background: var(--white)
        }

        .cost-table tbody tr:hover {
            background: rgba(216, 184, 136, 0.08)
        }

        .cost-table td {
            padding: 14px 20px;
            border-bottom: 1px solid var(--border);
            
            vertical-align: middle
        }

        .cost-table td:last-child {
            font-weight: 600;
            color: var(--forest);
            text-align: right;
            white-space: nowrap
        }

        .cost-table td strong {
            color: var(--forest);
            font-weight: 600
        }

        .cost-table td small {
            color: black;
            font-size: 12px
        }

        .cost-table tfoot td {
            background: var(--forest);
            color: var(--gold);
            font-weight: 600;
            padding: 16px 20px;
            font-size: 15px
        }

        .cost-table tfoot td:last-child {
            text-align: right
        }

        /* DURATION CARDS */
        .duration-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 14px;
            margin: 28px 0
        }

        .duration-card {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: 16px;
            padding: 28px 20px;
            text-align: center;
            transition: all .25s;
            position: relative;
            overflow: hidden
        }

        .duration-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--forest), var(--gold));
            transform: scaleX(0);
            transition: transform .3s;
            border-radius: 0
        }

        .duration-card:hover {
            border-color: var(--forest);
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(15, 67, 54, 0.14)
        }

        .duration-card:hover::before {
            transform: scaleX(1)
        }

        .duration-card .days {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 700;
            color: var(--forest);
            line-height: 1;
            margin-bottom: 4px
        }

        .duration-card .days-label {
            
            color: black;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 14px
        }

        .duration-card .cost-range {
            font-weight: 600;
            color: var(--gold-deeper);
            font-size: 14px
        }

        .duration-card .guests {
            
            color: black;
            margin-top: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px
        }

        .duration-card .guests i {
            font-size: 13px
        }

        /* INFO BOXES */
        .info-box {
            border-left: 4px solid var(--gold);
            background: var(--white);
            border-radius: 0 14px 14px 0;
            padding: 20px 24px;
            margin: 26px 0;
            box-shadow: 0 2px 14px rgba(15, 67, 54, 0.06)
        }

        .info-box.warning {
            border-left-color: #b5451b;
            background: #fff8f5
        }

        .info-box.tip {
            border-left-color: var(--forest);
            background: var(--forest-pale)
        }

        .info-box-label {
            display: flex;
            align-items: center;
            gap: 8px;
            
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--gold-deeper)
        }

        .info-box-label i {
            font-size: 16px
        }

        .info-box.warning .info-box-label {
            color: #b5451b
        }

        .info-box.tip .info-box-label {
            color: var(--forest)
        }

        .info-box p {
            margin: 0;
        
        }

        /* CHECKLIST */
        .checklist {
            list-style: none;
            margin: 16px 0
        }

        .checklist li {
            padding: 11px 0 11px 36px;
            border-bottom: 1px solid var(--border);
            position: relative;
            font-size: 15px
        }

        .checklist li:last-child {
            border-bottom: none
        }

        .checklist li i {
            position: absolute;
            left: 4px;
            top: 14px;
            font-size: 16px;
            color: var(--gold)
        }

        /* VENUE IMAGE STRIP */
        .venue-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden
        }

        .venue-strip-item {
            overflow: hidden;
            position: relative;
            height: 180px
        }

        .venue-strip-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .4s
        }

        .venue-strip-item:hover img {
            transform: scale(1.07)
        }

        /* SEASON GRID */
        .season-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin: 28px 0
        }

        .season-card {
           height: 95%;
    margin: 10px;
    border-radius: 14px;
    padding: 22px;
    border: 1px solid transparent;
        }

        .season-card-head {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px
        }

        .season-card-head i {
            font-size: 20px
        }

        .season-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 17px;
            font-weight: 600;
            margin: 0
        }

        .season-card strong {
            
            letter-spacing: 1px;
            display: block;
            margin-bottom: 8px
        }

        .season-card p {
            
            margin: 0;
            line-height: 1.6
        }

        .season-card.peak {
            background: rgba(216, 184, 136, 0.12);
            border-color: rgba(216, 184, 136, 0.4)
        }

        .season-card.peak h4,
        .season-card.peak .season-card-head i {
            color: var(--gold-deeper)
        }

        .season-card.offpeak {
            background: rgba(15, 67, 54, 0.06);
            border-color: rgba(15, 67, 54, 0.2)
        }

        .season-card.offpeak h4,
        .season-card.offpeak .season-card-head i {
            color: var(--forest)
        }

        .season-card.avoid {
            background: rgba(181, 69, 27, 0.05);
            border-color: rgba(181, 69, 27, 0.25)
        }

        .season-card.avoid h4,
        .season-card.avoid .season-card-head i {
            color: #b5451b
        }

        .season-card.shoulder {
            background: rgba(15, 67, 54, 0.03);
            border-color: rgba(15, 67, 54, 0.12)
        }

        .season-card.shoulder h4,
        .season-card.shoulder .season-card-head i {
            color: var(--forest-mid)
        }

        /* IMPORTANT BANNER */
        .important-banner {
            background: linear-gradient(135deg, var(--forest), var(--forest-mid));
            color: var(--gold);
            border-radius: 14px;
            padding: 20px 28px;
            font-size: 15px;
            font-weight: 600;
            margin: 28px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-align: center
        }

        .important-banner i {
            font-size: 22px;
            flex-shrink: 0
        }

        /* TIER CARDS */
        .tier-cards {
            display: grid;
            gap: 16px;
            margin: 28px 0
        }

        .tier-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 20px;
            align-items: start;
            transition: box-shadow .2s
        }

        .tier-card:hover {
            box-shadow: 0 8px 32px rgba(15, 67, 54, 0.1)
        }

        .tier-num {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: var(--forest);
            color: var(--gold);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            flex-shrink: 0
        }

        .tier-num span {
            font-size: 9px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(216, 184, 136, 0.7);
            font-family: 'Jost', sans-serif;
            font-weight: 600;
            margin-top: -2px
        }

        .tier-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--forest);
            margin-bottom: 4px
        }

        .tier-price {
            display: inline-block;
            background: rgba(216, 184, 136, 0.15);
            border: 1px solid rgba(216, 184, 136, 0.35);
            color: var(--gold-deeper);
            
            font-weight: 600;
            padding: 3px 12px;
            border-radius: 100px;
            margin-bottom: 12px
        }

        /* HIDDEN COST GRID */
        .hidden-cost-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin: 24px 0
        }

        .hidden-cost-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 18px;
            transition: all .2s;
            display: flex;
            gap: 14px
        }

        .hidden-cost-item:hover {
            border-color: var(--gold);
            box-shadow: 0 4px 20px rgba(216, 184, 136, 0.15)
        }

        .hidden-cost-icon {
            width: 40px;
            height: 40px;
            background: var(--forest-pale);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0
        }

        .hidden-cost-icon i {
            font-size: 20px;
            color: var(--forest)
        }

        .hidden-cost-info .label {
            
            color: black;
            margin-bottom: 4px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: .5px
        }

        .hidden-cost-info .amount {
            font-weight: 700;
            color: var(--forest);
            font-size: 15px;
            margin-bottom: 6px
        }

        .hidden-cost-info p {
            
            color: black;
            margin: 0;
            line-height: 1.6
        }

        /* COMPARE TABLE */
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            
            min-width: 480px
        }

        .compare-table th {
            background: var(--forest-deep);
            color: var(--gold);
            padding: 12px 16px;
            text-align: left;
            font-weight: 500;
            
            letter-spacing: 1px
        }

        .compare-table td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border);
            vertical-align: middle
        }

        .compare-table tr:nth-child(even) td {
            background: rgba(15, 67, 54, 0.03)
        }

        .compare-table .yes {
            color: var(--forest);
            font-weight: 600
        }

        .compare-table .no {
            color: #b5451b
        }

        /* TIMELINE */
        .timeline {
            margin: 28px 0
        }

        .timeline-item {
            display: flex;
            gap: 20px;
            padding-bottom: 36px;
            position: relative
        }

        .timeline-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 19px;
            top: 40px;
            width: 2px;
            height: calc(100% - 40px);
            background: linear-gradient(to bottom, var(--gold), rgba(216, 184, 136, 0.1))
        }

        .timeline-dot {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--forest);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            
            font-weight: 700;
            letter-spacing: .5px;
            border: 2px solid rgba(216, 184, 136, 0.3)
        }

        .timeline-content h4 {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--forest);
            margin-bottom: 5px
        }

        .timeline-content p {
            
            color: black;
            margin: 0
        }

        /* SAVINGS GRID */
        .savings-grid {
            display: grid;
            gap: 12px;
            margin: 24px 0
        }

        .saving-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 16px 20px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: border-color .2s
        }

        .saving-item:hover {
            border-color: var(--gold)
        }

        .saving-num {
            width: 32px;
            height: 32px;
            background: var(--forest);
            color: var(--gold);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            
            flex-shrink: 0;
            margin-top: 2px
        }

        .saving-item p {
            margin: 0;
            
            color: var(--text)
        }

        .saving-item strong {
            color: var(--forest)
        }

        /* FAQ */
        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 22px 0
        }

        .faq-q {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--forest);
            margin-bottom: 10px
        }

        .faq-q i {
            font-size: 20px;
            color: var(--gold);
            flex-shrink: 0;
            margin-top: 2px
        }

        .faq-a {
            font-size: 15px;
            color: #2c3a36;
            padding-left: 32px
        }

        /* CTA */
        .cta-block {
            background: linear-gradient(145deg, var(--forest-deep) 0%, var(--forest) 100%);
            border-radius: 24px;
            padding: clamp(40px, 8vw, 72px) clamp(28px, 6vw, 56px);
            text-align: center;
            margin: 64px 0;
            position: relative;
            overflow: hidden
        }

        .cta-block::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            border: 1px solid rgba(216, 184, 136, 0.12);
            top: -100px;
            right: -100px
        }

        .cta-block::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 1px solid rgba(216, 184, 136, 0.09);
            bottom: -80px;
            left: -60px
        }

        .cta-icon {
            width: 60px;
            height: 60px;
            background: rgba(216, 184, 136, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1
        }

        .cta-icon i {
            font-size: 28px;
            color: var(--gold)
        }

        .cta-block h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(24px, 5vw, 40px);
            color: #fff;
            margin-bottom: 12px;
            font-weight: 600;
            position: relative;
            z-index: 1
        }

        .cta-block p {
            color: rgba(255, 255, 255, 0.65);
            max-width: 460px;
            margin: 0 auto 30px;
            font-size: 15px;
            position: relative;
            z-index: 1
        }

        .btn-gold {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gold);
            color: var(--forest-deep);
            padding: 16px 38px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all .2s;
            box-shadow: 0 8px 24px rgba(216, 184, 136, 0.3);
            position: relative;
            z-index: 1
        }

        .btn-gold i {
            font-size: 18px
        }

        .btn-gold:hover {
            background: #fff;
            box-shadow: 0 12px 32px rgba(216, 184, 136, 0.4);
            transform: translateY(-2px)
        }

        /* VERDICT */
        .verdict-box {
            background: var(--forest);
            border-radius: 20px;
            padding: clamp(28px, 5vw, 48px);
            margin: 40px 0;
            position: relative;
            overflow: hidden
        }

        .verdict-box::before {
            content: '"';
            font-family: 'Playfair Display', serif;
            font-size: 160px;
            color: rgba(216, 184, 136, 0.1);
            position: absolute;
            top: -20px;
            left: 10px;
            line-height: 1;
            pointer-events: none
        }

        .verdict-box p {
            color: rgba(255, 255, 255, 0.82);
            font-size: 16px;
            position: relative;
            z-index: 1;
            margin-bottom: 16px
        }

        .verdict-box p:last-child {
            margin-bottom: 0
        }

        /* REVEAL */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .7s ease, transform .7s ease
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0)
        }

        /* RESPONSIVE */
        @media(max-width:640px) {

            .hidden-cost-grid,
            .season-grid,
            .stat-row {
                grid-template-columns: 1fr
            }

            .tier-card {
                grid-template-columns: 1fr
            }

            .gallery {
                grid-template-columns: 1fr;
                grid-template-rows: 220px 160px 160px
            }

            .gallery-main {
                grid-row: span 1
            }

            .venue-strip {
                grid-template-columns: 1fr 1fr
            }

            .venue-strip-item:last-child {
                display: none
            }

            .cta-block {
                padding: 36px 22px
            }

            .pill-row {
                flex-direction: column
            }
        }

        @media(max-width:400px) {
            .duration-grid {
                grid-template-columns: 1fr 1fr
            }
        }
   .accordion {
      border-top: 1px solid #ddd;
   }

   .accordion-item {
      border-bottom: 1px solid #ddd;
   }

   .accordion-header {
      background: #fff;
      color: #222;
      cursor: pointer;
      padding: 18px 15px;
      font-weight: 600;
      font-size: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s ease;
   }

   .accordion-header:hover {
      background: #f9f9f9;
   }

   .accordion-header::after {
      content: '+';
      font-size: 20px;
      color: #c49a6c;
      transition: transform 0.3s ease;
   }

   .accordion-header.active::after {
      content: '–';
      transform: rotate(180deg);
   }

   .accordion-content {
      max-height: 0;
      overflow: hidden;
      background: #fff;
      color: #444;
      transition: max-height 0.5s ease, padding 0.3s ease;
      padding: 0 15px;
   }

   .accordion-content.open {
      padding: 15px;
   }

   .accordion-content p {
      margin: 0;
      line-height: 1.6;
   }
   /* Card Container */
.luxury-tier-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Hover Effect */
.luxury-tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Tier Badge */
.tier-badge {
    background: #f8f9fa;
    padding: 5px 15px;
    border-radius: 50px;
    
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 15px;
    display: inline-block;
}

/* Typography */
.luxury-tier-card h3 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
}

.tier-price {
    font-size: 28px;
    font-weight: 800;
    color: #d8b888; /* Gold color */
    margin-bottom: 25px;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 15px;
}

/* Features List */
.tier-features {
    list-style: none;
    padding: 0;
}

.tier-features li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: center;
}

.tier-features li i {
    color: #0f4336; /* Green check */
    margin-right: 12px;
    
}

/* Highlighting the middle card */
.luxury-tier-card.active {
    border: 2px solid #d8b888;
    background: linear-gradient(145deg, #ffffff, #fffdf5);
}

/* Small Detail: Animated Gradient Bar on Top */
.luxury-tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d8b888, #f2d06b);
    opacity: 0;
    transition: opacity 0.3s;
}

.luxury-tier-card:hover::before {
    opacity: 1;
}
.fas.fa-phone-alt.fa-2x {
    transform: rotate(90deg);
}