:root {
    --primary: #ff5f6d;
    --primary-deep: #ef4059;
    --primary-soft: #ffedf0;
    --ink: #1f2430;
    --ink-soft: #5f6673;
    --card: rgba(255, 255, 255, 0.84);
    --line: rgba(255, 95, 109, 0.33);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 20% -10%, rgba(255, 95, 109, 0.28), transparent 42%),
        radial-gradient(circle at 85% 10%, rgba(255, 95, 109, 0.12), transparent 34%),
        linear-gradient(130deg, #fff9fa 0%, #fff4f6 45%, #ffecee 100%);
}

h1, h2, h3, h4, .brand-logo {
    font-family: "Playfair Display", serif;
}

.section-title {
    font-size: clamp(1.55rem, 2.4vw, 2.3rem);
    margin-bottom: 1rem;
    color: var(--ink);
}

.section-lead {
    color: var(--ink-soft);
    max-width: 760px;
}

.site-header {
    z-index: 1040;
}

.header-shell {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 95, 109, 0.22);
    padding: 0.52rem 0;
    box-shadow: 0 6px 26px rgba(255, 95, 109, 0.1);
}

.header-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo img {
    width: 130px;
    max-width: 45vw;
    height: auto;
    object-fit: contain;
}

.header-menu {
    justify-content: center;
    display: flex;
    gap: 2.55rem;
}

.header-menu a {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    padding: 0.2rem 0;
    transition: all 0.22s ease;
}

.header-menu a:hover {
    color: var(--primary);
}

.header-icons {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.header-icon-link {
    min-height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 95, 109, 0.24);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    padding: 0.26rem 0.7rem 0.26rem 0.28rem;
    color: var(--primary);
    text-decoration: none;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 95, 109, 0.05));
    box-shadow: 0 6px 14px rgba(255, 95, 109, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.header-icon-link:hover {
    color: var(--primary);
    transform: translateY(-1px);
    border-color: rgba(255, 95, 109, 0.45);
    box-shadow: 0 10px 18px rgba(255, 95, 109, 0.16);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 95, 109, 0.08));
    text-decoration: none;
}

.header-icon-link svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    padding: 6px;
    border-radius: 50%;
    background: rgba(255, 95, 109, 0.12);
    border: 1px solid rgba(255, 95, 109, 0.24);
}

.header-icon-text {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.header-icon-link:hover .header-icon-text {
    color: var(--primary-deep);
    text-decoration: none;
}

.header-icon-link:hover svg {
    background: rgba(255, 95, 109, 0.2);
}

.mobile-menu-btn {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 95, 109, 0.35);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    padding: 0;
}

.mobile-menu-btn span {
    width: 16px;
    height: 1.7px;
    background: var(--primary);
    border-radius: 2px;
}

.mobile-offcanvas {
    background: linear-gradient(160deg, #ff5f6d, #ff7e8a);
    color: rgba(255, 255, 255, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-offcanvas .offcanvas-title {
    font-family: "Playfair Display", serif;
    letter-spacing: 0.06em;
    color: #fff;
}

.mobile-brand img {
    width: 165px;
    height: auto;
    margin-bottom: 1rem;
}

.mobile-menu li + li {
    margin-top: 0.35rem;
}

.mobile-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    padding: 0.65rem 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-contact-list {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.mobile-contact-list a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .brand-logo img {
        width: 120px;
    }

    .header-row {
        grid-template-columns: 1fr auto;
    }
}

.hero-premium {
    position: relative;
    min-height: 80vh;
    max-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.03);
    animation: heroImageCycle 24s infinite;
}

.hero-bg-image.bg-1 {
    background-image: url("../images/kedarnath.webp");
    animation-delay: 0s;
}

.hero-bg-image.bg-2 {
    background-image: url("../images/Yamunotri_shrine.jpg.webp");
    animation-delay: 6s;
}

.hero-bg-image.bg-3 {
    background-image: url("../images/Gangotri_temple.jpg.webp");
    animation-delay: 12s;
}

.hero-bg-image.bg-4 {
    background-image: url("../images/Badrinath_Temple_,_Uttarakhand.jpg.webp");
    animation-delay: 18s;
}

.hero-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(102deg, rgba(12, 22, 38, 0.82) 0%, rgba(12, 22, 38, 0.72) 44%, rgba(12, 22, 38, 0.56) 100%),
        linear-gradient(180deg, rgba(12, 22, 38, 0.25) 0%, rgba(12, 22, 38, 0.48) 100%);
    pointer-events: none;
}

.hero-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(1.6rem, 3vw, 3rem);
    align-items: end;
    padding: clamp(1.1rem, 2.4vw, 1.8rem) 0;
}

.hero-copy {
    max-width: 640px;
}

.hero-label {
    margin: 0 0 0.9rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-title {
    margin: 0 0 0.9rem;
    color: #fff;
    font-size: clamp(2rem, 4.8vw, 4rem);
    line-height: 1.08;
    text-wrap: balance;
}

.hero-description {
    margin: 0 0 1.45rem;
    color: rgba(243, 246, 251, 0.92);
    font-size: clamp(0.98rem, 1.5vw, 1.08rem);
    line-height: 1.7;
    max-width: 56ch;
    white-space: normal;
    overflow-wrap: anywhere;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    color: #fff !important;
    line-height: 1.2;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.hero-actions .btn:hover {
    transform: translateY(-1px);
}

.hero-actions .btn-outline-luxury {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.hero-actions .btn-outline-luxury:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.hero-heli {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    padding-left: clamp(1rem, 2vw, 1.5rem);
    color: #fff;
}

.hero-heli h3 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.3rem, 2.3vw, 1.8rem);
    line-height: 1.2;
}

.hero-heli-sub {
    margin: 0 0 0.9rem;
    color: rgba(243, 246, 251, 0.9);
    font-size: 0.95rem;
}

.hero-heli-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.9rem;
    font-size: 0.88rem;
    color: rgba(243, 246, 251, 0.9);
    margin-bottom: 1rem;
}

.hero-heli-meta span strong {
    color: #fff;
}

.hero-itinerary {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.hero-itinerary li {
    font-size: 0.9rem;
    color: rgba(250, 251, 253, 0.95);
    line-height: 1.4;
    display: flex;
    align-items: center;
}

.hero-itinerary li i {
    font-size: 1.1rem;
    color: #ffd7dc;
    opacity: 0.8;
}

.hero-itinerary .day {
    color: #ffd7dc;
    font-weight: 700;
    margin-right: 0.45rem;
}

.hero-price-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.55rem;
    margin-bottom: 0.3rem;
}

.hero-price-old {
    text-decoration: line-through;
    font-size: 0.8em;
    opacity: 0.7;
    margin-right: 0.2rem;
    color: rgba(245, 248, 252, 0.7);
    font-weight: 500;
}

.hero-price {
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    color: #ffbc1e;
    font-weight: 700;
    line-height: 1;
}

.hero-duration {
    color: rgba(245, 248, 252, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-from {
    margin: 0;
    color: rgba(245, 248, 252, 0.86);
    font-size: 0.88rem;
}

.hero-mobile-itinerary {
    display: none;
    margin-top: 0.7rem;
    position: relative;
}

.hero-mobile-itinerary-label {
    margin: 0 0 0.5rem;
    font-size: 0.74rem;
    color: rgba(248, 251, 255, 0.8);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-mobile-itinerary::before,
.hero-mobile-itinerary::after {
    content: "";
    position: absolute;
    top: 1.45rem;
    bottom: 0;
    width: 18px;
    z-index: 2;
    pointer-events: none;
}

.hero-mobile-itinerary::before {
    left: -1px;
    background: linear-gradient(90deg, rgba(12, 22, 38, 0.8), rgba(12, 22, 38, 0));
}

.hero-mobile-itinerary::after {
    right: -1px;
    background: linear-gradient(270deg, rgba(12, 22, 38, 0.8), rgba(12, 22, 38, 0));
}

.hero-mobile-itinerary-rail {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.25rem 0.05rem 0.45rem;
}

.hero-mobile-itinerary-rail::-webkit-scrollbar {
    display: none;
}

.hero-mobile-itinerary-card {
    min-width: 230px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0.7rem 0.78rem;
    border-radius: 0.86rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(150deg, rgba(12, 22, 38, 0.84), rgba(20, 35, 58, 0.7));
    box-shadow: 0 10px 22px rgba(8, 18, 33, 0.26);
    color: #f8fbff;
    line-height: 1.35;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.hero-mobile-itinerary-card i {
    font-size: 1rem;
    color: #ffbc1e;
    opacity: 0.9;
}

.hero-mobile-itinerary-card .day {
    display: inline-block;
    color: #ffbc1e;
    font-weight: 700;
    margin-right: 0.38rem;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .hero-premium {
        min-height: 70vh;
        max-height: none;
        padding-top: 3rem;
        align-items: flex-start;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0.7rem 0 1.1rem;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-heli {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.35);
        padding-left: 0;
        padding-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-premium {
        min-height: 68vh;
        padding-top: 2.5rem;
        max-height: none;
    }

    .hero-shell {
        gap: 1rem;
    }

    .hero-premium::before {
        background:
            linear-gradient(102deg, rgba(12, 22, 38, 0.88) 0%, rgba(12, 22, 38, 0.8) 44%, rgba(12, 22, 38, 0.7) 100%),
            linear-gradient(180deg, rgba(12, 22, 38, 0.34) 0%, rgba(12, 22, 38, 0.56) 100%);
    }

    .hero-label {
        font-size: 0.72rem;
        margin-bottom: 0.55rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7.8vw, 2.55rem);
        margin-bottom: 0.65rem;
    }

    .hero-description {
        max-width: 100%;
        margin-bottom: 1rem;
        white-space: normal;
    }

    .hero-heli h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .hero-heli-sub {
        font-size: 0.86rem;
        margin-bottom: 0.7rem;
    }

    .hero-itinerary {
        gap: 0.35rem;
    }

    .hero-itinerary li {
        font-size: 0.84rem;
        line-height: 1.33;
    }

    .hero-price {
        font-size: 1.42rem;
    }

    .hero-duration,
    .hero-from {
        font-size: 0.82rem;
    }

    .hero-heli {
        display: none;
    }

    .hero-mobile-itinerary {
        display: block;
    }
}

@media (max-width: 575.98px) {
    .hero-premium {
        min-height: 64vh;
        padding-top: 2rem;
    }

    .hero-shell {
        padding: 0.2rem 0 0.95rem;
    }

    .hero-title {
        font-size: clamp(1.62rem, 8.8vw, 2.2rem);
    }

    .hero-description {
        margin-bottom: 0.9rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-actions {
        gap: 0.5rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
        padding: 0.66rem 1rem;
        font-size: 0.9rem;
    }

    .hero-mobile-itinerary-card {
        min-width: 212px;
    }
}

@media (max-width: 420px) {
    .hero-premium {
        min-height: 62vh;
        padding-top: 1.8rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 8.2vw, 1.9rem);
    }

    .hero-label {
        letter-spacing: 0.09em;
    }

    .hero-heli h3 {
        font-size: 1rem;
    }

    .hero-heli-sub,
    .hero-itinerary li,
    .hero-from {
        font-size: 0.8rem;
    }

    .hero-price {
        font-size: 1.3rem;
    }
}

@keyframes heroImageCycle {
    0% { opacity: 0; transform: scale(1.04); }
    8% { opacity: 1; }
    24% { opacity: 1; transform: scale(1); }
    32% { opacity: 0; transform: scale(0.99); }
    100% { opacity: 0; transform: scale(0.99); }
}

.btn-luxury {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #ff5f6d, #ef4059);
    box-shadow: 0 8px 24px rgba(255, 95, 109, 0.35);
}

.btn-outline-luxury {
    border: 1px solid var(--line);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.7);
}

.why-choose {
    position: relative;
    padding: 1.8rem 0 2.8rem;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 95, 109, 0.2) 0%, rgba(255, 95, 109, 0) 44%),
        radial-gradient(circle at 88% 26%, rgba(255, 152, 168, 0.2) 0%, rgba(255, 152, 168, 0) 40%),
        linear-gradient(140deg, #fff7f8 0%, #fff0f2 52%, #ffe8ec 100%);
    overflow: hidden;
}

.why-choose::before,
.why-choose::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.why-choose::before {
    width: 270px;
    height: 270px;
    left: -80px;
    top: 20px;
    background: radial-gradient(circle, rgba(255, 95, 109, 0.2) 0%, rgba(255, 95, 109, 0) 72%);
}

.why-choose::after {
    width: 260px;
    height: 260px;
    right: -70px;
    bottom: -30px;
    background: radial-gradient(circle, rgba(255, 95, 109, 0.16) 0%, rgba(255, 95, 109, 0) 74%);
}

.why-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(1.4rem, 3vw, 3rem);
    align-items: start;
}

.why-intro {
    padding: clamp(1rem, 2vw, 1.4rem);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.34));
    border: 1px solid rgba(255, 95, 109, 0.18);
    border-left: 4px solid #ff4d4d;
    border-radius: 1rem;
    box-shadow: 0 16px 34px rgba(255, 95, 109, 0.09);
}

.why-intro .section-title {
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    line-height: 1.08;
}

.why-kicker {
    margin: 0 0 0.65rem;
    color: #f3364d;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.why-points {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.why-points li {
    color: var(--ink-soft);
    font-size: 0.96rem;
    display: flex;
    gap: 0.55rem;
    align-items: center;
}

.why-points li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(255, 95, 109, 0.18);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.05rem;
    position: relative;
    isolation: isolate;
}

.why-grid::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -100px;
    top: -70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.16) 0%, rgba(255, 77, 77, 0) 72%);
    z-index: 0;
    pointer-events: none;
}

.why-card {
    position: relative;
    z-index: 1;
    height: 100%;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(255, 95, 109, 0.1));
    border: 1px solid rgba(255, 95, 109, 0.24);
    border-radius: 1rem;
    padding: 1.2rem 1.15rem;
    box-shadow: 0 16px 28px rgba(255, 95, 109, 0.11);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    opacity: 0;
    animation: whyFadeIn 0.65s ease forwards;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 34px rgba(255, 95, 109, 0.18);
    border-color: rgba(255, 77, 77, 0.44);
}

.why-card:nth-child(1) {
    background: linear-gradient(160deg, #fff, #ffeff2);
    animation-delay: 0.08s;
}

.why-card:nth-child(2) {
    background: linear-gradient(160deg, #fff, #fff0f4);
    animation-delay: 0.16s;
}

.why-card:nth-child(3) {
    background: linear-gradient(160deg, #fff, #ffeef3);
    animation-delay: 0.24s;
}

.why-card:nth-child(4) {
    background: linear-gradient(160deg, #fff, #fff2f5);
    animation-delay: 0.32s;
}

.why-card:nth-child(5) {
    background: linear-gradient(160deg, #fff, #fff0f6);
    animation-delay: 0.40s;
}

.why-card:nth-child(6) {
    background: linear-gradient(160deg, #fff, #ffedf2);
    animation-delay: 0.48s;
}

.why-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.why-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.14);
    border: 1px solid rgba(255, 77, 77, 0.3);
    box-shadow: 0 8px 16px rgba(255, 77, 77, 0.16);
}

.why-icon svg {
    width: 18px;
    height: 18px;
}

.why-card .why-count {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
    display: inline-block;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff5f6d, #ef4059);
    padding: 0.28rem 0.54rem;
    box-shadow: 0 8px 18px rgba(255, 95, 109, 0.26);
}

.why-card h3 {
    font-size: 1.06rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .why-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes whyFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.packages {
    padding: 2rem 0 3rem;
    position: relative;
}

.section-header-centered {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3.5rem;
}

.section-header-centered .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.section-header-centered .section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-description-centered {
    color: var(--ink-soft);
    font-size: 1.1rem;
    line-height: 1.6;
}

.package-card {
    height: 100%;
    border: 1px solid rgba(255, 95, 109, 0.15);
    border-radius: 1.25rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(255, 95, 109, 0.08);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 95, 109, 0.15);
    border-color: rgba(255, 95, 109, 0.3);
}

.package-image-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-image {
    transform: scale(1.1);
}

.package-body {
    padding: 1.5rem;
}

.package-meta-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    color: var(--primary-deep);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-card .package-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--ink);
    font-weight: 700;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-card .package-description {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-info-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 95, 109, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.info-item i {
    color: var(--primary);
    font-size: 1rem;
}

.package-price-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.price-now {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-deep);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.price-old {
    font-size: 0.85rem;
    color: var(--ink-soft);
    text-decoration: line-through;
    opacity: 0.7;
    margin-left: 0.5rem;
}

.btn-view-details {
    background: linear-gradient(135deg, #ff5f6d, #ef4059);
    color: #fff !important;
    border: none;
    padding: 0.55rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 95, 109, 0.25);
}

.btn-view-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 95, 109, 0.4);
}

.faqs {
    padding: 4.5rem 0 3.5rem;
    position: relative;
    background: 
        radial-gradient(circle at 5% 20%, rgba(255, 95, 109, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 95% 80%, rgba(255, 95, 109, 0.06) 0%, transparent 30%);
}

.faqs .section-header-centered {
    margin-bottom: 4rem;
}

.faq-accordion-refined {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.faq-item-premium {
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 95, 109, 0.16);
    border-radius: 1.15rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.24, 1, 0.32, 1);
}

.faq-item-premium:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 95, 109, 0.35);
    box-shadow: 0 12px 32px rgba(255, 95, 109, 0.11);
    transform: translateY(-2px);
}

.faq-trigger-premium {
    width: 100%;
    padding: 1.35rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    text-align: left;
    outline: none !important;
    cursor: pointer;
}

.faq-question-text {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    padding-right: 1.5rem;
}

.faq-chevron {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 95, 109, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform 0.4s ease, background-color 0.4s ease, color 0.4s ease;
}

.faq-item-premium.active .faq-chevron {
    transform: rotate(180deg);
    background: var(--primary);
    color: #fff;
}

.faq-content-premium {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-premium.active {
    background: #fff;
    border-color: rgba(255, 95, 109, 0.4);
    box-shadow: 0 16px 40px rgba(255, 95, 109, 0.14);
}

.faq-item-premium.active .faq-content-premium {
    max-height: 600px; /* Large enough to fit content */
}

.faq-answer-inner {
    padding: 0 1.6rem 1.6rem;
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.7;
}

@media (max-width: 575.98px) {
    .faq-question-text {
        font-size: 1.02rem;
    }
    
    .faq-answer-inner {
        font-size: 0.95rem;
    }
}

.cta {
    padding: 4.5rem 0 5.5rem;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1616788494672-ec7ca25fdda6?q=80&w=2000&auto=format&fit=crop") center/cover no-repeat;
    filter: brightness(0.4) saturate(1.2);
    z-index: 0;
}

.cta-box {
    position: relative;
    z-index: 2;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: clamp(2.5rem, 6vw, 4.5rem);
    background: linear-gradient(135deg, rgba(255, 95, 109, 0.92), rgba(239, 64, 89, 0.88));
    backdrop-filter: blur(15px);
    color: #fff;
    box-shadow: 0 24px 64px rgba(255, 95, 109, 0.38);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-box h2 {
    color: #fff;
    font-size: clamp(1.85rem, 4.2vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.96);
    max-width: 720px;
    margin: 0 auto 2.2rem;
    font-size: 1.18rem;
    line-height: 1.65;
}

.cta-box .btn-luxury {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-weight: 700;
    transition: all 0.35s cubic-bezier(0.2, 1, 0.22, 1);
}

.cta-box .btn-luxury:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-box .btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    transition: all 0.35s ease;
}

.cta-box .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}


.cta-box h2 {
    color: #fff;
    margin-bottom: 0.8rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.93);
    max-width: 660px;
    margin-bottom: 1.25rem;
}



.site-footer {
    background: #0c1626;
    color: rgba(255, 255, 255, 0.82);
    padding: 4.5rem 0 0;
    border-top: 1px solid rgba(255, 95, 109, 0.25);
    font-family: "Manrope", sans-serif;
}

#featured-packages, #why-choose-us, #faqs {
    padding: 4.5rem 0 3.5rem;
}

.footer-main {
    padding-bottom: 3.5rem;
}

.footer-col-title {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-weight: 700;
}

.footer-col-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-reg-info {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-reg-info strong {
    color: #fff;
}

.footer-links-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: all 0.25s ease;
    font-size: 0.94rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-item {
    margin-bottom: 1.4rem;
}

.footer-contact-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 0.6rem;
    font-weight: 800;
}

.footer-address-card {
    margin-bottom: 1.8rem;
}

.footer-address-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-address-title i {
    color: var(--primary);
}

.footer-address-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.secondary-link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.2s ease;
}

.secondary-link:hover {
    color: var(--primary) !important;
}

.footer-bottom {
    background: #08101e;
    padding: 1.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    line-height: 1.6;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .site-footer {
        padding-top: 4rem;
    }
    .footer-main {
        padding-bottom: 2rem;
    }
    .footer-col-title {
        margin-top: 1.8rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .featured-packages, .why-choose-us, .faqs {
        padding: 3rem 0 2rem;
    }
    .cta {
        padding: 3rem 0 4rem;
    }
    .cta-box {
        padding: 2.2rem 1.4rem;
        border-radius: 1.4rem;
    }
    .cta-box p {
        font-size: 1rem;
        margin-bottom: 1.6rem;
    }
    .footer-bottom {
        text-align: center;
    }
}

.dham-overview {
    padding: 4.5rem 0;
    position: relative;
}

.dham-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.dham-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.dham-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 95, 109, 0.22);
}

.dham-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.dham-card:hover .dham-card-img {
    transform: scale(1.1);
}

.dham-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.dham-card-name {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.dham-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.dham-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dham-meta-item i {
    color: var(--primary);
    font-size: 1rem;
}

.dham-altitude-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 1199.98px) {
    .dham-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .dham-grid {
        grid-template-columns: 1fr;
    }
    .dham-card {
        height: 320px;
    }
    .dham-overview {
        padding: 3rem 0;
    }
}

/* Package Detail Page Styles */
.package-details-page {
    background: #f8fafc;
}

.details-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    color: #fff;
}

.details-hero .breadcrumb-item, .details-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 0.9rem;
}

.details-hero .breadcrumb-item.active {
    color: #fff !important;
}

.details-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.details-subtitle {
    display: flex;
    gap: 2rem;
    font-size: 1.1rem;
}

.details-meta-bar {
    background: #fff;
    padding: 1.8rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 75px; 
    z-index: 100;
}

.meta-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    display: block;
    font-size: 0.82rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.price-value .currency { font-size: 1.1rem; }
.original-price {
    font-size: 1.1rem;
    color: #94a3b8;
    text-decoration: line-through;
}
.per-person { font-size: 0.9rem; color: #64748b; font-weight: 500; }

.meta-ctas { display: flex; gap: 1rem; }

.btn-whatsapp {
    background: #1e293b;
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1.8rem;
    border-radius: 0.6rem;
}
.btn-whatsapp:hover { background: #0f172a; color: #fff; transform: translateY(-2px); }

.btn-call {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1.8rem;
    border-radius: 0.6rem;
}
.btn-call:hover { opacity: 0.9; color: #fff; transform: translateY(-2px); }

.content-card {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f6;
}

.content-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.package-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #475569;
}

.itinerary-list {
    position: relative;
    padding-left: 2rem;
}

.itinerary-list::before {
    content: "";
    position: absolute;
    left: 0.45rem;
    top: 1rem;
    bottom: 2rem;
    width: 2px;
    background: #e2e8f0;
}

.itinerary-item {
    position: relative;
    margin-bottom: 2.2rem;
}

.itinerary-day {
    position: absolute;
    left: -2rem;
    width: 1.1rem;
    height: 1.1rem;
    background: var(--primary);
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #e2e8f0;
    font-size: 0;
}

.itinerary-body {
    background: #f8fafc;
    padding: 1.5rem 1.8rem;
    border-radius: 1rem;
    border: 1px solid #edf2f7;
}

.itinerary-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.6rem;
}

.itinerary-desc {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.inc-exc-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inc-exc-content ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.85rem;
    font-size: 0.98rem;
    color: #475569;
}

.inc-exc-content ul li::before {
    content: "\F272";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.inc-exc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inc-exc-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.85rem;
    font-size: 0.98rem;
    color: #475569;
}

.inc-exc-list li::before {
    content: "\F272";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sidebar-card {
    background: #fff;
    padding: 1.8rem;
    border-radius: 1.25rem;
    border: 1px solid #eef2f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sidebar-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.4rem;
}

.departure-item {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px dashed #e2e8f0;
}

.departure-item:last-child { border: none; }

.departure-item .month { font-weight: 700; color: #1e293b; }
.departure-item .dates { font-size: 0.92rem; color: #64748b; }

.payment-badges { display: flex; gap: 0.8rem; opacity: 0.7; }

.btn-theme-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-theme-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.other-packages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.other-package-item {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.other-package-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.other-package-item:hover .item-name {
    color: var(--primary);
}

.other-package-item .item-img {
    width: 65px;
    height: 65px;
    border-radius: 0.75rem;
    overflow: hidden;
    flex-shrink: 0;
}

.other-package-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-package-item .item-info {
    flex: 1;
}

.other-package-item .item-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.2rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.other-package-item .item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.other-package-item .item-location, 
.other-package-item .item-duration {
    font-size: 0.75rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.other-package-item .item-price {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--primary);
}

/* Enhanced Sidebar Styles */
.bg-theme-soft {
    background: #fffafa !important;
}

.border-theme {
    border: 1px solid rgba(255, 95, 109, 0.2) !important;
}

.sidebar-overview-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overview-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.overview-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.03em;
}

.overview-item .value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
}

.overview-item .value i {
    color: var(--primary);
    margin-right: 0.4rem;
}

.overview-item .value.highlight {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 800;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.trust-list li:last-child {
    border-bottom: none;
}

.trust-list li i {
    color: #22c55e;
    font-size: 1.2rem;
}

.essentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.essential-item {
    background: #f8fafc;
    padding: 0.8rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
}

.essential-item i {
    font-size: 1.25rem;
    color: var(--primary);
}

.essential-item span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
}

.card-featured-image {
    overflow: hidden;
    position: relative;
    background: #f8fafc;
}

.card-featured-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.content-card:hover .card-featured-image img {
    transform: scale(1.05);
}

.sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 160px;
    z-index: 20;
    align-self: flex-start;
    width: 100%;
}

@media (max-width: 991.98px) {
    .details-meta-bar { position: static; }
    .meta-bar-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* Info Premium Sections */
.info-premium {
    padding: 3rem 0;
    background: #fdfdfd;
    isolation: isolate;
}

.info-premium:nth-child(odd) {
    background: #fdfdfd;
}

.info-premium:nth-child(even) {
    background: #f8fbff;
}

.info-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-copy .section-kicker {
    font-family: var(--font-manrope);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffbc1e;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

.info-copy h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    color: var(--ink);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.info-copy p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 1.8rem;
}

.info-image-wrap {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.info-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-image-wrap:hover img {
    transform: scale(1.04);
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-stat-item {
    text-align: center;
}

.info-stat-val {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--ink);
    font-weight: 700;
}

.info-stat-label {
    font-size: 0.8rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .info-premium { padding: 2.5rem 0; }
    .info-content-grid { grid-template-columns: 1fr; gap: 2rem; }
    .info-copy { order: 2; }
    .info-image-wrap { order: 1; }
}

/* Welcome Banner & Particles */
.welcome-banner {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #16263e 0%, #0c1626 100%);
    overflow: hidden;
    color: #fff;
    text-align: center;
    border-top: 1px solid rgba(255, 188, 30, 0.2);
    border-bottom: 1px solid rgba(255, 188, 30, 0.2);
}

.welcome-banner .container {
    position: relative;
    z-index: 10;
}

.welcome-banner h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    color: #ffbc1e;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.welcome-banner p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.02em;
}

.particles-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: floatParticle 15s infinite linear;
    bottom: -20px;
}

@keyframes floatParticle {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-400px) rotate(360deg); opacity: 0; }
}

/* Custom Particle Variations */
.p-gold { background: radial-gradient(circle, #ffbc1e, #d4a017); box-shadow: 0 0 10px rgba(255, 188, 30, 0.4); }
.p-orange { background: radial-gradient(circle, #ff7e33, #e65c00); box-shadow: 0 0 10px rgba(255, 126, 51, 0.4); }
.p-red { background: radial-gradient(circle, #ff5f6d, #d31027); box-shadow: 0 0 10px rgba(255, 95, 109, 0.4); }