:root {
    --lux-black: #0b0a08;
    --lux-ink: #19120e;
    --lux-gold: #c99b45;
    --lux-gold-2: #edd29a;
    --lux-maroon: #6e1f1a;
    --lux-bronze: #9b6c35;
    --lux-cream: #fbf5e9;
    --lux-beige: #eadbc3;
    --lux-muted: #756a5c;
    --lux-line: #eadcc4;
    --shadow: 0 24px 70px rgba(42, 25, 12, 0.14);
    --radius: 24px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Inter", "Poppins", Arial, sans-serif;
    color: var(--lux-ink);
    background: var(--lux-cream);
    line-height: 1.75;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    width: min(1180px, 92%);
    margin: auto;
}
.eyebrow {
    color: var(--lux-gold);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.section {
    padding: 104px 0;
}
.section.soft {
    background: linear-gradient(180deg, #fffaf1, #f3e6d3);
}
.section-title {
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    font-size: clamp(36px, 4.5vw, 55px);
    line-height: 1.02;
    margin: 0 0 18px;
    color: var(--lux-black);
}
.center {
    text-align: center;
}
.meta {
    color: var(--lux-muted);
    font-size: 15px;
}
.price {
    color: var(--lux-bronze);
    font-weight: 900;
    font-size: 28px;
}
.topbar {
    background: #090806;
    color: #eadcc4;
    font-size: 13px;
    border-bottom: 1px solid rgba(201, 155, 69, 0.28);
}
.topbar .container,
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.topbar span {
    display: inline-flex;
    margin-right: 22px;
}
.navbar {
    background: rgba(251, 245, 233, 0.92);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 18px 50px rgba(42, 25, 12, 0.08);
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #7b4b39;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    font-weight: 900;
}
.brand img {
    height: 48px;
    width: auto;
}
.brand b {
    color: var(--lux-maroon);
}
.navlinks {
    display: flex;
    gap: 23px;
    align-items: center;
    font-weight: 800;
    font-size: 14px;
}
.navlinks a:not(.btn) {
    position: relative;
}
.navlinks a:not(.btn):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--lux-gold);
    transition: 0.25s;
}
.navlinks a:hover:after {
    width: 100%;
}
.mobile-toggle {
    display: none;
    background: var(--lux-black);
    color: #fff;
    border: 0;
    border-radius: 999px;
    width: 44px;
    height: 44px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lux-gold), #a06d26);
    color: #130d08;
    padding: 13px 24px;
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(160, 109, 38, 0.25);
    cursor: pointer;
    transition: 0.25s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(160, 109, 38, 0.34);
}
.btn.secondary {
    background: #fff;
    color: var(--lux-black);
    border: 1px solid var(--lux-line);
    box-shadow: none;
}
.hero {
    position: relative;
    min-height: 820px;
    background:
        linear-gradient(
            110deg,
            rgba(11, 10, 8, 0.92),
            rgba(110, 31, 26, 0.62),
            rgba(11, 10, 8, 0.18)
        ),
        url("/assets/images/india/taj-mahal-sunrise.png") center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 170px;
    background: linear-gradient(transparent, var(--lux-cream));
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 900px;
}
.hero h1 {
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    font-size: clamp(50px, 7vw, 94px);
    line-height: 0.95;
    margin: 14px 0 22px;
}
.hero p {
    max-width: 690px;
    color: #f3e4c8;
    font-size: 18px;
}
.search-panel {
    margin-top: 36px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 26px;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 12px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}
input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--lux-line);
    border-radius: 10px;
    padding: 10px 6px;
    font: inherit;
    background: #fff;
    color: var(--lux-ink);
    outline: none;
    transition: 0.2s;
}
input:focus,
select:focus,
textarea:focus {
    border-color: var(--lux-gold);
    box-shadow: 0 0 0 4px rgba(201, 155, 69, 0.15);
}
textarea {
    min-height: 132px;
}
.grid {
    display: grid;
    gap: 30px;
}
.grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.span-2 {
    grid-column: span 2;
}
.card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(234, 220, 196, 0.9);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.32s;
}
.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 90px rgba(42, 25, 12, 0.2);
}
.card-body {
    padding: 28px;
}
.package-card,
.destination-card,
.blog-card {
    height: 100%;
}
.package-card img,
.destination-card img,
.blog-card img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    transition: 0.48s;
}
.package-card:hover img,
.destination-card:hover img,
.blog-card:hover img {
    transform: scale(1.045);
}
.package-badge {
    display: inline-flex;
    background: var(--lux-maroon);
    color: #fff1cf;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 32px 0;
}
.stat-tile {
    background: #fff;
    border: 1px solid var(--lux-line);
    border-radius: 20px;
    padding: 22px;
}
.stat-tile h3 {
    font-size: 28px;
    margin: 0;
    color: var(--lux-maroon);
}
.image-stack img {
    border-radius: 36px;
    box-shadow: var(--shadow);
    height: 560px;
    width: 100%;
    object-fit: cover;
}
.glass-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 24px;
    padding: 16px;
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}
.page-hero {
    position: relative;
    background:
        linear-gradient(100deg, rgba(11, 10, 8, 0.9), rgba(110, 31, 26, 0.55)),
        url("/assets/images/india/agra-fort-mughal.png") center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 0 120px;
    overflow: hidden;
}
.page-hero h1 {
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1;
    margin: 0 0 16px;
}
.page-hero p {
    color: #eadfcd;
}
.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 36px;
}
.sidebar-box {
    background: #fff;
    border: 1px solid var(--lux-line);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 16px 45px rgba(42, 25, 12, 0.08);
}
.timeline {
    border-left: 2px solid var(--lux-line);
    margin-left: 20px;
}
.timeline-item {
    position: relative;
    padding: 0 0 32px 38px;
}
.timeline-item:before {
    content: attr(data-day);
    position: absolute;
    left: -20px;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--lux-gold), #a06d26);
    color: #130d08;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
}
.itinerary-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 6px 0 10px;
}
.itinerary-meta span {
    display: inline-flex;
    border: 1px solid var(--lux-line);
    border-radius: 999px;
    background: #fffaf1;
    color: var(--lux-bronze);
    padding: 5px 11px;
    font-size: 13px;
    font-weight: 900;
}
.footer {
    background:
        radial-gradient(
            circle at 20% 0,
            rgba(201, 155, 69, 0.18),
            transparent 34%
        ),
        #080705;
    color: #fff;
    padding: 86px 0 30px;
    border-top: 1px solid rgba(201, 155, 69, 0.25);
}
.footer p,
.footer li {
    color: #cabfae;
}
.footer h2,
.footer h3 {
    font-family: "Playfair Display", Georgia, serif;
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer li {
    margin: 12px 0;
}
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    color: #cabfae;
}
.flash {
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 22px;
}
.flash.success {
    background: #eaf9ef;
    color: #116234;
}
.flash.error {
    background: #fff0ed;
    color: #9a271a;
}
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 24px;
    z-index: 60;
    box-shadow: 0 18px 45px rgba(37, 211, 102, 0.34);
}
.cta-band {
    background:
        linear-gradient(110deg, rgba(11, 10, 8, 0.92), rgba(110, 31, 26, 0.7)),
        url("/assets/images/india/taj-mahal-sunrise.png") center/cover;
    color: #fff;
    border-radius: 36px;
    padding: 58px;
}
.newsletter {
    background: #fff;
    border: 1px solid var(--lux-line);
    border-radius: 30px;
    padding: 38px;
    box-shadow: var(--shadow);
}
.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
}
.page-link {
    display: block;
    padding: 10px 14px;
    border: 1px solid var(--lux-line);
    border-radius: 12px;
    background: #fff;
}
.active > .page-link {
    background: var(--lux-gold);
    color: #111;
}
.disabled > .page-link {
    opacity: 0.45;
}
.mobile-open .navlinks {
    display: flex;
}
@media (max-width: 1100px) {
    .search-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 980px) {
    .mobile-toggle {
        display: block;
    }
    .navlinks {
        display: none;
        position: absolute;
        left: 4%;
        right: 4%;
        top: 82px;
        background: #fff;
        border: 1px solid var(--lux-line);
        border-radius: 20px;
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: var(--shadow);
    }
    .hero {
        min-height: 720px;
    }
    .search-panel,
    .grid.cols-2,
    .grid.cols-3,
    .grid.cols-4,
    .two-col {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 70px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .image-stack img {
        height: 420px;
    }
    .cta-band {
        padding: 34px;
    }
    .topbar .container {
        display: block;
        padding: 8px 0;
    }
    .topbar span {
        margin: 4px 12px 4px 0;
    }
    .span-2 {
        grid-column: auto;
    }
}
@media (max-width: 560px) {
    .container {
        width: min(94%, 1180px);
    }
    .hero h1 {
        font-size: 44px;
    }
    .page-hero {
        padding: 104px 0 80px;
    }
    .card-body {
        padding: 22px;
    }
    .search-panel {
        border-radius: 20px;
    }
    .brand {
        font-size: 22px;
    }
    .brand img {
        height: 40px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        width: min(1120px, 94%);
    }
    .section {
        padding: 70px 0;
    }
    .navbar .container {
        gap: 14px;
    }
    .brand {
        font-size: 24px;
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .navlinks {
        gap: 13px;
        font-size: 13px;
    }
    .navlinks .btn {
        padding: 11px 15px;
    }
    .hero {
        min-height: 720px;
        align-items: center;
    }
    .hero-content {
        max-width: 780px;
    }
    .hero h1 {
        font-size: clamp(50px, 6.2vw, 74px);
        line-height: 0.98;
    }
    .hero p {
        max-width: 620px;
    }
    .search-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 28px;
        max-width: 930px;
    }
    .search-panel .btn {
        width: 100%;
    }
    .grid.cols-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .grid.cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .grid.cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .two-col {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 28px;
    }
    .package-card img,
    .destination-card img,
    .blog-card img {
        height: 230px;
    }
    .card-body {
        padding: 24px;
    }
    .page-hero {
        padding: 122px 0 96px;
    }
    .image-stack img {
        height: 480px;
    }
    .cta-band {
        padding: 44px;
    }
}

@media (max-width: 991px) {
    .container {
        width: min(720px, 92%);
    }
    .topbar .container {
        display: block;
        padding: 8px 0;
    }
    .topbar span {
        margin: 4px 12px 4px 0;
    }
    .navbar .container {
        position: relative;
        gap: 14px;
        min-height: 70px;
    }
    .brand {
        font-size: 23px;
        line-height: 1.05;
        max-width: calc(100% - 78px);
    }
    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-width: 58px;
        padding: 0 13px;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }
    .navlinks {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--lux-line);
        border-radius: 20px;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
    }
    .mobile-open .navlinks {
        display: flex;
    }
    .navlinks a {
        width: 100%;
        padding: 9px 8px;
    }
    .navlinks .btn {
        margin-top: 8px;
        padding: 12px 16px;
    }
    .section {
        padding: 60px 0;
    }
    .hero {
        min-height: 680px;
        padding: 86px 0 56px;
    }
    .hero h1 {
        font-size: clamp(42px, 7.2vw, 60px);
        line-height: 1;
        margin-bottom: 18px;
    }
    .hero p {
        font-size: 16px;
        max-width: 610px;
    }
    .hero .btn {
        padding: 12px 18px;
    }
    .search-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 24px;
        border-radius: 22px;
    }
    .search-panel .btn {
        width: 100%;
    }
    .grid {
        gap: 22px;
    }
    .grid.cols-2,
    .grid.cols-3,
    .grid.cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .two-col {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .package-card,
    .destination-card,
    .blog-card {
        display: flex;
        flex-direction: column;
    }
    .package-card .card-body,
    .destination-card .card-body,
    .blog-card .card-body {
        display: flex;
        flex: 1;
        flex-direction: column;
    }
    .package-card .btn,
    .destination-card .btn,
    .blog-card .btn {
        align-self: flex-start;
        margin-top: auto;
    }
    .package-card img,
    .destination-card img,
    .blog-card img {
        height: 220px;
    }
    .package-badge {
        max-width: 100%;
        white-space: normal;
    }
    .page-hero {
        padding: 108px 0 84px;
    }
    .page-hero h1,
    .section-title {
        overflow-wrap: anywhere;
    }
    .image-stack img {
        height: 380px;
    }
    .cta-band {
        padding: 36px;
        border-radius: 28px;
    }
    .cta-band .grid.cols-2 {
        grid-template-columns: 1fr;
    }
    .cta-band [style*="text-align:right"] {
        text-align: left !important;
    }
    .footer .grid.cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .span-2 {
        grid-column: auto;
    }
    .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 18px;
        bottom: 18px;
    }
    .scroll-top {
        right: 18px;
        bottom: 84px;
    }
}

@media (max-width: 820px) and (min-width: 641px) {
    .container {
        width: min(700px, 92%);
    }
    .hero {
        min-height: 660px;
    }
    .hero h1 {
        font-size: clamp(40px, 7vw, 54px);
    }
    .section-title {
        font-size: clamp(32px, 5.8vw, 44px);
    }
    .package-card img,
    .destination-card img,
    .blog-card img {
        height: 205px;
    }
    .card-body {
        padding: 22px;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(94%, 680px);
    }
    .hero {
        min-height: auto;
        padding: 94px 0 58px;
    }
    .hero h1 {
        font-size: clamp(38px, 11vw, 48px);
    }
    .hero p {
        font-size: 15px;
    }
    .search-panel,
    .grid.cols-2,
    .grid.cols-3,
    .grid.cols-4,
    .stats-grid,
    .footer .grid.cols-3 {
        grid-template-columns: 1fr;
    }
    .search-panel {
        padding: 14px;
    }
    .package-card img,
    .destination-card img,
    .blog-card img {
        height: 240px;
    }
    .image-stack img {
        height: 320px;
    }
}

@media (max-width: 420px) {
    .brand {
        font-size: 20px;
    }
    .mobile-toggle {
        min-width: 52px;
        padding: 0 10px;
        letter-spacing: 0.04em;
    }
    .hero .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .package-card img,
    .destination-card img,
    .blog-card img {
        height: 210px;
    }
}
