/* ─── HERO ─── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 780px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

/* Cinematic side fade */
.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    animation: heroReveal 1.2s ease forwards;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: heroReveal 1.2s 0.2s ease both;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 400;
    line-height: 1.05;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    animation: heroReveal 1.2s 0.35s ease both;
}

.hero-title em {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light);
    font-size: 1.1em;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation: heroReveal 1.2s 0.5s ease both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroReveal 1.2s 0.65s ease both;
}

.btn-primary {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: var(--gold);
    color: #000;
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-101%);
    transition: transform 0.4s ease;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-outline {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: heroReveal 1.2s 0.9s ease both;
}

.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* ─── SECTIONS COMMON ─── */
section {
    padding: 7rem 4rem;
}

.section-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    flex: 0 0 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: 0.03em;
}

.section-title em {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.1em;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 600px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header .section-eyebrow {
    justify-content: center;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ─── SERVICES ─── */
#services {
    background: var(--bg2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    background: var(--card-bg);
    padding: 3rem 2.5rem;
    transition: background var(--transition), transform 0.3s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: var(--card-hover);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: grayscale(0.2);
}
.service-icon img{
    height: 100px;
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.service-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--border);
    line-height: 1;
}

/* ─── CATEGORIES ─── */
#categories {
    background: var(--bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 1rem;
}

.cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cat-card:first-child {
    grid-row: 1 / 3;
}

.cat-card img,
.cat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.cat-card:hover img,
.cat-card:hover .cat-card-img {
    transform: scale(1.07);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: opacity 0.3s;
}

.cat-tag {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.cat-name {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.cat-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
}

/* Placeholder category images via CSS gradients */
.cat-img-1 {
    background: linear-gradient(135deg, #1a2744 0%, #2d4a8a 50%, #1a3055 100%);
}

.cat-img-2 {
    background: linear-gradient(135deg, #2d4a1a 0%, #4a7a2d 50%, #1a3a10 100%);
}

.cat-img-3 {
    background: linear-gradient(135deg, #44251a 0%, #7a4a2d 50%, #3a1a10 100%);
}

.cat-img-4 {
    background: linear-gradient(135deg, #1a3a44 0%, #2d6a7a 50%, #102a3a 100%);
}

.cat-img-5 {
    background: linear-gradient(135deg, #3a1a44 0%, #6a2d7a 50%, #2a103a 100%);
}

/* Add silhouettes using pseudo elements */
.cat-card-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.cat-card-img svg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.15;
}

/* ─── PACKAGES ─── */
#packages {
    background: var(--bg2);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.pkg-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.pkg-img {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.pkg-img-bg {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
}

.pkg-card:hover .pkg-img-bg {
    transform: scale(1.06);
}

.pkg-img-bg-1 {
    background: linear-gradient(145deg, #0d2137 0%, #1a4a6e 100%);
}

.pkg-img-bg-2 {
    background: linear-gradient(145deg, #1a1a0d 0%, #4a4010 100%);
}

.pkg-img-bg-3 {
    background: linear-gradient(145deg, #2a0d1a 0%, #6e1a3a 100%);
}

.pkg-img-bg-4 {
    background: linear-gradient(145deg, #0d1a2a 0%, #1a4030 100%);
}

.pkg-img-bg-5 {
    background: linear-gradient(145deg, #2a1a0d 0%, #6e3a1a 100%);
}

.pkg-img-bg-6 {
    background: linear-gradient(145deg, #0d2a2a 0%, #1a5050 100%);
}

.pkg-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: #000;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
}

.pkg-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pkg-body {
    padding: 1.8rem;
}

.pkg-location {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.pkg-name {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    /* margin-bottom: 0.8rem; */
    line-height: 1.3;
}

.pkg-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.pkg-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.pkg-feat {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pkg-feat::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.5rem;
}

.pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.pkg-price {
    display: flex;
    flex-direction: column;
}

.pkg-price-from {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pkg-price-val {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--gold);
}

.pkg-price-per {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.btn-sm {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    transition: all 0.3s;
}

.btn-sm:hover {
    background: var(--gold);
    color: #000;
}

/* ─── DESTINATIONS ─── */
#destinations-intl,
#destinations-india {
    background: var(--bg);
}

#destinations-india {
    background: var(--bg2);
}

.dest-scroll-wrap {
    position: relative;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.dest-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    min-width: 200px;
}

.dest-card-bg {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.dest-card:hover .dest-card-bg {
    transform: scale(1.08);
}

.d1 {
    background: linear-gradient(145deg, #0a1628 0%, #1a3a6e 100%);
}

.d2 {
    background: linear-gradient(145deg, #1a2810 0%, #3a6020 100%);
}

.d3 {
    background: linear-gradient(145deg, #280a10 0%, #6e1a2a 100%);
}

.d4 {
    background: linear-gradient(145deg, #1a1428 0%, #4a3a70 100%);
}

.d5 {
    background: linear-gradient(145deg, #1a2820 0%, #2a6050 100%);
}

.d6 {
    background: linear-gradient(145deg, #281a0a 0%, #6e4a1a 100%);
}

.d7 {
    background: linear-gradient(145deg, #0a2228 0%, #1a5a6e 100%);
}

.d8 {
    background: linear-gradient(145deg, #280a28 0%, #6e1a6e 100%);
}

.d9 {
    background: linear-gradient(145deg, #281a10 0%, #6e4020 100%);
}

.d10 {
    background: linear-gradient(145deg, #0a1a28 0%, #1a4a6e 100%);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem 1.2rem;
}

.dest-country {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.dest-city {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.dest-pkg-count {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ─── WHAT WE DO ─── */
#about {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 550px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
    background: linear-gradient(135deg, #1a2a3a 0%, #2a4a6a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    background: linear-gradient(135deg, #3a2a1a 0%, #6a4a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 4px solid var(--bg);
}

.about-stat-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: #000;
    padding: 1.5rem 2rem;
    text-align: center;
    z-index: 2;
}

.about-stat-num {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    display: block;
}

.about-stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-content {}

.about-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 1.5rem;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.about-pillar {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
}

.about-pillar h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.about-pillar p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.astat {}

.astat-num {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    display: block;
}

.astat-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─── BLOGS ─── */
#blogs {
    background: var(--bg2);
}

.blogs-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.blog-featured {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.blog-featured-img {
    height: 460px;
    background: linear-gradient(145deg, #0a1a2a 0%, #1a3a5a 50%, #0a2a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    transition: transform 0.6s ease;
}

.blog-featured:hover .blog-featured-img {
    transform: scale(1.03);
}

.blog-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
    padding: 3rem 2.5rem;
}

.blog-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-card {
    display: flex;
    gap: 1.2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 1.2rem;
    cursor: pointer;
    transition: border-color 0.3s;
}

.blog-card:hover {
    border-color: var(--gold);
}

.blog-card-img {
    width: 90px;
    flex-shrink: 0;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.bc1 {
    background: linear-gradient(135deg, #1a2a0a 0%, #3a5a1a 100%);
}

.bc2 {
    background: linear-gradient(135deg, #2a0a1a 0%, #5a1a3a 100%);
}

.bc3 {
    background: linear-gradient(135deg, #0a1a2a 0%, #1a3a5a 100%);
}

.blog-card-body {
    flex: 1;
}

.blog-tag {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.blog-title {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.blog-meta {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.blog-feat-tag {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.blog-feat-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

.blog-feat-meta {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1em;
}

/* ─── REVIEWS ─── */
#reviews {
    background: var(--bg);
}

.reviews-inner {
    position: relative;
}

.reviews-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2.5rem;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.review-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.review-quote {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.review-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.15em;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #000;
    font-weight: 600;
}

.review-name {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.review-trip {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* ─── DIVIDER ─── */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 4rem;
    background: var(--bg3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.gold-divider span {
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.gold-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}



/* ─── NEWSLETTER STRIP ─── */
.newsletter-strip {
    background: var(--gold);
    padding: 3.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 0.4rem;
}

.newsletter-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(0, 0, 0, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}

.newsletter-input {
    padding: 0.8rem 1.5rem;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    color: #000;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    outline: none;
    width: 280px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}

.newsletter-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.newsletter-btn {
    background: #000;
    color: var(--gold);
    border: none;
    cursor: pointer;
    padding: 0.8rem 1.8rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background 0.3s;
}

.newsletter-btn:hover {
    background: #222;
}

/* ─── MISC ─── */
.text-gold {
    color: var(--gold);
}

.mb-half {
    margin-bottom: 0.5rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .cat-card:first-child {
        grid-row: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        height: 400px;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured-img {
        height: 300px;
    }

    .reviews-track {
        grid-template-columns: 1fr 1fr;
    }

    .dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hsb-fields {
        grid-template-columns: 1fr 1fr;
    }

    .hsb-search-btn {
        grid-column: 1 / -1;
        padding: 1rem;
        justify-content: center;
    }
}

@media (max-width: 768px) {


    section {
        padding: 5rem 1.5rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .reviews-track {
        grid-template-columns: 1fr;
    }



    .dest-grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    .newsletter-strip {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-input {
        flex: 1;
        width: auto;
    }



    .about-pillars {
        grid-template-columns: 1fr;
    }

    .about-stats {
        gap: 1.5rem;
    }

    .gold-divider {
        padding: 1.5rem;
    }

    .hsb-fields {
        grid-template-columns: 1fr;
    }

    .hsb-field {
        border-right: none;
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    }

    .hsb-search-btn {
        padding: 1.1rem;
        justify-content: center;
    }

    .hero-search-wrap {
        padding: 0 1rem;
    }

    .enq-grid {
        grid-template-columns: 1fr;
    }


}

/* ─── HERO SEARCH FORM ─── */
.hero-search-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
    animation: heroReveal 1.2s 0.8s ease both;
}

.hero-search-box {
    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-bottom: none;
    padding: 0;
    width: 100%;
    max-width: 1050px;
    overflow: hidden;
}

.hsb-tabs {
    display: flex;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.hsb-tab {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.9rem 1.8rem;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    border: none;
    background: transparent;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.3s;
}

.hsb-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.hsb-tab:hover {
    color: rgba(201, 168, 76, 0.8);
}

.hsb-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    align-items: stretch;
}

.hsb-field {
    padding: 1.2rem 1.4rem;
    border-right: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
}

.hsb-field:last-of-type {
    border-right: none;
}

.hsb-label {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

.hsb-input {
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    color: #fff;
    letter-spacing: 0.05em;
    width: 100%;
}

.hsb-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.hsb-input option {
    background: #111;
    color: #fff;
}

.hsb-search-btn {
    background: var(--gold);
    border: none;
    cursor: pointer;
    padding: 0 2.2rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.3s;
    white-space: nowrap;
}

.hsb-search-btn:hover {
    background: var(--gold-light);
}

.hsb-search-btn svg {
    width: 16px;
    height: 16px;
}

/* ─── ENQUIRY MODAL ─── */
.enq-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.enq-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.enq-modal {
    background: #0D0D0D;
    border: 1px solid rgba(201, 168, 76, 0.3);
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.enq-overlay.open .enq-modal {
    transform: translateY(0) scale(1);
}

[data-theme="light"] .enq-modal {
    background: #F8F5EE;
    border-color: rgba(139, 105, 20, 0.35);
}

.enq-modal-header {
    padding: 2.5rem 3rem 1.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    position: relative;
}

.enq-modal-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.enq-modal-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    line-height: 1.2;
}

.enq-modal-title em {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.1em;
}

.enq-close {
    position: absolute;
    top: 1.8rem;
    right: 2rem;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.enq-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.enq-modal-body {
    padding: 2rem 3rem 2.5rem;
}

.enq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.enq-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.enq-field.full {
    grid-column: 1 / -1;
}

.enq-field label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.enq-field input,
.enq-field select,
.enq-field textarea {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
}

.enq-field input:focus,
.enq-field select:focus,
.enq-field textarea:focus {
    border-color: var(--gold);
}

.enq-field textarea {
    resize: vertical;
    min-height: 90px;
}

.enq-field select option {
    background: #111;
}

[data-theme="light"] .enq-field select option {
    background: #F0EBE0;
}

.enq-field input::placeholder,
.enq-field textarea::placeholder {
    color: var(--text-muted);
}

.enq-submit {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.enq-note {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.enq-btn {
    background: var(--gold);
    color: #000;
    border: none;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.enq-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-101%);
    transition: transform 0.4s ease;
}

.enq-btn:hover::before {
    transform: translateX(0);
}

.enq-btn span {
    position: relative;
    z-index: 1;
}

/* Floating Enquiry Button */
.float-enq-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 800;
    background: var(--gold);
    color: #000;
    border: none;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.9rem 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
    transition: all 0.3s;
    animation: floatPulse 3s ease-in-out infinite;
}

.float-enq-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(201, 168, 76, 0.45);
}

@keyframes floatPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
    }

    50% {
        box-shadow: 0 8px 48px rgba(201, 168, 76, 0.55);
    }
}



/* ─── FADE IN ON SCROLL ─── */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ─── HAMBURGER ─── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    display: none;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu a {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu a:hover::after {
    transform: scaleX(1);
}

.mobile-menu-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    position: absolute;
    top: 2rem;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
    color: var(--gold);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }
}



/* ─── SLIDER ─── */
.slider-wrapper {
    position: relative;
}

.slider-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.slider-header-row .section-header {
    margin-bottom: 0;
    text-align: left;
}

.slider-header-row .section-header .section-eyebrow {
    justify-content: flex-start;
}

.slider-header-row .section-header .section-subtitle {
    margin: 0;
}

.slider-arrows {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.slider-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--gold);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.slider-arrow:disabled {
    opacity: 0.3;
}

.slider-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-track>* {
    scroll-snap-align: start;
}

/* Services slider */
.services-slider .slider-track .service-card {
    flex: 0 0 calc(24% - 1rem);
    min-width: 0;
}

@media (max-width: 1100px) {
    .services-slider .slider-track .service-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .services-slider .slider-track .service-card {
        flex: 0 0 calc(90%);
    }
}

/* Packages slider */
.packages-slider .slider-track .pkg-card {
    flex: 0 0 calc(25% - 1rem);
    min-width: 0;
}

@media (max-width: 1100px) {
    .packages-slider .slider-track .pkg-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .packages-slider .slider-track .pkg-card {
        flex: 0 0 90%;
    }
}

/* Destinations slider */
.dest-slider .slider-track .dest-card {
    flex: 0 0 calc(20% - 1.2rem);
    min-width: 0;
    min-height: 300px;
}

@media (max-width: 1100px) {
    .dest-slider .slider-track .dest-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .dest-slider .slider-track .dest-card {
        flex: 0 0 70%;
    }
}

/* ─── REAL IMAGES ─── */
.pkg-img-bg {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    display: block;
    font-size: 0;
}

.pkg-img-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pkg-card:hover .pkg-img-bg img {
    transform: scale(1.08);
}

.dest-card {
    position: relative;
}

.dest-card-bg {
    position: absolute;
    inset: 0;
    background: #111;
    overflow: hidden;
    display: block;
    font-size: 0;
}

.dest-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-card-bg img {
    transform: scale(1.1);
}

.cat-card-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #111;
}

.cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.cat-card:hover .cat-card-img img {
    transform: scale(1.07);
}

.about-img-main,
.about-img-accent {
    overflow: hidden;
}

.about-img-main img,
.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-img {
    overflow: hidden;
    position: relative;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-img {
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── EXTRA ANIMATIONS ─── */
@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.9;
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

/* Scroll progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    z-index: 9999;
    width: 0%;
}

/* Count-up animation for stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.astat-num {
    animation: none;
}

.reveal.visible .astat-num {
    animation: countUp 0.6s ease forwards;
}

/* Shimmer on CTA buttons */
.btn-primary,
.nav-cta,
.enq-btn {
    overflow: hidden;
}

.btn-primary::after,
.nav-cta::after,
.enq-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerBtn 4s infinite 1s;
}

@keyframes shimmerBtn {
    0% {
        left: -100%;
    }

    40% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* Tilt on cards via JS */
.pkg-card,
.cat-card,
.review-card {
    transform-style: preserve-3d;
}

/* Destination card fix */
.dest-card-bg {
    font-size: inherit;
}
