:root {
    --bg: #0f1012;
    --bg-soft: #17181b;
    --surface: rgba(255, 255, 255, 0.08);
    --surface-strong: rgba(255, 255, 255, 0.12);
    --text: #f7f7f3;
    --text-muted: #cfcfca;
    --text-dark: #141415;
    --gold: #c8a96a;
    --gold-soft: #dfc48d;
    --white: #ffffff;
    --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.16);
    --shadow-strong: 0 22px 55px rgba(0, 0, 0, 0.28);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --space-1: clamp(0.7rem, 0.6rem + 0.3vw, 0.9rem);
    --space-2: clamp(1rem, 0.9rem + 0.5vw, 1.4rem);
    --space-3: clamp(1.4rem, 1.2rem + 0.9vw, 2rem);
    --space-4: clamp(2rem, 1.6rem + 1.8vw, 3.4rem);
    --space-5: clamp(3rem, 2rem + 4vw, 6rem);
    --container: min(1180px, 92vw);
    --container-mobile: 98vw;
    --fs-xs: clamp(0.8rem, 0.76rem + 0.2vw, 0.92rem);
    --fs-sm: clamp(0.92rem, 0.84rem + 0.3vw, 1.02rem);
    --fs-base: clamp(1rem, 0.95rem + 0.35vw, 1.14rem);
    --fs-lg: clamp(1.12rem, 1rem + 0.6vw, 1.45rem);
    --fs-h3: clamp(1.35rem, 1.05rem + 1.2vw, 2rem);
    --fs-h2: clamp(2rem, 1.35rem + 2.8vw, 3.4rem);
    --fs-h1: clamp(2.4rem, 1.3rem + 5.1vw, 5.3rem);
    --nav-height: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    font-size: var(--fs-base);
    line-height: 1.65;
    color: var(--text);
    background: linear-gradient(160deg, #121316 0%, #0e0f11 45%, #131417 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    width: 100%;
    display: block;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    padding-block: var(--space-5);
}

.kicker {
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: var(--fs-xs);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

h1,
h2,
h3,
.brand,
.footer-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

h1 {
    font-size: var(--fs-h1);
    margin-bottom: var(--space-2);
}

h2 {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-3);
}

h3 {
    font-size: var(--fs-h3);
    margin-bottom: 0.65rem;
}

p {
    color: var(--text-muted);
}

.skip-link {
    position: fixed;
    left: 12px;
    top: -46px;
    z-index: 10000;
    background: var(--white);
    color: var(--text-dark);
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    transition: top 0.25s ease;
}

.skip-link:focus {
    top: 12px;
}



.loader-mark {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(200, 169, 106, 0.3));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.loader-ring {
    width: 68px;
    height: 68px;
    border: 3px solid rgba(200, 169, 106, 0.24);
    border-top-color: var(--gold);
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.loader-mark p {
    color: #e8decd;
    letter-spacing: 0.08em;
    font-size: var(--fs-sm);
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.navbar {
    width: min(1300px, 96vw);
    margin: 0.8rem auto;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.1rem 0.75rem 1.3rem;
    background: transparent;
    border-radius: 100vmax;
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(17, 18, 21, 0.84);
    backdrop-filter: blur(14px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

@keyframes zoomIntro {
    0% { transform: scale(0.8); opacity: 0; filter: blur(5px); }
    100% { transform: scale(1); opacity: 1; filter: blur(0); }
}

@keyframes floatGlow {
    0%, 100% { 
        transform: translateY(0);
        filter: drop-shadow(0 0 5px rgba(200, 169, 106, 0.2));
    }
    50% { 
        transform: translateY(-4px); 
        filter: drop-shadow(0 0 15px rgba(200, 169, 106, 0.5));
    }
}

.brand {
    display: flex;
    align-items: center;
    margin-left: 4.5rem; /* Moves the logo to the right */
    position: relative;
    padding: 4px;
    border-radius: 6px;
    overflow: hidden; /* For the shine effect */
}

.brand::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    z-index: 10;
}

.brand:hover::after {
    left: 150%;
}

.brand-logo {
    height: 85px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 76px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.brand:hover .brand-logo {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(0.6rem, 0.5rem + 1vw, 1.45rem);
    list-style: none;
}

.nav-link {
    position: relative;
    font-size: var(--fs-sm);
    color: #e6e7e3;
    padding: 0.45rem 0.4rem;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.4rem;
    right: 0.4rem;
    bottom: 2px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.24s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    color: #f7e8c8;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
}

.hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: clip;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-video,
.hero-fallback,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    object-fit: cover;
    opacity: 1;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.12); /* Lighter tint to highlight video */
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: clamp(4rem, 6vh, 6rem);
    max-width: 500px;
}

.hero-content .kicker {
    font-size: clamp(0.6rem, 0.6vw + 0.4rem, 0.75rem);
    opacity: 0;
    animation: slideInFromLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.2s;
}

.hero-content h1 {
    font-size: clamp(1.5rem, 1.2rem + 2vw, 2.8rem);
    opacity: 0;
    animation: slideInFromLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.4s;
}

.hero-content p {
    font-size: clamp(0.8rem, 0.75rem + 0.1vw, 0.9rem);
    max-width: 60ch;
    opacity: 0;
    animation: slideInFromLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.6s;
}

.hero-cta-group {
    margin-top: var(--space-3);
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    opacity: 0;
    animation: slideInFromLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.8s;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
    font-weight: 600;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    border: 1px solid transparent;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.25s ease, color 0.25s ease;
    min-height: 46px;
}

.btn:focus-visible,
input:focus-visible,
button:focus-visible,
article:focus-visible {
    outline: 2px solid var(--gold-soft);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(120deg, var(--gold), #dcbf84);
    color: #2b2114;
    box-shadow: 0 8px 24px rgba(200, 169, 106, 0.34);
}

.btn-secondary {
    color: #f3ead9;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.about {
    position: relative;
    overflow: hidden;
}

.about-video,
.about-overlay {
    position: absolute;
    inset: 0;
}

.about-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.about-overlay {
    background: rgba(10, 11, 14, 0.4); /* Lighter tint to make video more visible */
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: clamp(1.4rem, 2vw, 3.6rem);
}

.glass-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
}

    object-fit: contain;
}

.trust-grid article {
    background: rgba(13, 14, 17, 0.72);
    border-radius: var(--radius-sm);
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid h3 {
    color: #f2ddae;
    font-size: clamp(1.1rem, 0.95rem + 0.7vw, 1.5rem);
}

.category-grid,
.package-grid,
.feature-grid {
    display: grid;
    gap: clamp(1rem, 1.2vw, 1.6rem);
}

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

.category-card,
.feature-card,
.package-card,
.testimonial-card {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
    box-shadow: var(--shadow-soft);
}

.category-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.category-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.44s ease;
}

.category-card h3,
.category-card p {
    padding-inline: 1rem;
}

.category-card h3 {
    margin-top: 1rem;
}

.category-card p {
    margin-bottom: 1.1rem;
}

.category-card:hover,
.category-card:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(200, 169, 106, 0.54);
    box-shadow: var(--shadow-strong);
}

.category-card:hover img,
.category-card:focus-visible img {
    transform: scale(1.06);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.15, 0.83, 0.66, 1);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(200, 169, 106, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(200, 169, 106, 0.05);
}

.service-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(200, 169, 106, 0.08);
    border: 1px solid rgba(200, 169, 106, 0.2);
    color: var(--gold);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: #1a150f;
    border-color: var(--gold);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(200, 169, 106, 0.3);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #f8efdc;
    margin: 0;
    letter-spacing: 0.02em;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

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

.package-card {
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.package-media {
    position: relative;
    overflow: hidden;
}

.package-media::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.package-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.45s ease;
    will-change: transform;
}

.package-content {
    padding: 0.8rem 1rem 1rem;
}

.package-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.package-content .meta {
    color: #e1d5bf;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.price {
    color: #f7e7c4;
    margin: 0.35rem 0 0.55rem;
    font-weight: 700;
}

.package-content ul {
    list-style: none;
    display: grid;
    gap: 0.4rem;
}

.package-content li {
    color: var(--text-muted);
    position: relative;
    padding-left: 1.1rem;
    font-size: var(--fs-sm);
}

.package-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.package-cta {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.package-cta .btn {
    flex: 1 1 auto;
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
    min-height: 36px;
    letter-spacing: 0.02em;
}

.package-card:hover,
.package-card:focus-within {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
    border-color: rgba(200, 169, 106, 0.5);
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.2rem;
    perspective: 2000px; /* Enhanced 3D depth */
}

.feature-card {
    padding: 2.5rem 2.2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(24px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform-style: preserve-3d;
    will-change: transform;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200, 169, 106, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-30deg);
    transition: all 0.8s ease;
    z-index: 1;
}

.feature-card .icon {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 1.8rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a150f;
    background: linear-gradient(135deg, #f7e7c4, var(--gold));
    box-shadow: 0 12px 30px rgba(200, 169, 106, 0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    transform: translateZ(30px); /* 3D pop out */
}

.feature-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.8rem;
    color: #f8efdc;
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transform: translateZ(10px);
}

.feature-card:hover {
    transform: translateY(-15px) rotateX(4deg) rotateY(-2deg);
    border-color: rgba(200, 169, 106, 0.6);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.7), 
        0 0 50px rgba(200, 169, 106, 0.1);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

.feature-card:hover,
.feature-card:focus-visible {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(200, 169, 106, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(200, 169, 106, 0.15);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.feature-card:hover::after {
    left: 150%;
}

.feature-card:hover .icon,
.feature-card:focus-visible .icon {
    transform: scale(1.18) translateY(-4px) rotate(12deg);
    box-shadow: 0 15px 35px rgba(200, 169, 106, 0.5);
    background: linear-gradient(135deg, #fff, var(--gold));
}


.cta-band {
    padding-block: clamp(2.5rem, 2rem + 3vw, 4.2rem);
    background: linear-gradient(120deg, rgba(19, 20, 24, 0.95), rgba(200, 169, 106, 0.2));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.cta-wrap h2 {
    margin: 0;
}

/* Footer Redesign - SUPREME LUXURY ELEVATED */
.footer {
    padding-top: clamp(6rem, 12vw, 14rem);
    padding-bottom: 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Background Spotlight Effect */
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200, 169, 106, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr;
    gap: clamp(2.5rem, 6vw, 7rem);
    padding-bottom: 6rem;
}

.footer-main, .footer-subscribe {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3.5rem;
    border-radius: 48px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.7s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.footer-main:hover, .footer-subscribe:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(200, 169, 106, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 
        0 40px 90px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(200, 169, 106, 0.1);
}

.footer-brand .footer-logo {
    height: 95px;
    margin-bottom: 2.5rem;
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(200, 169, 106, 0.3));
    animation: footerLogoGlow 5s ease-in-out infinite alternate;
}

@keyframes footerLogoGlow {
    from { filter: brightness(1.1) drop-shadow(0 0 10px rgba(200, 169, 106, 0.2)); }
    to { filter: brightness(1.4) drop-shadow(0 0 35px rgba(200, 169, 106, 0.6)); }
}

.brand-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    max-width: 38ch;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.footer h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    letter-spacing: 0.08em;
    margin-bottom: 3rem;
    color: var(--white);
    position: relative;
    background: linear-gradient(90deg, #fff 0%, var(--gold) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: footerTextShimmer 8s linear infinite;
}

@keyframes footerTextShimmer {
    to { background-position: 200% center; }
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 50px;
    height: 1.5px;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.contact-item svg {
    color: var(--gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-item:hover {
    color: var(--gold);
    transform: translateX(10px);
}

.contact-item:hover svg {
    transform: scale(1.2) rotate(-10deg);
    filter: drop-shadow(0 0 8px var(--gold));
}

.footer-nav {
    display: flex;
    gap: clamp(3rem, 5vw, 6rem);
}

.nav-col h3 {
    animation-delay: 0.5s;
}

.footer-links li {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    transition: all 0.4s ease;
    display: inline-block;
    letter-spacing: 0.02em;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(12px);
    text-shadow: 0 0 20px rgba(200, 169, 106, 0.4);
}

.social-icons {
    display: flex;
    gap: 2rem;
}

.social-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: var(--gold);
    color: #1a150f;
    border-color: var(--gold);
    transform: translateY(-8px) rotate(8deg);
    box-shadow: 0 15px 30px rgba(200, 169, 106, 0.4);
}

.footer-subscribe h3 {
    animation-delay: 1s;
}

.footer-subscribe p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 8px;
    transition: all 0.5s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.newsletter-input-group:focus-within {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 40px rgba(200, 169, 106, 0.2);
    transform: scale(1.02);
}

.newsletter-input-group input {
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    color: var(--white);
    flex: 1;
    outline: none;
    font-size: 1.1rem;
}

.newsletter-submit {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: #1a150f;
    border: none;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.newsletter-submit:hover {
    transform: rotate(20deg) scale(1.15);
    filter: brightness(1.2);
    box-shadow: 0 0 20px var(--gold);
}

.footer-bottom {
    margin-top: 6rem;
    padding-block: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.5);
}

.bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    letter-spacing: 0.03em;
}

.bottom-links {
    display: flex;
    gap: 3.5rem;
}

.bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.bottom-links a:hover {
    color: var(--gold);
    text-decoration: underline;
}

@media (max-width: 1400px) {
    .footer-grid {
        gap: 3rem;
    }
    
    .footer-main, .footer-subscribe {
        padding: 2.5rem;
    }
}

/* Quick Inquiry Form - PREMIUM LUXURY */
.inquiry-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.inquiry-form .form-group {
    position: relative;
}

.inquiry-form .form-group.full-width {
    grid-column: span 2;
}

.inquiry-form input, 
.inquiry-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.15, 0.83, 0.66, 1);
    outline: none;
}

.inquiry-form textarea {
    min-height: 120px;
    resize: none;
}

.inquiry-form input:focus, 
.inquiry-form textarea:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(200, 169, 106, 0.15);
    transform: translateY(-2px);
}

.inquiry-form input::placeholder, 
.inquiry-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.btn-luxury-gradient {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, #f7e7c4 50%, var(--gold) 100%);
    background-size: 200% auto;
    color: #1a150f;
    border: none;
    border-radius: 100px;
    padding: 1.2rem;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(200, 169, 106, 0.2);
}

.btn-luxury-gradient:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(200, 169, 106, 0.4);
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main, .footer-subscribe {
        max-width: 100%;
    }

    .inquiry-form {
        grid-template-columns: 1fr;
    }
    .inquiry-form .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 4rem;
    }
    
    .bottom-wrap {
        flex-direction: column;
        text-align: center;
    }
    
    .bottom-links {
        gap: 2rem;
        justify-content: center;
    }
}

.section-observe {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-observe.is-visible,
.reveal-up.is-visible,
.reveal-slide-left.is-visible,
.reveal-slide-right.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-up,
.reveal-slide-left,
.reveal-slide-right {
    opacity: 0;
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-up {
    transform: translateY(24px);
}

.reveal-slide-left {
    transform: translateX(-30px);
}

.reveal-slide-right {
    transform: translateX(30px);
}

/* Staggered Reveal for Feature Cards */
.feature-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-grid .feature-card:nth-child(4) { transition-delay: 0.4s; }

/* New Sections: Process, FAQ, Gallery */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.8rem;
}

.process-step {
    padding: 2.5rem 2rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.step-number {
    position: absolute;
    top: -10px;
    right: 5px;
    font-family: "Inter", sans-serif;
    font-size: 7rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    line-height: 1;
    transition: all 0.5s ease;
    z-index: -1;
    pointer-events: none;
    margin: 0;
}

.process-step:hover .step-number {
    -webkit-text-stroke: 1px rgba(200, 169, 106, 0.3);
    color: rgba(200, 169, 106, 0.05);
    transform: scale(1.08) rotate(-5deg);
}

.process-step h3 {
    color: #f7e7c4;
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.process-step:hover,
.process-step:focus-visible {
    transform: translateY(-10px);
    border-color: rgba(200, 169, 106, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(200, 169, 106, 0.05);
    background: linear-gradient(160deg, rgba(200, 169, 106, 0.08), rgba(255, 255, 255, 0.02));
}


/* Gallery Section - STYLISH & IMMERSIVE */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.8rem;
    perspective: 2000px;
}

.gallery-grid video {
    border-radius: 32px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.15, 0.83, 0.66, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    filter: brightness(0.8) grayscale(0.2);
}

.gallery-grid video:hover {
    transform: scale(1.02) translateY(-10px) rotateZ(0.5deg);
    z-index: 10;
    border-color: var(--gold);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(200, 169, 106, 0.2);
    filter: brightness(1) grayscale(0);
}

/* Bento-style span logic for 5 videos */
.gallery-grid video:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-grid video:nth-child(5) {
    grid-column: span 2;
}

@media (max-width: 1080px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
        gap: 1.2rem;
    }
    
    .gallery-grid video:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-grid video:nth-child(5) {
        grid-column: span 2;
    }
}

@media (max-width: 680px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1rem;
    }
    
    .gallery-grid video:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 16 / 9;
        border-radius: 20px;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1080px) {

    .category-grid,
    .feature-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-col,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 860px) {
    .navbar {
        border-radius: 1rem;
        padding: 0.7rem 0.9rem;
        --nav-height: 76px;
    }

    .brand {
        margin-left: 0;
    }

    .brand-logo {
        height: 70px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: calc(var(--nav-height) + 0.6rem);
        right: 2vw;
        width: min(320px, 90vw);
        display: grid;
        gap: 0.2rem;
        padding: 0.8rem;
        border-radius: 16px;
        background: rgba(16, 17, 19, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transform: scale(0.94);
        transform-origin: top right;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .nav-menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
    }

    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        min-height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-video-wrapper {
        position: absolute;
        inset: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
    }

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

    .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: rgba(0, 0, 0, 0.45);
    }

    .hero-content {
        position: relative;
        z-index: 3;
        padding-top: 5.5rem;
        max-width: 92%;
        margin-inline: auto;
        text-align: center;
    }

    .hero-content p {
        display: none;
    }

    .hero-content .kicker {
        font-size: 0.72rem;
        margin-bottom: 0.4rem;
        letter-spacing: 0.15em;
    }

    .hero-content h1 {
        font-size: 2.1rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-cta-group {
        display: none;
    }

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

    .newsletter-row {
        flex-direction: column;
    }
}

@media (max-width: 560px) {

    .container {
        width: var(--container-mobile);
    }

    .section {
        padding-block: 2rem;
    }

    .category-grid,
    .feature-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .package-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* --- Mobile package card optimizations --- */
    .package-content {
        padding: 0.6rem 0.8rem 0.8rem;
    }
    .package-content h3 {
        font-size: 1rem;
    }
    .package-cta {
        flex-direction: column;
        gap: 0.4rem;
    }
    .package-cta .btn {
        flex: 1 1 100%;
        width: 100%;
        padding: 0.5rem 0.4rem;
        font-size: 0.7rem;
    }

    .domestic-package-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    .domestic-package-content {
        padding: 0.8rem 1rem 1rem;
    }
    .domestic-package-content h3 {
        font-size: 1.2rem;
    }
    .domestic-package-cta {
        flex-direction: column;
        gap: 0.5rem;
    }
    .domestic-package-cta .btn {
        width: 100%;
        padding: 0.6rem 0.8rem;
        font-size: 9px;
    }
    .domestic-tag {
        font-size: 7px;
        padding: 4px 10px;
        top: 0.7rem;
        left: 0.7rem;
    }

    .services-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    .service-card {
        padding: 1.2rem 1rem;
    }

    .gallery-grid {
        gap: 0.8rem;
    }

    .offices-grid {
        margin-top: 1.5rem;
    }

    .video-testimonials-grid {
        margin-top: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .section-observe,
    .reveal-up,
    .reveal-slide-left,
    .reveal-slide-right {
        opacity: 1 !important;
        transform: none !important;
    }
}
/* Video Testimonials Styles - ENHANCED & STYLISH */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 2.2rem);
    margin-top: 5rem;
    perspective: 2000px; /* Enhanced 3D perspective */
}

.video-testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px; /* Smoother corners */
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.15, 0.83, 0.66, 1);
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200, 169, 106, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 5;
    pointer-events: none;
}

.video-testimonial-card:hover::before {
    opacity: 1;
}

.video-testimonial-card:hover {
    transform: translateY(-20px) rotateX(5deg) rotateY(-5deg);
    border-color: rgba(200, 169, 106, 0.6);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(200, 169, 106, 0.2);
}

.video-wrapper {
    position: relative;
    aspect-ratio: 9/15;
    background: #000;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.15, 0.83, 0.66, 1);
    filter: brightness(0.85) contrast(1.1);
}

.video-testimonial-card:hover video {
    transform: scale(1.12);
    filter: brightness(1);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: grid;
    place-items: center;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 10;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    display: grid;
    place-items: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.play-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid var(--white);
    margin-left: 6px;
    transition: all 0.4s ease;
}

.play-overlay:hover .play-icon {
    background: var(--gold);
    transform: scale(1.1) translateZ(50px);
    border-color: transparent;
}

.play-overlay:hover .play-icon::before {
    opacity: 1;
    transform: scale(1.1);
    animation: ripple 2s infinite;
}

.play-overlay:hover .play-icon::after {
    border-left-color: #1a150f;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.video-testimonial-card.playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-info {
    padding: 2.5rem 2rem;
    text-align: left;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.6s ease;
}

.video-testimonial-card:hover .video-info {
    transform: translateY(0);
}

.video-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--gold);
    color: #1a150f;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease 0.1s;
}

.video-testimonial-card:hover .video-tag {
    opacity: 1;
    transform: translateX(0);
}

.video-info h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.2rem;
    font-family: "Cormorant Garamond", serif;
    transform: translateZ(30px);
}

.video-info p {
    font-size: 0.9rem;
    color: var(--gold-soft);
    letter-spacing: 0.05em;
    transform: translateZ(20px);
}

@media (max-width: 1080px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 680px) {
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-inline: auto;
    }
}

/* --- PREMIUM MODAL VIEWER - ELEVATED LUXURY --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 4, 6, 0.94);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-container {
    position: relative;
    width: 94%;
    max-width: 1500px;
    height: auto;
    max-height: 93vh;
    background: linear-gradient(160deg, rgba(20, 23, 28, 0.98), rgba(10, 12, 16, 1));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 28px;
    padding: 2.8rem 3.2rem;
    box-shadow: 
        0 50px 120px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(200, 169, 106, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: translateY(40px) scale(0.95);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

/* Animated gold border shimmer */
.modal-container::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15), 
        rgba(255, 255, 255, 0.05), 
        rgba(212, 175, 55, 0.25), 
        rgba(255, 255, 255, 0.05), 
        rgba(212, 175, 55, 0.15));
    background-size: 300% 300%;
    z-index: -1;
    animation: modalBorderShimmer 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes modalBorderShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.modal-header {
    flex-shrink: 0;
    margin-bottom: 1.8rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.2rem;
}

.modal-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff 0%, var(--gold) 30%, var(--gold-soft) 50%, var(--gold) 70%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: footerTextShimmer 6s linear infinite;
    margin: 0;
    padding-bottom: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 15px var(--gold);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    font-size: 1.6rem;
    line-height: 1;
}

.modal-close:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 0 25px rgba(200, 169, 106, 0.4);
}

.modal-body {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    min-height: 0;
}

/* --- Video Container --- */
.modal-video-container {
    flex: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.modal-video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 2;
}

.modal-video-container video {
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* --- Images Container / Slider --- */
.modal-images-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-height: 70vh;
}

.modal-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
}

.modal-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.96);
}

.modal-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: scale(1);
}

.slide-fg-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    background: rgba(0,0,0,0.2);
}

/* --- Split Media Layout --- */
.modal-split-media-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    align-items: stretch;
    justify-content: center;
    height: 100%;
}

.modal-media-left,
.modal-media-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-height: 70vh;
    width: 50%;
}

.modal-split-main-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    background: rgba(0,0,0,0.2);
}

@media (max-width: 960px) {
    .modal-split-media-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .modal-media-left,
    .modal-media-right {
        width: 100%;
        max-height: 50vh;
    }
}

/* --- Slider Navigation Buttons --- */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 12, 15, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 8;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.modal-slider-wrapper:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.slider-prev {
    left: 12px;
}

.slider-next {
    right: 12px;
}

/* --- Slider Dots --- */
.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 8;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.4);
    box-shadow: 0 0 12px var(--gold);
}

/* --- Responsive --- */
@media (max-width: 960px) {
    .modal-container {
        padding: 1.5rem 1.2rem;
        max-height: 96vh;
        overflow-y: auto;
        border-radius: 20px;
    }
    .modal-container::before {
        border-radius: 20px;
    }
    .modal-body {
        flex-direction: column;
        gap: 1.5rem;
    }
    .modal-video-container {
        flex: none;
        min-height: 45vh;
    }
    .modal-video-container video {
        max-height: 50vh;
        object-fit: cover;
    }
    .modal-images-container {
        max-height: none;
        height: auto;
    }
    .slide-fg-img {
        max-height: none;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .modal-media-left,
    .modal-media-right {
        max-height: none;
        height: auto;
        width: 100%;
    }
    .modal-split-main-img {
        max-height: none;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .modal-close {
        top: 0.8rem;
        right: 0.8rem;
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }
    .modal-header h2 {
        font-size: clamp(1.4rem, 4vw, 2rem);
    }
    .slider-prev { left: 8px; }
    .slider-next { right: 8px; }
    .slider-dots { bottom: 10px; padding: 4px 10px; }
    .slider-btn { opacity: 1; width: 38px; height: 38px; }
}

/* Extra small mobile - modal video fills more space */
@media (max-width: 560px) {
    .modal-container {
        padding: 1rem 0.8rem;
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        border: none;
    }
    .modal-container::before {
        border-radius: 0;
    }
    .modal-video-container {
        min-height: 50vh;
        border-radius: 12px;
    }
    .modal-video-container video {
        max-height: 55vh;
        object-fit: cover;
        border-radius: 12px;
    }
    .modal-header {
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
    }
    .modal-header h2 {
        font-size: clamp(1.1rem, 5vw, 1.4rem);
        letter-spacing: 0.06em;
    }
    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }
    .modal-body {
        gap: 0.8rem;
    }
    .slider-btn {
        width: 32px;
        height: 32px;
    }
    .slider-dots {
        bottom: 8px;
        padding: 4px 8px;
        gap: 6px;
    }
    .slider-dot {
        width: 6px;
        height: 6px;
    }
}
/* --- LUXURY BENTO GALLERY OVERRIDE --- */
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: 260px !important;
    gap: 1.5rem !important;
    perspective: 2000px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: #0a0b0e;
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.6s ease;
    filter: brightness(0.7) contrast(1.1) !important;
    border: none !important;
    box-shadow: none !important;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.gallery-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--gold, #d4af37);
}

.gallery-icon svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02) rotateZ(0.5deg);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 20px rgba(212, 175, 55, 0.1);
    z-index: 10;
}

.gallery-item:hover video {
    transform: scale(1.05);
    filter: brightness(1) contrast(1) !important;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1) translateY(0);
}

/* Bento Grid Spans for 6 items in 3 columns */
.gallery-item:nth-child(1) { grid-column: span 2 !important; grid-row: span 2 !important; }
.gallery-item:nth-child(2) { grid-column: span 1 !important; grid-row: span 1 !important; }
.gallery-item:nth-child(3) { grid-column: span 1 !important; grid-row: span 1 !important; }
.gallery-item:nth-child(4) { grid-column: span 1 !important; grid-row: span 1 !important; }
.gallery-item:nth-child(5) { grid-column: span 1 !important; grid-row: span 1 !important; }
.gallery-item:nth-child(6) { grid-column: span 1 !important; grid-row: span 1 !important; }

@media (max-width: 1080px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 220px !important;
    }
    .gallery-item:nth-child(1) { grid-column: span 2 !important; grid-row: span 2 !important; }
    .gallery-item:nth-child(2) { grid-column: span 1 !important; grid-row: span 1 !important; }
    .gallery-item:nth-child(3) { grid-column: span 1 !important; grid-row: span 1 !important; }
    .gallery-item:nth-child(4) { grid-column: span 1 !important; grid-row: span 1 !important; }
    .gallery-item:nth-child(5) { grid-column: span 1 !important; grid-row: span 1 !important; }
    .gallery-item:nth-child(6) { grid-column: span 2 !important; grid-row: span 1 !important; }
}

@media (max-width: 680px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
    }
    .gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 16 / 9;
    }
}

/* --- ABOUT SECTION CERTIFICATE RESIZE & HIGHLIGHT --- */
.about-panel {
    position: relative;
    max-width: 390px !important;
    width: 100%;
    margin-inline: auto !important;
    padding: 1.2rem 0.6rem 0.6rem 0.6rem !important;
    border: 1px solid rgba(200, 169, 106, 0.4) !important;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5), 
        0 0 25px rgba(200, 169, 106, 0.15) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.about-panel:hover {
    transform: translateY(-8px) scale(1.03) !important;
    border-color: rgba(200, 169, 106, 0.8) !important;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6), 
        0 0 35px rgba(200, 169, 106, 0.3) !important;
}

@media (min-width: 1081px) {
    .about-panel {
        margin-right: 0 !important;
        margin-left: auto !important;
    }
}

.about-panel img {
    max-height: 480px !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
    border-radius: var(--radius-sm);
}

/* Floating Gold Govt Approved Badge */
.govt-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c8a96a, #a88544);
    color: #0b0c0e !important;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(200, 169, 106, 0.4);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- DOMESTIC LUXURY TOUR PACKAGES SECTION --- */
.domestic-packages {
    background: radial-gradient(circle at 50% 0%, #0d0f14 0%, #040507 100%);
    position: relative;
    overflow: hidden;
    padding-block: clamp(5rem, 8vw, 10rem);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Atmospheric glowing accents behind grid */
.domestic-packages::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 106, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.domestic-packages::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(98, 142, 219, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.domestic-packages .container {
    position: relative;
    z-index: 1;
}

/* Grid Layout */
.domestic-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.2rem, 1.8vw, 2.5rem);
    margin-top: 3.5rem;
}

/* Luxury Glassmorphism Cards */
.domestic-package-card {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

/* Media/Image Area */
.domestic-package-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px 24px 0 0;
}

.domestic-package-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dynamic overlay for luxury aesthetics & text readability */
.card-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 2;
    pointer-events: none;
    display: none;
}

/* Floating Luxury Badges */
.domestic-tag {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    background: linear-gradient(135deg, rgba(200, 169, 106, 0.9), rgba(168, 133, 68, 0.9));
    color: #0b0c0e !important;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 3;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Content Area */
.domestic-package-content {
    padding: 1.5rem 1.6rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d; /* Enable 3D space */
}

.domestic-package-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    color: #fcf9f2;
    margin-bottom: 0.4rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.domestic-package-content .meta {
    font-family: 'Inter', sans-serif;
    color: #cca463;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.domestic-package-content .meta::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #cca463;
    box-shadow: 0 0 8px #cca463;
}

/* Button CTA Group */
.domestic-package-cta {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Buttons Styling override & Premium customization */
.btn-gold-gradient {
    background: linear-gradient(135deg, #c8a96a 0%, #a88544 100%);
    color: #0b0c0e !important;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(200, 169, 106, 0.2);
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.05em;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold-gradient:hover {
    background: linear-gradient(135deg, #e4cca1 0%, #c8a96a 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(200, 169, 106, 0.38), 0 0 15px rgba(200, 169, 106, 0.2);
}

.btn-glass-border {
    background: rgba(255, 255, 255, 0.03);
    color: #f3ead9 !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.05em;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glass-border:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(200, 169, 106, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 12px rgba(200, 169, 106, 0.12);
}

/* Card Hover Interactions & Parallax Depth Lift */
.domestic-package-card:hover {
    border-color: rgba(200, 169, 106, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(200, 169, 106, 0.15);
}

/* Disable scroll reveal animations for package cards to keep interactions clean */
.package-card.reveal-up,
.domestic-package-card.reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Responsive Breakpoints for Grid */
@media (max-width: 1100px) {
    .domestic-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .domestic-packages {
        padding-block: 2rem;
    }
    .domestic-package-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.2rem;
    }
    .domestic-package-card {
        animation: none; /* Disable floating on mobile to conserve performance */
    }
}

/* --- DYNAMIC CATEGORY FILTERING TRANSITION --- */
.section-hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(30px);
}

.packages, .domestic-packages {
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.packages:not(.section-hidden), .domestic-packages:not(.section-hidden) {
    animation: fadeInUpSection 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeInUpSection {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category cards active glow and pointer styling */
.category-card {
    cursor: pointer;
}

.category-card.active-category {
    border-color: var(--gold) !important;
    box-shadow: 0 0 25px rgba(200, 169, 106, 0.4), var(--shadow-strong) !important;
    transform: translateY(-8px) scale(1.02);
}

/* --- Bento Details Panel (Modal Details Side) --- */
.modal-details-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    background: rgba(10, 11, 14, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
    max-height: 75vh;
    overflow-y: auto;
    gap: 1.5rem;
}

/* Custom Scrollbar for Modal Details Side */
.modal-details-side::-webkit-scrollbar {
    width: 6px;
}
.modal-details-side::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.modal-details-side::-webkit-scrollbar-thumb {
    background: rgba(200, 169, 106, 0.5);
    border-radius: 10px;
}

.modal-duration-badge {
    align-self: flex-start;
    background: rgba(200, 169, 106, 0.1);
    border: 1px solid rgba(200, 169, 106, 0.35);
    color: #cca463;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(200, 169, 106, 0.15);
}

.modal-price-block {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price-label {
    font-family: 'Inter', sans-serif;
    color: #8e929a;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-family: 'Cormorant Garamond', serif;
    color: #f3ead9;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(200, 169, 106, 0.25);
}

.modal-itinerary-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-itinerary-section h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.25rem;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Timeline Layout */
.itinerary-timeline {
    position: relative;
    padding-left: 1.5rem;
    margin-left: 0.5rem;
    border-left: 1px dashed rgba(200, 169, 106, 0.25);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: calc(-1.5rem - 4.5px);
    top: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #c8a96a;
    box-shadow: 0 0 8px #c8a96a;
}

.timeline-content h4 {
    font-family: 'Inter', sans-serif;
    color: #f3ead9;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 0.4rem 0;
    letter-spacing: 0.01em;
}

.timeline-content p {
    font-family: 'Inter', sans-serif;
    color: #a0a5b0;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

.modal-cta-group {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.modal-cta-group .btn {
    flex: 1;
    height: 40px;
}

@media (max-width: 960px) {
    .modal-details-side {
        max-height: unset;
        overflow-y: visible;
    }
}

/* --- OUR OFFICES CUSTOM GRID & CARDS STYLING --- */
.offices-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.2rem, 1.8vw, 2.5rem);
    margin-top: 3.5rem;
}

.offices-grid .office-card {
    flex: 1 1 calc(33.333% - clamp(1.2rem, 1.8vw, 2.5rem));
    max-width: calc(33.333% - 0.7rem);
    min-width: 320px;
    height: auto;
    display: flex;
    flex-direction: column;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1), 
                box-shadow 0.6s cubic-bezier(0.25, 1, 0.3, 1), 
                border-color 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

.offices-grid .office-card:hover {
    border-color: var(--gold);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), 
                0 0 30px rgba(200, 169, 106, 0.18);
}

.offices-grid .office-card .contact-item a:hover {
    color: var(--gold) !important;
    text-shadow: 0 0 10px rgba(200, 169, 106, 0.3);
}

/* Tablet display (2 columns) */
@media (max-width: 1100px) {
    .offices-grid .office-card {
        flex: 1 1 calc(50% - clamp(1.2rem, 1.8vw, 2.5rem));
        max-width: calc(50% - 0.5rem);
    }
}

/* Mobile display (1 column) */
@media (max-width: 768px) {
    .offices-grid .office-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* --- ABOUT LOGO & CERTIFICATE HIGHLIGHT HOVER EFFECTS --- */
.about-logo-wrapper:hover,
.certificate-wrapper:hover {
    border-color: rgba(200, 169, 106, 0.85) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 
                0 0 25px rgba(200, 169, 106, 0.3) !important;
    transform: translateY(-4px) scale(1.02);
}

/* --- Travel Terms & Conditions Section Styling --- */
.terms-container {
    margin-top: 3.5rem;
    padding: 2.2rem 2rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-strong);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.terms-section-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.8px;
}

.terms-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.terms-item {
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    background: rgba(10, 11, 14, 0.35);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.terms-item:hover {
    border-color: rgba(200, 169, 106, 0.35);
    background: rgba(200, 169, 106, 0.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.terms-item[open] {
    border-color: rgba(200, 169, 106, 0.45);
    background: rgba(10, 11, 14, 0.55);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), inset 0 0 10px rgba(200, 169, 106, 0.03);
}

.terms-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.4rem;
    cursor: pointer;
    list-style: none; /* Hide standard marker */
    user-select: none;
    transition: color 0.3s ease;
}

/* Hide standard marker in Safari */
.terms-summary::-webkit-details-marker {
    display: none;
}

.terms-item-title {
    font-family: "Inter", Arial, sans-serif;
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.terms-item:hover .terms-item-title {
    color: var(--gold-soft);
}

.terms-item[open] .terms-item-title {
    color: var(--gold);
}

.terms-icon {
    position: relative;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-icon::before,
.terms-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-muted);
    transition: all 0.3s ease;
}

/* Horizontal line */
.terms-icon::before {
    width: 10px;
    height: 2px;
}

/* Vertical line */
.terms-icon::after {
    width: 2px;
    height: 10px;
}

.terms-item:hover .terms-icon::before,
.terms-item:hover .terms-icon::after {
    background-color: var(--gold);
}

/* Rotate and hide vertical line to make a minus sign when open */
.terms-item[open] .terms-icon::before {
    background-color: var(--gold);
    transform: rotate(180deg);
}

.terms-item[open] .terms-icon::after {
    background-color: var(--gold);
    transform: rotate(90deg);
    opacity: 0;
}

.terms-content {
    padding: 0 1.4rem 1.2rem 1.4rem;
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 0.9rem;
    animation: slideDown 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-content p {
    margin-bottom: 0.8rem;
}

.terms-content p:last-child {
    margin-bottom: 0;
}

.terms-content strong {
    color: var(--gold-soft);
    font-weight: 500;
}

.terms-bullets {
    margin: 0.8rem 0 0.8rem 1.2rem;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.terms-bullets li {
    position: relative;
    padding-left: 1.2rem;
}

.terms-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.1rem;
    line-height: 1;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .terms-container {
        margin-top: 1.5rem;
        padding: 1rem 0.9rem;
    }
    .terms-summary {
        padding: 0.8rem 1.1rem;
    }
    .terms-content {
        padding: 0 1.1rem 1.1rem 1.1rem;
        padding-top: 0.8rem;
    }
}

/* --- KESAVI VOICE ASSISTANT — VOICE-FIRST MIC --- */
.kesavi-voice {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

/* ─── Status Indicator ─── */
.kv-status {
    display: none;
    align-items: center;
    gap: 0.6rem;
    background: rgba(10, 12, 16, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(200, 169, 106, 0.2);
    border-radius: 40px;
    padding: 0.5rem 1.2rem 0.5rem 0.8rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    animation: kvFadeIn 0.3s ease;
}

.kv-status.kv-active {
    display: flex;
}

.kv-status-dots {
    display: flex;
    align-items: center;
    gap: 3px;
}

.kv-status-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: kvDotPulse 1.4s ease-in-out infinite;
}

.kv-status-dots span:nth-child(2) { animation-delay: 0.2s; }
.kv-status-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes kvDotPulse {
    0%, 60%, 100% { transform: scale(1); opacity: 0.4; }
    30% { transform: scale(1.3); opacity: 1; }
}

.kv-status-text {
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.78rem;
    color: var(--gold-soft);
    font-weight: 500;
    white-space: nowrap;
}

.kv-status-close {
    background: none;
    border: none;
    color: var(--gold-soft);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    margin-left: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.7;
    font-weight: bold;
}

.kv-status-close:hover {
    color: #ff4d4d;
    transform: scale(1.2);
    opacity: 1;
}

/* ─── Mic Button ─── */
.kv-mic {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #a88544 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(200, 169, 106, 0.35), 0 0 20px rgba(200, 169, 106, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a150f;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.kv-mic:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(200, 169, 106, 0.5), 0 0 30px rgba(200, 169, 106, 0.25);
}

.kv-mic:active {
    transform: scale(0.95);
}

/* Mic icon */
.kv-mic-icon {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Pulsing ring */
.kv-mic-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(200, 169, 106, 0.25);
    animation: kvPulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes kvPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.18); opacity: 0; }
}

/* Active state ring */
.kv-mic-ring {
    display: none;
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    pointer-events: none;
}

/* Label below */
.kv-mic-label {
    position: absolute;
    bottom: -1.8rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.7rem;
    color: var(--gold-soft);
    white-space: nowrap;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* ─── Active State (listening) ─── */
.kv-mic.kv-active {
    background: linear-gradient(135deg, #c8a96a 0%, #8a6d3b 100%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 40px rgba(200, 169, 106, 0.5);
}

.kv-mic.kv-listening {
    animation: kvBreathing 1.8s ease-in-out infinite;
}

.kv-mic.kv-listening .kv-mic-ring {
    display: block;
    animation: kvRingPulse 1.5s ease-in-out infinite;
}

.kv-mic.kv-listening .kv-mic-icon {
    color: #fff;
}

@keyframes kvBreathing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes kvRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.25); opacity: 0; }
}

/* ─── Thinking State ─── */
.kv-mic.kv-thinking {
    background: linear-gradient(135deg, #b8955a 0%, #7a5f30 100%);
}

.kv-mic.kv-thinking .kv-mic-icon {
    animation: kvSpin 1s linear infinite;
}

@keyframes kvSpin {
    to { transform: rotate(360deg) scale(1.1); }
}

/* ─── Speaking State ─── */
.kv-mic.kv-speaking {
    background: linear-gradient(135deg, #a88544 0%, #6b5228 100%);
}

.kv-mic.kv-speaking .kv-mic-icon {
    animation: kvSoundWave 0.6s ease-in-out infinite alternate;
}

@keyframes kvSoundWave {
    from { transform: scaleY(1) scaleX(1); }
    to { transform: scaleY(1.15) scaleX(1.08); }
}

/* ─── Fade In ─── */
@keyframes kvFadeIn {
    from { opacity: 0; transform: translateY(8px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── Mobile ─── */
@media (max-width: 560px) {
    .kesavi-voice {
        bottom: 1.2rem;
        right: 1.2rem;
    }
    
    .kv-mic {
        width: 62px;
        height: 62px;
    }
    
    .kv-mic-icon {
        width: 28px;
        height: 28px;
    }
    
    .kv-mic-label {
        display: none;
    }
}




