:root {
    --gold: #e5a93d;
    --gold-glow: rgba(229, 169, 61, 0.4);
    --red: #ff0000;
    --black: #000000;
    --surface: #0a0a0a;
    --text-light: #ffffff;
    --text-dim: #999999;
    --transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: -webkit-optimize-contrast;
}

img, video {
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

body {
    background-color: var(--black);
    color: var(--text-light);
    font-family: 'Alexandria', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- THE LIGHT --- */
.spotlight {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(229, 169, 61, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    transition: background 0.1s ease-out;
}

canvas#fg-particles {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}

/* --- Ultra-Premium Cinematic Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px; 
    z-index: 10000;
    padding: 0 40px; /* Fixed padding instead of % */
    background: transparent;
    display: flex;
    justify-content: center; /* Center the wrapper below */
    align-items: center;
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.header-inner-wrap {
    width: 100%;
    max-width: 1400px; /* Locked max width */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
}

/* Base header background to give it that slick glass edge when scrolled */
header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.8;
    z-index: -2;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    transition: all 0.5s ease;
}

header::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: -1;
}

.digital-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: #000;
}

header.scrolled {
    height: 50px; 
    background: rgba(8, 8, 8, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled::before {
    opacity: 0;
}

/* Glowing edge removed to make it minimal and sleek, replaced with premium line */
.header-border {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 169, 61, 0.5), transparent);
    opacity: 0;
    transition: 0.5s ease;
}

header.scrolled .header-border {
    opacity: 1;
}

/* Floating Logo Animation */
.logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    direction: ltr;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.logo-box:hover {
    transform: scale(1.02);
}

.logo-txt {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
}

.logo-txt .name {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.2rem; /* Shrunk: was 1.5rem */
    color: white;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-txt .studio-area {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 3px;
}

.logo-txt .studio {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.8rem; /* Shrunk: was 0.95rem */
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
}

.rec-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 16px;
}

.rec-pill .dot {
    width: 5px;
    height: 5px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse-dot 1s infinite alternate;
}

.rec-pill .txt {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.5rem;
    color: #fff;
}

.z-frame-box {
    width: 35px; /* Shrunk: was 45px */
    height: 35px;
    background: linear-gradient(135deg, #F9FF73, var(--gold));
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px; /* Slightly sharper */
    position: relative;
    box-shadow: 0 5px 15px rgba(229, 169, 61, 0.2);
}

.z-frame-box span {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.4rem; /* Shrunk: was 1.8rem */
    color: #000;
}

@keyframes pulse-dot {
    from {
        opacity: 1;
        box-shadow: 0 0 5px var(--red);
    }

    to {
        opacity: 0.3;
        box-shadow: 0 0 0 var(--red);
    }
}

/* Premium Floating Dock Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    position: fixed; /* Independent of header */
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 8px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: auto;
    min-width: fit-content;
    white-space: nowrap;
}

.home-dock-btn { text-decoration: none; }
.home-dock-btn .z-frame-box, .home-dock-btn .dock-label { display: none; }
.home-dock-btn.mini-logo .z-frame-box { display: flex; }
.desktop-home-text { display: block; }


.nav-links:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5); /* Dimmer */
    font-weight: 500;
    font-size: 0.7rem; /* Tiny but readable */
    letter-spacing: 0.5px;
    transition: 0.3s;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Desktop Dock Dock Animation Fixes */
.nav-links:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Hover background inside the pill */
.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Fixed header elements integrated into .nav-links */

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    transition: 0.3s;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Mobile Navigation Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.mobile-toggle:hover {
    background: var(--gold);
    color: #000;
}

/* Elegant CTA Button */
.contact-cta {
    background: #fff;
    color: #000;
    padding: 8px 18px; /* Tighter: was 12px 30px */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem; /* Smaller: was 0.85rem */
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-cta:hover {
    background: linear-gradient(135deg, #F9FF73, var(--gold));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(229, 169, 61, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.8);
}

/* .mobile-btn is reserved */

/* --- Hero: Studio Interface --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; /* CINEMATIC: Move to the right side */
    text-align: right;    /* CINEMATIC: Align text to match */
    position: relative;
    overflow: hidden;
    padding: 0 8%;      /* Cinematic side padding */
}

/* Add a subtle dark gradient on the right to ensure text is ALWAYS readable over any video */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(0,0,0, var(--hero-overlay-op, 0.4)) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 1.5s ease;
    filter: brightness(0.7) saturate(1.1);
}

/* Ensure HUD elements stay on top */
.hud-rec, .hud-grid, .lens-flare, .hero h1, .hero p, .hero .btn-rec {
    z-index: 2;
}

/* Camera HUD Elements */
.hud-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 5;
}

.top-right {
    top: 120px;
    right: 40px;
    border-left: 0;
    border-bottom: 0;
}

.top-left {
    top: 120px;
    left: 40px;
    border-right: 0;
    border-bottom: 0;
}

.bottom-right {
    bottom: 40px;
    right: 40px;
    border-left: 0;
    border-top: 0;
}

.bottom-left {
    bottom: 40px;
    left: 40px;
    border-right: 0;
    border-top: 0;
}

.hud-info {
    position: absolute;
    bottom: 40px;
    left: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.hud-rec {
    position: absolute;
    top: 90px; /* Moved up: was 130px */
    left: 80px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.hud-rec .pulse {
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse-dot 0.8s infinite alternate;
}

.hud-battery {
    position: absolute;
    top: 90px; /* Moved up: was 130px */
    right: 80px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
}

.battery-icon {
    width: 25px;
    height: 12px;
    border: 1px solid currentColor;
    border-radius: 2px;
    position: relative;
    padding: 1px;
}

.battery-icon::before {
    content: '';
    position: absolute;
    right: -3px;
    top: 3px;
    width: 3px;
    height: 4px;
    background: currentColor;
}

.battery-level {
    width: 80%;
    height: 100%;
    background: #4caf50;
}

/* Rule of Thirds Grid */
.hud-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
}

.grid-line-v {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: white;
}

.grid-line-h {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: white;
}

.v1 {
    left: 33.33%;
}

.v2 {
    left: 66.66%;
}

.h1 {
    top: 33.33%;
}

.h2 {
    top: 66.66%;
}

@keyframes cinematic-text-up {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem); /* Slightly more elegant size */
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Match hero alignment */
    gap: 10px;
    width: 100%;
}

.hero h1 span {
    display: block;
    font-weight: 700;
    color: #fff;
    opacity: 0.95;
    font-size: 0.7em;
    /* Balanced size */
}

.hero h1 .bold-txt {
    font-weight: 900;
    font-size: 0.9em;
}

.hero h1 .gold {
    color: var(--gold);
    font-weight: 950;
    font-size: 1.1em;
    /* Hero but not oversized */
    background: linear-gradient(to bottom, #fff, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px var(--gold-glow));
    display: inline-block;
    /* Retain display property for proper rendering */
    padding: 0.3em 0;
    /* Fixes clipped dots and descenders for background-clip */
    margin: -0.3em 0;
    /* Offsets the padding visually */
}

.hero p {
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    max-width: 550px; /* Constrain for side-layout elegance */
    margin: 0 0 45px; /* Margin on bottom only */
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 400;
    z-index: 2;
    /* Retain original z-index */
    text-align: right;
    /* Enforce alignment */
}

.btn-rec {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #F9FF73 0%, #E5A93D 100%);
    color: #1a1a1a;
    padding: 22px 50px;
    border-radius: 15px;
    /* Cinematic sharp-corner rounded */
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(229, 169, 61, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-rec::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-rec:hover::before {
    left: 100%;
}

.btn-rec:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(229, 169, 61, 0.4);
    filter: brightness(1.15);
}

.btn-rec i {
    font-size: 1.4rem;
    animation: pulse-dot 1s infinite alternate;
}

@keyframes pulse-dot {
    from {
        opacity: 0.6;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Cinematic Fog/Flare */
.lens-flare {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 255, 115, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}


/* --- Locations Catalog Section --- */
.locations {
    padding: 100px 8%;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    /* Much more air between header and content */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    /* space between sub-label, h2, and laser */
}

.section-header::after {
    content: '';
    display: block;
    width: min(70%, 250px);
    height: 2.5px;
    background: linear-gradient(to left, var(--gold) 0%, rgba(229, 169, 61, 0) 100%);
    box-shadow: 10px 0 15px var(--gold), 0 0 5px var(--gold-glow);
    border-radius: 5px;
    margin-top: 5px;
    transform-origin: right center;
    animation: laserShoot 3s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Quick start, smooth finish */
}

@keyframes laserShoot {
    0% {
        transform: scaleX(0);
        /* Starts at zero width */
        opacity: 0;
    }

    15% {
        opacity: 1;
        /* Ignites instantly */
    }

    50% {
        transform: scaleX(1);
        /* Reaches full width */
        opacity: 1;
        box-shadow: 15px 0 25px var(--gold), 0 0 15px var(--gold-glow);
    }

    85% {
        transform: scaleX(1);
        opacity: 0;
        /* Fades out smoothly */
    }

    100% {
        transform: scaleX(0);
        /* Resets invisibly */
        opacity: 0;
    }
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    /* Slightly larger */
    line-height: 1.6;
    /* Generous line-height to capture all Arabic dots and ascenders */
    margin-top: calc(15px - 0.4em);
    /* Offset top padding while preserving gap */
    text-transform: uppercase;
    font-weight: 900;
    background: linear-gradient(to bottom, #fff, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px var(--gold-glow));
    display: inline-block;
    padding: 0.4em 0;
    /* Massive safe padding top and bottom */
    margin-bottom: -0.4em;
    /* Negate the bottom padding to not push laser away */
}


.loc-player-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
}

.loc-slider {
    width: 100%;
    height: 80vh;
    min-height: 700px;
    position: relative;
}

.loc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
    overflow: hidden;
    background: #050505;
}

.loc-slide.slide-active {
    opacity: 1;
    z-index: 2;
}

.loc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 12s ease-out;
    opacity: 0;
}

.loc-slide.slide-active .loc-img {
    transform: scale(1);
    opacity: 1;
}

.loc-slide.loaded .loc-loader {
    display: none;
}

.loc-loader {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    background: #000;
}

.loc-loader .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(229, 169, 61, 0.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loc-nav-btns {
    position: absolute;
    bottom: 40px;
    right: 8%;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.loc-nav-btns button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.loc-nav-btns button:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: translateY(-3px);
}

.loc-overlay-player {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px 8% 60px;
    text-align: center;
    align-items: center;
}

.loc-overlay-player h3 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

.loc-overlay-player p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.loc-tag-player {
    background: rgba(249, 255, 115, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #F9FF73;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 900;
    width: fit-content;
    margin-bottom: 20px;
    border: 2px solid rgba(249, 255, 115, 0.4);
    letter-spacing: 2px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

.slide-active .loc-overlay-player h3,
.slide-active .loc-overlay-player p,
.slide-active .loc-overlay-player .loc-tag-player {
    transform: translateY(0);
    opacity: 1;
}

.play-btn:hover {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.2);
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 100px 8%;
}

/* --- NEW PREMIUM CONTACT SYSTEM --- */
/* --- Premium Split Contact Layout --- */
.contact-grid-premium {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 5%;
}

.contact-card-premium {
    background: rgba(10, 10, 10, 0.6); /* Very dark FrameZ style */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
}

.contact-card-premium.form-card {
    order: 2; /* Put it on the left in RTL grid array */
}

.contact-card-premium.info-card {
    order: 1; /* Put it on the right in RTL grid array */
}

.contact-card-premium h3.contact-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    margin-top: 0;
    text-align: right;
}

.contact-card-premium h3.color-primary {
    color: var(--gold);
    background: none;
    -webkit-text-fill-color: var(--gold);
}

/* --- Form Side --- */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.input-wrap label {
    font-size: 0.95rem;
    color: #888; /* FrameZ light gray */
    font-weight: 500;
}

.input-inner {
    position: relative;
    width: 100%;
}

.input-inner i {
    position: absolute;
    top: 50%;
    left: 20px; /* Inside left for RTL depending on alignment */
    transform: translateY(-50%);
    color: var(--gold);
    opacity: 0.5;
    font-size: 1.1rem;
    pointer-events: none;
    transition: 0.3s;
}

.input-inner input,
.input-inner textarea {
    width: 100%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 20px 18px 50px; /* Padding left 50px for the icon */
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.input-inner textarea {
    resize: vertical;
    padding-top: 18px;
}

.input-inner input:focus,
.input-inner textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(229, 169, 61, 0.15);
}

.input-inner input:focus ~ i,
.input-inner textarea:focus ~ i {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

/* FrameZ Gold Liquid Fill Buttons */
.contact-submit-btn,
.btn-wa-chat {
    width: 100%;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 800;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.contact-submit-btn::before,
.btn-wa-chat::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--gold), #F9FF73); /* FrameZ Gold Liquid */
    border-radius: 50% 50% 0 0;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-submit-btn:hover,
.btn-wa-chat:hover {
    color: #000;
    box-shadow: 0 15px 40px rgba(229, 169, 61, 0.4);
    transform: translateY(-5px);
}

.contact-submit-btn:hover::before,
.btn-wa-chat:hover::before {
    bottom: 0;
    border-radius: 0;
}

/* --- Info Side --- */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.info-item {
    display: flex;
    justify-content: flex-end; /* Right side layout */
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-item:hover .info-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(229, 169, 61, 0.2);
}

.info-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.info-label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 4px;
}

.info-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    word-break: break-word;
    max-width: 280px;
}

.info-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

/* Email Button */
.btn-email-chat {
    width: 100%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 700;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-email-chat:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
    .contact-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* --- Updated Portfolio Filters --- */
.portfolio-filters {
    margin-top: 50px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-filters .filter-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 15px 35px;
    border-radius: 80px;
    cursor: pointer;
    transition: 0.4s;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.portfolio-filters .filter-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.portfolio-filters .filter-btn.active {
    background: var(--gold);
    color: #000;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(229, 169, 61, 0.3);
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-20px);
    background: rgba(229, 169, 61, 0.05);
    border-color: var(--gold);
}

.card i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.card p {
    color: var(--text-dim);
    line-height: 1.8;
    font-weight: 300;
}

/* --- Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

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

/* --- Premium Footer --- */
.main-footer {
    padding: 80px 8% 40px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03) 0%, #000 70%);
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
}

.footer-cta {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    background: linear-gradient(to bottom, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.6;
    padding: 0.4em 0;
    margin-bottom: -0.4em;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.footer-cta p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
    margin-top: -10px;
}

.footer-cta .contact-cta {
    margin-top: 15px;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.4s ease;
    box-shadow: 0 10px 30px rgba(229, 169, 61, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* The Liquid Fluid */
.footer-cta .contact-cta::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--gold), #ffea5c);
    border-radius: 50% 50% 0 0;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer-cta .contact-cta:hover {
    color: #1a1a1a;
    box-shadow: 0 15px 40px rgba(229, 169, 61, 0.5);
    transform: translateY(-5px);
}

.footer-cta .contact-cta:hover::before {
    bottom: 0;
    border-radius: 0;
}

.footer-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 30px;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.footer-socials a {
    font-size: 2rem;
    color: var(--text-dim);
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--gold);
    transform: scale(1.3);
}
/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: rgba(37, 211, 102, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    overflow: hidden;
    border: 2px solid rgba(37, 211, 102, 0.5);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: #25d366;
    border-radius: 40%;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: liquidWave 6s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes liquidWave {
    0% { top: 110%; transform: translate(-50%, -50%) rotate(0deg); }
    50% { top: 45%; transform: translate(-50%, -50%) rotate(180deg); }
    100% { top: -10%; transform: translate(-50%, -50%) rotate(360deg); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    border-color: #fff;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

@media (max-width: 500px) {
    .whatsapp-float {
        bottom: 25px;
        left: 25px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}
/* --- Social Sidebar --- */
.social-sidebar {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.social-sidebar a {
    color: white;
    font-size: 1.2rem;
    opacity: 0.5;
    transition: 0.3s;
}

.social-sidebar a:hover {
    opacity: 1;
    color: var(--gold);
    transform: scale(1.2);
}

/* --- Section Specifics --- */
#making-of {
    position: relative;
}

.bts-thumb {
    width: 140px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.4;
    transition: 0.4s;
    flex-shrink: 0;
    filter: grayscale(100%);
    background: #111;
}

.bts-thumb:hover {
    opacity: 0.8;
    filter: grayscale(50%);
    transform: translateY(-3px);
}

.bts-thumb.active {
    opacity: 1;
    border-color: var(--gold);
    filter: grayscale(0%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.bts-playlist::-webkit-scrollbar {
    height: 4px;
}

.bts-playlist::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 25px;
    animation: marquee-scroll linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track.horizontal {
    animation-duration: 40s;
}

.marquee-track.vertical {
    animation-duration: 50s;
    animation-direction: reverse;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.work-card {
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.work-card.h-card {
    width: 450px;
    aspect-ratio: 16/9;
}

.work-card.v-card {
    width: 250px;
    aspect-ratio: 9/16;
}

.work-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.5s;
}

.work-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.5s;
}

.work-card:hover video,
.work-card:hover .work-thumb {
    opacity: 1;
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.3s;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.tiers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.pack-badge {
    position: absolute;
    top: 25px;
    right: -45px;
    background: var(--gold);
    color: #000;
    padding: 6px 50px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 900;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    pointer-events: none;
    letter-spacing: 1px;
}

.package-card.recommended {
    border-color: rgba(229, 169, 61, 0.4);
    box-shadow: 0 0 50px rgba(229, 169, 61, 0.15);
}

.package-card {
    position: relative;
    background: #0d0d0d;
    border-radius: 35px;
    padding: 0; /* Remove space for neon */
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    opacity: 0;
    transform: translateY(40px);
    animation: revealCard 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    border: 1px solid rgba(255,255,255,0.05);
}

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

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

/* REMOVED NEON ROTATION ::before */

.package-inner {
    position: relative;
    z-index: 2;
    background: transparent;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
}

.pack-visual {
    position: relative;
    width: 100%;
    height: 240px; /* Horizontal / Landscape ratio */
    overflow: hidden;
    background: #000;
    z-index: 1;
}

.pack-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    opacity: 1;
}

.package-card:hover .pack-visual img { transform: scale(1.1); }

.pack-content-glass {
    position: relative;
    z-index: 2;
    margin-top: -30px; /* Slight overlap on horizontal image */
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 35px 35px 0 0;
    padding: 35px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.pack-header {
    text-align: left; /* Modern alignment */
    margin-bottom: 25px;
}

.pack-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}

.pack-badge-sub {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 2px;
}

.package-card:hover .pack-visual img { transform: scale(1.08); }

.pack-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 40px; /* Space from header and to footer */
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px; /* Vertical and Horizontal spacing */
}

.pack-features li {
    padding: 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.pack-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: 0.9rem;
}

.pack-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
}

.pack-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.pack-price span {
    font-size: 1.1rem;
    color: var(--text-dim);
    font-weight: 400;
    margin-left: 5px;
}

.pack-btn {
    width: 100%;
    padding: 20px;
    border-radius: 60px;
    border: none;
    background: var(--gold);
    color: #000;
    font-weight: 900;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.4s;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(229,169,61,0.2);
}

.pack-btn:hover {
    background: #fff;
    transform: scale(0.96);
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
}

/* --- Updated Responsive System --- */
@media (max-width: 1200px) {
    header {
        padding: 0 40px;
    }

    .nav-links {
        gap: 25px;
    }

    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 991px) {
    header {
        height: 70px !important;
        padding: 0 5% !important;
        flex-direction: row;
        gap: 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        z-index: 10001;
    }

    header::before {
        opacity: 0.9;
    }

    header.scrolled {
        height: 60px !important;
        padding: 0 5% !important;
    }

    .header-inner-wrap {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-box {
        width: auto;
        padding-bottom: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: -120%;
        left: 0;
        width: 100%;
        height: 100vh;
        max-width: none;
        transform: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 20px;
        margin: 0;
        padding: 80px 20px 40px;
        border-radius: 0;
        background: rgba(8, 8, 8, 0.98);
        border: none;
        z-index: 10000;
        transition: top 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        overflow-y: auto;
    }

    .nav-links.active {
        top: 0;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a {
        font-size: 1.4rem;
        padding: 10px 20px;
        background: transparent !important;
    }

    .home-dock-btn { display: none !important; }

    .lang-switch {
        margin-top: 20px;
        background: rgba(255,255,255,0.05) !important;
        border-radius: 50px;
        padding: 12px 30px !important;
        font-size: 1.1rem !important;
    }

    #post-house h2 {
        font-size: 1.8rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .request-form-box {
        padding: 25px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hud-corner,
    .hud-rec,
    .hud-battery,
    .hud-info {
        display: none;
    }
}


@media (max-width: 991px) {
    .sec-padding {
        padding: 80px 5%;
    }

    .section-header h2 {
        font-size: 2.2rem !important;
    }

    .hero {
        padding: 140px 5% 80px;
        align-items: center;
        text-align: center;
    }

    .hero h1 {
        align-items: center;
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
        text-align: center;
    }

    .hud-info,
    .hud-battery,
    .hud-rec {
        font-size: 0.7rem;
    }

    .hud-corner {
        width: 30px;
        height: 30px;
    }

    .locations {
        padding: 60px 5%;
        border-radius: 15px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .loc-player-wrapper {
        border-radius: 15px;
    }

    .loc-slider {
        height: auto;
        aspect-ratio: 16/11; /* More horizontal/landscape for better content view */
        min-height: 300px;
    }

    .loc-overlay-player {
        padding: 20px 5% 25px;
    }

    .loc-overlay-player h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .loc-overlay-player p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .loc-tag-player {
        font-size: 1.1rem;
        padding: 8px 20px;
        margin-bottom: 12px;
        border: 1.5px solid rgba(249, 255, 115, 0.4);
    }

    .player-controls {
        display: none;
    }

    .play-btn-mini {
        width: 35px;
        height: 35px;
        font-size: 1rem !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 60px 5%;
        gap: 20px;
    }

    .card {
        padding: 40px 20px;
    }

    .card i {
        font-size: 3rem;
    }

    .card h3 {
        font-size: 1.5rem;
    }

    footer {
        padding: 60px 5% 30px;
    }

    .hud-info {
        display: none;
    }

    .package-card {
        padding: 40px 20px;
    }

    #post-house .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 5%;
    }

    #post-house .post-visual {
        order: -1;
    }
}

@media (max-width: 480px) {

    header,
    header.scrolled {
        padding: 10px 5% !important;
    }

    /* Legacy nav styles removed to support global full-screen menu */
    
    .nav-links .contact-cta {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .lang-switch {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

/* --- Category Showcase Sections --- */
.sec-padding {
    padding: 120px 8%;
    position: relative;
    overflow: hidden;
}

/* --- Portfolio Sliders (Netflix Style) --- */
.portfolio-sliders-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.portfolio-slider-container {
    position: relative;
    width: 100%;
}

.slider-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-right: 15px;
    border-right: 3px solid var(--gold);
    text-align: right;
    letter-spacing: 0.5px;
}

.works-slider {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    width: 100%;
    position: relative;
    direction: ltr; /* Force LTR for consistent math */
    cursor: grab;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.works-slider.active-drag {
    cursor: grabbing;
}
.works-slider::-webkit-scrollbar {
    display: none;
}

.scroll-track {
    display: flex;
    gap: 25px;
    animation: scroll 60s linear infinite;
    will-change: transform;
}

.scroll-track.rev {
    animation: scroll-rev 80s linear infinite;
}

.works-slider:hover .scroll-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

@keyframes scroll-rev {
    0% { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}

/* Vertical slider specific sizing */
.work-card-premium.v-card {
    flex: 0 0 auto !important;
    width: 280px !important;
    scroll-snap-align: start;
    aspect-ratio: 9/16 !important;
}

/* Horizontal slider specific sizing */
.work-card-premium.h-card {
    flex: 0 0 auto !important;
    width: 450px !important;
    scroll-snap-align: start;
    aspect-ratio: 16/9 !important;
}

.work-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .vertical-slider .work-card-premium {
        width: 220px;
    }
    .horizontal-slider .work-card-premium {
        width: 320px;
    }
    .portfolio-sliders-wrapper {
        gap: 40px;
    }
    /* Tiers Mobile Optimizations */
    .tiers-grid {
        gap: 25px;
        padding: 20px 10px;
    }
    .package-card {
        min-height: auto !important;
        max-width: 100%;
        border-radius: 25px;
    }
    .pack-visual {
        height: 180px;
    }
    .pack-content-glass {
        padding: 25px 20px;
        margin-top: -20px;
        border-radius: 25px 25px 0 0;
    }
    .pack-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }
    .pack-price {
        font-size: 1.8rem;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.work-card-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.work-card-premium.v-card {
    aspect-ratio: 9/16;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.work-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.card-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: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-card-premium:hover {
    transform: translateY(-10px);
    border-color: rgba(229, 169, 61, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.work-card-premium:hover .work-thumb {
    transform: scale(1.1);
}

.work-card-premium:hover .card-overlay {
    opacity: 1;
}

.play-btn-mini {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.work-card-premium:hover .play-btn-mini {
    transform: translateY(0);
}

/* --- CINEMA FRAME (MAKING OF) --- */
.making-of-container {
    width: 100%;
    max-width: 500px;
    margin: 60px auto;
    position: relative;
    height: 700px;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bts-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
    z-index: 1;
}

.bts-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    z-index: 10;
}

.cinema-frame-wrapper.bts-carousel-item {
    margin: 0;
    width: 100%;
    height: 100%;
}

.cinema-frame-wrapper.bts-carousel-item .cinema-title {
    display: none; /* User requested to remove title */
}

/* Filled background effect for vertical videos */
.bts-bg-fill {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.4);
    transform: scale(1.1);
    z-index: 0;
}

.cinema-media-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps it vertical while BG fills */
}
.cinema-frame-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
}

.cinema-blur-bg {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.4);
    transform: scale(1.1);
    z-index: 0;
}

.cinema-frame {
    position: relative;
    height: 90%;
    aspect-ratio: 16/9;
    border: 4px solid rgba(229, 169, 61, 0.4);
    border-radius: 15px;
    overflow: hidden;
    z-index: 2;
    background: #000;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}

.cinema-frame.v-frame {
    aspect-ratio: 9/16;
}

.frame-label {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 900;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 12px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
}

.cinema-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    opacity: 0.8;
    cursor: pointer;
    transition: 0.3s;
}

.cinema-frame:hover {
    transform: scale(1.02) translateZ(0);
    border-color: var(--gold);
}

.cinema-frame:hover .play-overlay {
    opacity: 1;
    transform: scale(1.1);
}

.cinema-title {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 900;
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    z-index: 10;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .cinema-frame-wrapper {
        height: 400px;
        border-radius: 20px;
    }

    .cinema-title {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Video Lightbox Modal --- */
.video-modal { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.98); z-index: 9999; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; backdrop-filter: blur(15px); padding: 20px; }
.video-modal.active { opacity: 1; pointer-events: auto; }

.modal-content { position: relative; width: 100%; max-width: 900px; max-height: 98vh; background: #000; border-radius: 20px; box-shadow: 0 40px 100px rgba(0,0,0,1); transform: translateY(50px) scale(0.95); transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); display: flex; flex-direction: column; overflow-y: auto; overflow-x: hidden; border: 1px solid rgba(255,255,255,0.1); }
.video-modal.active .modal-content { transform: translateY(0) scale(1); }

/* Adaptive Vertical Modal */
.modal-content.vertical-modal { max-width: 450px; aspect-ratio: 9/16; height: 92vh; }
.modal-content.vertical-modal .video-container-inner { aspect-ratio: 9/16; }

.video-container-inner { width: 100%; aspect-ratio: 16/9; background: #000; flex-shrink: 0; position: relative; overflow: hidden; border-radius: 15px; }
.video-container-inner iframe, .video-container-inner video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; border: none; }

.modal-footer { padding: 30px; background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.05); }
.modal-cta-box { display: flex; justify-content: space-between; align-items: center; padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 25px; gap: 20px; }
.modal-cta-text h4 { font-size: 1.4rem; color: var(--gold); margin-bottom: 5px; font-weight: 800; }
.modal-cta-text p { font-size: 0.9rem; color: var(--text-dim); }
.modal-cta-btn { background: var(--gold); color: #000; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 900; display: flex; align-items: center; gap: 10px; transition: 0.3s; white-space: nowrap; box-shadow: 0 10px 20px rgba(229,169,61,0.2); }
.modal-cta-btn:hover { transform: scale(1.05); background: #fff; box-shadow: 0 10px 30px rgba(255,255,255,0.2); }

.modal-recs-title { font-size: 1rem; font-weight: 800; letter-spacing: 1px; color: #fff; margin-bottom: 15px; text-transform: uppercase; }
.modal-recs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.modal-rec-item { cursor: pointer; transition: 0.3s; border-radius: 10px; overflow: hidden; position: relative; aspect-ratio: 16/9; background: #111; }
/* Vertical Recommendations */
.modal-recs-grid.is-vertical .modal-rec-item { aspect-ratio: 9/16; }

.modal-rec-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: 0.3s; }
.modal-rec-item span { position: absolute; bottom: 8px; left: 8px; right: 8px; font-size: 0.7rem; font-weight: 800; color: #fff; z-index: 2; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.modal-rec-item:hover { transform: translateY(-5px); }
.modal-rec-item:hover img { opacity: 1; transform: scale(1.1); }
.close-modal { position: absolute; top: -50px; right: 0; background: transparent; border: none; font-size: 2.5rem; color: #fff; cursor: pointer; transition: color 0.3s; z-index: 2; }
.close-modal:hover { color: var(--gold); }
@media (max-width: 768px) { .close-modal { top: -40px; right: 10px; font-size: 2rem; } .modal-content { width: 95%; max-width: auto; } .modal-content.vertical-modal { width: 90%; max-width: 400px; aspect-ratio: 9/16; height: auto; } }

/* --- BTS (Behind The Scenes) Special Modal --- */
.modal-content.bts-bezel {
    max-width: 700px;
    aspect-ratio: 4/5; /* The perfect "In-between" ratio */
    border: 8px solid #1a1a1a;
    box-shadow: 0 0 0 2px var(--gold), 0 30px 60px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
    background: #000;
}

.bts-logo-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    pointer-events: none;
}

.bts-logo-overlay img {
    height: 40px;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
    opacity: 0.8;
}

.bts-frame-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0.6;
}

.modal-content.bts-bezel .video-container-inner {
    aspect-ratio: 4/5;
    height: 100%;
}

@media (max-width: 768px) {
    .modal-content.bts-bezel {
        width: 90%;
        max-width: 400px;
    }
}
.card-play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8); width: 60px; height: 60px; border-radius: 50%; background: rgba(0,0,0,0.6); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.5rem; opacity: 0; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 5; pointer-events: none; backdrop-filter: blur(5px); }
.work-card-premium:hover .card-play-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 20px rgba(229,169,61,0.5); }

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0 30px;
}

.footer-socials a {
    color: rgba(255,255,255,0.7);
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-socials a:hover {
    color: var(--gold);
    transform: translateY(-8px) scale(1.1);
    filter: drop-shadow(0 0 10px rgba(229,169,61,0.6));
}


/* --- Cinematic Reveal Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initially hide all dynamic text elements */
#heroHeadline, #heroDesc, .section-header h2, .section-desc, .sub-label {
    opacity: 0;
    will-change: transform, opacity;
}

/* Trigger animation only when data is ready */
.data-ready #heroHeadline {
    animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.data-ready #heroDesc {
    animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.data-ready .sub-label {
    animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    animation-delay: 0s;
}

.data-ready .section-header h2 {
    animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.data-ready .section-desc {
    animation: fadeInUp 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

/* --- AI Chatbot Interface --- */
.chat-bubble {
    position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px; background: var(--gold); color: #000;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
    cursor: pointer; z-index: 10000; box-shadow: 0 10px 40px rgba(229,169,61,0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.chat-bubble:hover { transform: scale(1.1) rotate(15deg); }
.chat-bubble .status-pulse { position: absolute; top: 5px; right: 5px; width: 12px; height: 12px; background: #00ff00; border-radius: 50%; border: 2px solid #000; animation: statusPulse 2s infinite; }
@keyframes statusPulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

.chat-window {
    position: fixed; bottom: 110px; right: 30px; width: 380px; height: 500px;
    background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px; display: flex; flex-direction: column; overflow: hidden; z-index: 10001;
    transform: translateY(50px) scale(0.9); opacity: 0; pointer-events: none; transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.chat-window.active { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.chat-header { background: rgba(229, 169, 61, 0.1); padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(229, 169, 61, 0.2); }
.ai-info { display: flex; align-items: center; gap: 12px; }
.ai-avatar { width: 40px; height: 40px; background: var(--gold); color: #000; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 900; }
.ai-name { display: flex; flex-direction: column; text-align: right; }
.ai-name span:first-child { color: #fff; font-weight: 700; font-size: 0.9rem; }
.online-tag { color: #00ff00; font-size: 0.7rem; font-weight: 800; }
.close-chat { background: transparent; border: none; color: #fff; cursor: pointer; font-size: 1.2rem; }

.chat-body { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 85%; padding: 10px 15px; border-radius: 15px; font-size: 0.9rem; line-height: 1.4; animation: msgIn 0.3s ease forwards; }
@keyframes msgIn { from { transform: translateY(10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.ai-msg { align-self: flex-start; background: rgba(255, 255, 255, 0.05); color: #eee; border-bottom-left-radius: 4px; text-align: right; }
.user-msg { align-self: flex-end; background: var(--gold); color: #000; border-bottom-right-radius: 4px; font-weight: 700; text-align: right; }

.chat-input-area { padding: 15px; background: rgba(0, 0, 0, 0.2); display: flex; gap: 10px; }
.chat-input-area input { flex: 1; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 10px 15px; border-radius: 50px; color: #fff; outline: none; transition: 0.3s; }
.chat-input-area input:focus { border-color: var(--gold); }
.chat-input-area button { width: 40px; height: 40px; background: var(--gold); color: #000; border: none; border-radius: 50%; cursor: pointer; }

@media (max-width: 500px) { .chat-window { width: 100%; height: 100%; bottom: 0; right: 0; border-radius: 0; } }

/* --- Celebrities Section --- */
.celebrities-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 30px 20px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.celebrity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.celebrity-img-wrap {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 20px;
    padding: 6px;
    background: linear-gradient(135deg, var(--gold), transparent, rgba(229,169,61,0.2));
    transition: 0.5s;
}

.celebrity-img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: 0.5s;
    border: 3px solid #000;
}

.celebrity-card:hover {
    transform: translateY(-10px);
}

.celebrity-card:hover .celebrity-img-wrap {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(229,169,61,0.2);
}

.celebrity-card:hover img {
    filter: grayscale(0%);
    border-color: var(--gold);
}

.celebrity-card h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.celebrity-card p {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .celebrities-container { gap: 30px; }
    .celebrity-img-wrap { width: 130px; height: 130px; }
    .celebrity-card h3 { font-size: 1.1rem; }
}

/* --- FAQ Page --- */
.faq-container {
    max-width: 900px;
    margin: 40px auto 100px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(229, 169, 61, 0.02);
    border: 1px solid rgba(229, 169, 61, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(229, 169, 61, 0.2);
    background: rgba(229, 169, 61, 0.04);
}

.faq-item.active {
    border-color: var(--gold);
    background: rgba(229, 169, 61, 0.08);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    transition: 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 30px;
    opacity: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(229, 169, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: 0.5s;
    font-size: 0.9rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--gold);
    color: #000;
}

/* --- Sub-Page Hero Sections --- */
.sub-hero {
    height: 480px;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px; /* Header space */
}

.sub-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.sub-hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    padding: 0 20px;
}

.sub-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin: 15px 0;
    color: #fff;
    letter-spacing: -1px;
}

.sub-hero-content p {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .sub-hero { height: 380px; padding-top: 100px; }
    .sub-hero-content h1 { font-size: 1.8rem; }
    .sub-hero-content p { font-size: 0.9rem; }

    /* General Section Padding */
    .sec-padding { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
    
    /* Portfolio Sliders on Mobile */
    .scroll-track { animation-duration: 25s; }
    .work-card-premium { border-radius: 12px; }
    .card-overlay { padding: 15px; }
    .card-overlay h4 { font-size: 0.8rem; }

    /* Packages Grid */
    .celebrities-container, #packGrid, #homeTiersGrid, #tiersGrid {
        gap: 20px;
        padding: 20px;
    }

    .package-card {
        max-width: 100%;
        margin: 0 auto;
    }

    /* FAQ */
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    .faq-answer {
        padding: 0 20px;
        font-size: 0.85rem;
    }

    /* Footer */
    footer { padding: 60px 20px 30px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-socials { gap: 20px; }

    /* Modal Adjustments */
    .modal-content { padding: 0; }
    .modal-footer { padding: 20px; }
    .modal-cta-box { flex-direction: column; text-align: center; }
    .modal-recs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Collapsible Grid & Header Toggle --- */
.section-header.clickable-header {
    cursor: pointer;
    user-select: none;
    transition: transform 0.3s ease;
}

.section-header.clickable-header:hover {
    transform: translateY(-2px);
}

.toggle-arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(229, 169, 61, 0.1); /* Subtle gold background */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    font-size: 0.45em;
    margin-right: 20px; /* RTL space between title and arrow */
    color: var(--gold);
    vertical-align: middle;
}

.section-header.clickable-header:hover .toggle-arrow {
    background: rgba(229, 169, 61, 0.2);
}

.section-header.active-toggle .toggle-arrow {
    transform: rotate(180deg);
}

.collapsible-grid {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.8s;
    padding-top: 0;
}

.collapsible-grid.expanded {
    max-height: 4000px; /* Arbitrary large max height */
    opacity: 1;
    padding-top: 40px; /* Gives some breathing room when opened */
}

/* --- Camera Intro Animation --- */
.camera-intro {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.camera-intro.intro-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.camera-shutter {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background: #000;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.8, 0, 0.2, 1);
}

.shutter-top { top: 0; transform-origin: top; }
.shutter-bottom { bottom: 0; transform-origin: bottom; }

.camera-intro.intro-open .shutter-top { transform: scaleY(0); }
.camera-intro.intro-open .shutter-bottom { transform: scaleY(0); }

.camera-flash {
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease-out;
}
.camera-flash.flash-active { opacity: 1; }

.camera-intro-hud {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.intro-rec {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff0000;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.intro-rec .pulse {
    width: 15px;
    height: 15px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse-dot 0.8s infinite alternate;
}

.intro-focus-box {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: focus-scale 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.intro-focus-box .fc {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.8);
}
.intro-focus-box .tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.intro-focus-box .tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.intro-focus-box .bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.intro-focus-box .br { bottom: 0; right: 0; border-left: none; border-top: none; }

.intro-text {
    position: absolute;
    bottom: 80px;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
    opacity: 0;
    animation: fade-in-up 1s forwards 0.5s;
}

@keyframes focus-scale {
    0% { transform: scale(1.5); opacity: 0; }
    50% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Final Studio Mobile Fix (Definitive Stacking) --- */
@media (max-width: 991px), (orientation: portrait) {
    .loc-slider {
        height: 700px !important;
        min-height: auto !important;
        overflow: hidden !important;
    }

    .loc-slide {
        position: absolute !important;
        inset: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        background: #000 !important;
    }

    .loc-img {
        height: 350px !important;
        width: 100% !important;
        object-fit: cover !important;
        position: relative !important;
        flex-shrink: 0 !important;
        display: block !important;
        border-radius: 20px 20px 0 0 !important;
    }

    .loc-overlay-player {
        position: relative !important;
        inset: auto !important;
        flex: 1 !important; /* Take remaining space */
        width: 100% !important;
        background: #000 !important;
        padding: 40px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .loc-overlay-player h3 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
        color: var(--gold) !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .loc-overlay-player p {
        font-size: 1.1rem !important;
        color: #fff !important;
        line-height: 1.6 !important;
        opacity: 1 !important;
        transform: none !important;
        max-width: 100% !important;
    }

    .loc-tag-player {
        display: none !important;
    }

    .loc-nav-btns {
        position: absolute !important;
        top: 320px !important; /* Put them near the image bottom */
        left: 0 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        padding: 0 15px !important;
        z-index: 100 !important;
        transform: none !important;
    }

    .loc-nav-btns button {
        width: 50px !important;
        height: 50px !important;
        background: rgba(0,0,0,0.6) !important;
        border: 1px solid var(--gold) !important;
        color: var(--gold) !important;
        border-radius: 50% !important;
        backdrop-filter: blur(10px) !important;
    }
}
