
        :root {
            --maroon: #0f4336;
            --maroon-dark: #0f4336;
            --gold: #d8b888;
            --gold-light: #d8b888;
            --cream: #faf6ee;
            --cream-deep: #f2ead9;
            --ink: #0f4336;
            --muted: #6b6055;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Lato', Arial, sans-serif;
            background: var(--cream);
            color: var(--ink);
            line-height: 1.65;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Playfair Display', Georgia, serif;
            color: var(--maroon-dark);
        }

        .wrap {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            padding: 70px 0;
        }

        .eyebrow {
            display: inline-block;
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            font-size: 12.5px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 30px;
            margin-bottom: 14px;
        }

        .section-sub {
            
            
            max-width: 680px;
            margin-bottom: 36px;
        }

        /* HERO */
        .dwj-hero {
            background: linear-gradient(180deg, var(--maroon-dark) 0%, var(--maroon) 100%);
            color: #fff8ec;
            padding: 90px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .dwj-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 20% 20%, rgba(216, 164, 65, 0.12) 0, transparent 40%),
                radial-gradient(circle at 85% 75%, rgba(216, 164, 65, 0.10) 0, transparent 45%);
        }

        .dwj-hero-inner {
            position: relative;
            z-index: 1;
        }

        .dwj-hero .eyebrow {
            color: var(--gold-light);
        }

        .dwj-hero h1 {
            font-size: 44px;
            color: #fff8ec;
            line-height: 1.2;
            max-width: 800px;
            margin: 0 auto 16px;
        }

        .dwj-hero h1 em {
            font-style: normal;
            color: var(--gold-light);
        }

        .dwj-hero p {
            max-width: 600px;
            margin: 0 auto 34px;
            color: #eaddc9;
            font-size: 16px;
        }

        .dwj-stat-row {
            display: flex;
            justify-content: center;
            gap: 36px;
            flex-wrap: wrap;
        }

        .dwj-stat {
            text-align: center;
        }

        .dwj-stat .dwj-num {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            color: var(--gold-light);
            font-weight: 700;
        }

        .dwj-stat .dwj-lbl {
            font-size: 12.5px;
            color: #d8c8ac;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        /* WHY JAIPUR */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .why-card {
            background: #fff;
            border: 1px solid var(--cream-deep);
            border-radius: 12px;
            padding: 26px;
        }

        .why-card h4 {
            font-size: 17px;
            margin-bottom: 8px;
        }

        .why-card p {
            
            
        }

        /* PRICING TIERS */
        .tier-section {
            background: var(--cream-deep);
        }

        .tier-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .tier-card {
            background: #fff;
            border-radius: 14px;
            padding: 30px;
            border-top: 4px solid var(--gold);
        }

        .tier-card.mid {
            border-top-color: var(--maroon);
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(122, 31, 43, 0.12);
        }

        .tier-card h4 {
            
            text-transform: uppercase;
            letter-spacing: 1px;
            
            margin-bottom: 6px;
        }

        .tier-card .price {
            font-size: 30px;
            color: var(--maroon-dark);
            margin-bottom: 4px;
        }

        .tier-card .meta {
            font-size: 13px;
            
            margin-bottom: 16px;
        }

        .tier-card ul {
            list-style: none;
            
        }

        .tier-card li {
            padding: 6px 0;
            border-top: 1px dashed #e7ddc9;
        }

        .tier-card li:first-child {
            border-top: none;
        }

        /* GUEST COUNT TABLE */
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
        }

        th,
        td {
            padding: 13px 16px;
            text-align: left;
            
            border-bottom: 1px solid var(--cream-deep);
        }

        th {
            background: var(--maroon-dark);
            color: #fff8ec;
            font-family: 'Lato', sans-serif;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }

        tr:last-child td {
            border-bottom: none;
        }

        tr:nth-child(even) td {
            background: #fcfaf4;
        }

        .table-wrap {
            overflow-x: auto;
            border-radius: 10px;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
        }

        a.vlink {
            color: var(--maroon);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid var(--gold);
        }

        a.vlink:hover {
            color: var(--gold);
        }

        /* EXPENSE BREAKDOWN */
        .exp-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .exp-card {
            background: #fff;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid var(--cream-deep);
        }

        .exp-card h4 {
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 4px;
        }

        .exp-card .pct {
            font-size: 12.5px;
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .exp-card .row {
            display: flex;
            justify-content: space-between;
            
            padding: 6px 0;
            border-top: 1px dashed #e7ddc9;
        }

        .exp-card .row:first-of-type {
            border-top: none;
        }

        .exp-card .row span:last-child {
            color: var(--maroon-dark);
            font-weight: 600;
        }

        /* COMPARISON / BUDGET VS LUXURY */
        .cmp-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--cream-deep);
        }

        .cmp-col {
            padding: 26px;
        }

        .cmp-col.left {
            border-right: 1px solid var(--cream-deep);
        }

        .cmp-col h4 {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .cmp-col .p {
            font-size: 22px;
            color: var(--maroon-dark);
            font-family: 'Playfair Display', serif;
            margin-bottom: 16px;
        }

        .cmp-row {
            
            padding: 10px 0;
            border-top: 1px dashed #e7ddc9;
            
        }

        .cmp-row:first-of-type {
            border-top: none;
        }

        /* TIPS */
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
        }

        .tip {
            display: flex;
            gap: 16px;
            background: #fff;
            border-radius: 10px;
            padding: 20px;
            border: 1px solid var(--cream-deep);
        }

        .tip .n {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: var(--gold);
            font-weight: 700;
        }

        .tip h4 {
            
            margin-bottom: 4px;
        }

        .tip p {
            
            
        }

        /* HINDI SECTION */
        .hindi-box {
            background: var(--maroon-dark);
            color: #fff8ec;
            border-radius: 14px;
            padding: 36px;
        }

        .hindi-box h3 {
            color: var(--gold-light);
            font-size: 22px;
            margin-bottom: 14px;
            font-family: 'Lato', sans-serif;
            font-weight: 700;
        }

        .hindi-box p {
            font-size: 15px;
            color: #eaddc9;
            margin-bottom: 12px;
        }

        .hindi-box p:last-child {
            margin-bottom: 0;
        }

        /* FAQ */
        .faq-item {
            background: #fff;
            border: 1px solid var(--cream-deep);
            border-radius: 10px;
            padding: 20px 22px;
            margin-bottom: 12px;
        }

        .faq-item h4 {
            
            color: var(--maroon-dark);
            margin-bottom: 6px;
            font-family: 'Lato', sans-serif;
            font-weight: 700;
        }

        .faq-item p {
            
            
        }

        /* CTA */
        .cta {
            background: linear-gradient(180deg, var(--maroon) 0%, var(--maroon-dark) 100%);
            color: #fff8ec;
            text-align: center;
            border-radius: 18px;
            padding: 50px 30px;
        }

        .cta h2 {
            color: #fff8ec;
            font-size: 28px;
            margin-bottom: 10px;
        }

        .cta p {
            color: #eaddc9;
            margin-bottom: 24px;
        }

        .cta-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 13px 28px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14.5px;
            text-decoration: none;
            transition: transform .15s ease;
        }

        .btn-gold {
            background: var(--gold-light);
            color: var(--maroon-dark);
        }

        .btn-outline {
            border: 1.5px solid #eaddc9;
            color: #fff8ec;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .section-title.center {
            text-align: center;
        }

        .center-wrap {
            text-align: center;
        }

        .section-sub.center {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        @media(max-width:900px) {

            .why-grid,
            .tier-grid,
            .exp-grid,
            .tips-grid {
                grid-template-columns: 1fr;
            }

            .tier-card.mid {
                transform: none;
            }

            .cmp-grid {
                grid-template-columns: 1fr;
            }

            .cmp-col.left {
                border-right: none;
                border-bottom: 1px solid var(--cream-deep);
            }

            .dwj-hero h1 {
                font-size: 32px;
            }

            .dwj-stat-row {
                gap: 22px;
            }
        }
   