/* 
   Advibe Stüdyo - Premium Landing Page Styles 
   Colors: Anthracite (bg), Burgundy (accent/primary), Cream (text)
*/

:root {
    --bg-dark: #16181b;     /* Anthracite Base */
    --bg-darker: #0d0f12;   /* Deep Anthracite */
    --primary: #9b111e;     /* Burgundy */
    --primary-hover: #7a0d16;
    --text-cream: #f9f6e6;  /* Cream */
    --text-muted: rgba(249, 246, 230, 0.7);
    --glass-bg: rgba(22, 24, 27, 0.6);
    --glass-border: rgba(249, 246, 230, 0.1);
    
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* RESETS & GLOBALS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-cream);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-cream);
    box-shadow: 0 4px 15px rgba(155, 17, 30, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 17, 30, 0.6);
}

.btn-secondary {
    background-color: var(--text-cream);
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(249, 246, 230, 0.2);
}

.btn-secondary:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 246, 230, 0.4);
}

.btn-outline {
    border: 2px solid var(--text-cream);
    color: var(--text-cream);
    padding: 10px 24px;
}

.btn-outline:hover {
    background-color: var(--text-cream);
    color: var(--bg-darker);
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 15, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 40px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links li:not(.nav-cta) a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-cream);
    transition: var(--transition);
}

/* SECTION TYPOGRAPHY */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(90deg, var(--text-cream) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 1. HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 50px;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(155, 17, 30, 0.4) 0%, rgba(22, 24, 27, 0) 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video, .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 15, 18, 0.95) 0%, rgba(13, 15, 18, 0.7) 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    z-index: 2;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    animation: fadeInUp 1s ease forwards;
}

.hero-badge {
    display: inline-block;
    background: rgba(155, 17, 30, 0.15);
    border: 1px solid rgba(155, 17, 30, 0.3);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(155, 17, 30, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(to right, #ffffff, var(--text-cream));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-title-small {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    -webkit-text-fill-color: var(--primary); /* Override gradient for this span */
    display: inline-block;
    margin-top: 20px;
    padding: 8px 25px;
    background: rgba(155, 17, 30, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(155, 17, 30, 0.4);
    position: relative;
    overflow: hidden;
    animation: neonPulse 1.5s infinite alternate;
    box-shadow: 0 0 10px rgba(155, 17, 30, 0.3), inset 0 0 10px rgba(155, 17, 30, 0.1);
}

@keyframes neonPulse {
    0% {
        box-shadow: 0 0 10px rgba(155, 17, 30, 0.3), inset 0 0 10px rgba(155, 17, 30, 0.1);
        text-shadow: 0 0 5px rgba(155, 17, 30, 0.5);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 25px rgba(155, 17, 30, 0.8), inset 0 0 15px rgba(155, 17, 30, 0.4);
        text-shadow: 0 0 15px rgba(155, 17, 30, 0.9), 0 0 30px rgba(155, 17, 30, 0.6);
        transform: scale(1.03);
    }
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.pulse-btn {
    position: relative;
    animation: pulseGlow 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(155, 17, 30, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(155, 17, 30, 0); }
}

/* HERO VISUALS & FLOATING CARDS */
.hero-visuals {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    width: 280px;
    height: 480px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.05);
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-inner {
    text-align: center;
    padding: 30px;
}

.video-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #fff;
    padding-left: 5px; /* Visual center for play icon */
    box-shadow: 0 10px 20px rgba(155, 17, 30, 0.4);
}

.card-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-cream);
}

.card-left {
    left: 10%;
    top: 10%;
    transform: rotate(-5deg);
    background: linear-gradient(135deg, rgba(22, 24, 27, 0.8) 0%, rgba(155, 17, 30, 0.2) 100%);
}

.card-right {
    right: 0%;
    top: 5%;
    transform: rotate(8deg);
    background: linear-gradient(135deg, rgba(22, 24, 27, 0.8) 0%, rgba(249, 246, 230, 0.1) 100%);
    animation-delay: -3s;
}

.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: -3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50% { transform: translateY(-20px) rotate(var(--rot, 0deg)); }
}

.card-left { --rot: -5deg; }
.card-right { --rot: 8deg; }

/* 1.5 TRUSTED BRANDS MARQUEE */
.trusted-brands-section {
    padding: 40px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.brands-marquee-wrapper {
    display: flex;
    white-space: nowrap;
    position: relative;
}

/* Fade effects on edges */
.brands-marquee-wrapper::before,
.brands-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.brands-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.brands-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.brands-marquee {
    display: flex;
    animation: scrollBrands 25s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-right: 50px;
    gap: 50px;
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 2px;
    opacity: 0.5;
    transition: var(--transition);
}

.brand-item:hover {
    color: var(--text-cream);
    opacity: 1;
}

.separator {
    color: var(--primary);
    font-size: 1.2rem;
    opacity: 0.8;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* STATS BAND */
.stats-band {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    border-right: 1px solid var(--glass-border);
}
.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
}


/* 2. HOW IT WORKS */
.how-it-works-section {
    padding: 120px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 40px;
}

/* Connecting line */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(155,17,30,0) 0%, rgba(155,17,30,0.5) 50%, rgba(155,17,30,0) 100%);
    z-index: 0;
}

@media (max-width: 1024px) {
    .steps-grid::before { display: none; }
}

.step-card {
    background: rgba(22, 24, 27, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 50px 20px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.step-card:hover {
    transform: translateY(-15px);
    border-color: rgba(155, 17, 30, 0.5);
    box-shadow: 0 20px 40px rgba(155, 17, 30, 0.2);
    background: rgba(30, 32, 36, 0.8);
}

.step-num {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #d81b2a 100%);
    color: var(--text-cream);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(155, 17, 30, 0.4);
    border: 4px solid var(--bg-dark);
    z-index: 2;
    transition: transform 0.3s ease;
}

.step-card:hover .step-num {
    transform: translateX(-50%) scale(1.1);
}

/* Subtle background number */
.step-card::before {
    content: attr(data-step);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7rem;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    z-index: -1;
    pointer-events: none;
    transition: color 0.3s ease;
}

.step-card:hover::before {
    color: rgba(155, 17, 30, 0.05);
}

.step-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-cream);
    line-height: 1.4;
    margin-top: 10px;
}

.trust-badge {
    text-align: center;
    margin-top: 60px;
    padding: 15px 30px;
    background: rgba(155, 17, 30, 0.1);
    border: 1px solid rgba(155, 17, 30, 0.2);
    border-radius: 50px;
    display: inline-block;
    color: var(--text-cream);
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(155, 17, 30, 0.1);
}

/* 3. SHOWCASE */
.showcase-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.feature-item {
    background: var(--glass-bg);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    font-weight: 500;
    color: var(--primary);
}

/* === SHOWCASE CAROUSEL === */
.showcase-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 10px;
}

.showcase-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x proximity;   /* proximity: lets JS scrollTo work cleanly */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 60px;
    cursor: grab;
    will-change: scroll-position;
}

.showcase-carousel::-webkit-scrollbar { display: none; }
.showcase-carousel.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }

.showcase-slide {
    flex: 0 0 auto;
    width: clamp(260px, 40vw, 560px);
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: center;
    cursor: pointer;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-slide:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(155, 17, 30, 0.3);
}

.showcase-slide img,
.showcase-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.slide-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    background: rgba(155, 17, 30, 0.85);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    pointer-events: none;
}

.showcase-slide:hover .slide-overlay-icon {
    transform: translate(-50%, -50%) scale(1);
}

.slide-play-icon {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(155, 17, 30, 0.8);
    color: #fff;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 4px;
    pointer-events: none;
}

/* Dummy slide */
.dummy-slide .dummy-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    border: 1px dashed var(--glass-border);
    border-radius: 14px;
}

/* Carousel nav buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(155, 17, 30, 0.85);
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.carousel-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev { left: 8px; }
.carousel-btn-next { right: 8px; }

/* Dot indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.35);
}

/* === LIGHTBOX === */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s ease;
}

.lightbox-overlay.active { display: flex; }

.lightbox-content {
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 0 60px rgba(155, 17, 30, 0.4);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(155, 17, 30, 0.7);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}

.lightbox-nav:hover { background: var(--primary); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .showcase-slide {
        width: clamp(220px, 85vw, 380px);
    }
    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    .showcase-carousel { padding: 10px 48px; }
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}



/* 4. MODELS SECTION */
.models-section {
    padding: 80px 0 60px;
    background-color: var(--bg-dark);
}

/* Models horizontal carousel */
.models-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 16px 0 8px;
}

.models-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x proximity;   /* proximity: lets JS scrollTo work cleanly */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 60px;
    cursor: grab;
    will-change: scroll-position;
}

.models-carousel::-webkit-scrollbar { display: none; }
.models-carousel.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }

/* Each model card: portrait 9:16 + info below */
.model-slide {
    flex: 0 0 auto;
    width: clamp(200px, 30vw, 380px); /* ~2 visible on desktop */
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(155, 17, 30, 0.25);
    border-color: var(--primary);
}

.model-photo-wrap {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #111;
}

.model-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.model-slide:hover .model-photo-wrap img {
    transform: scale(1.04);
}

/* Play button overlay */
.model-play-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    height: 36px;
    padding: 0 16px;
    border-radius: 50px;
    border: none;
    background: rgba(155, 17, 30, 0.9);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
    transition: transform 0.2s ease, background 0.2s;
    z-index: 2;
}

.model-play-btn .btn-text {
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.model-play-btn .btn-icon {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-play-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Model info below photo */
.model-slide-info {
    padding: 16px 18px;
}

.model-slide-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-cream);
}

.model-slide-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Dummy model */
.dummy-photo {
    aspect-ratio: 9 / 16;
    background: var(--glass-bg);
}

.dummy-model-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    opacity: 0.3;
    border: 1px dashed var(--glass-border);
}

/* Model Video Lightbox */
.model-video-lb {
    flex-direction: column;
    gap: 16px;
}

.model-lb-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 92vw;
}

.model-lb-video-wrap video {
    max-width: 88vw;
    max-height: 82vh;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(155,17,30,0.35);
}

.model-lb-name {
    color: var(--text-cream);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

/* UGC Section – same layout as models but slightly different bg */
.ugc-section {
    padding: 80px 0 60px;
    background-color: var(--bg-darker);
}

.ugc-section .section-title {
    margin-bottom: 30px;
}



/* Mobile: single full-width card */
@media (max-width: 768px) {
    .model-slide {
        width: clamp(240px, 80vw, 320px);
    }
    .models-carousel { padding: 10px 48px; }
}



/* 5. PACKAGES SECTION */
.packages-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 40px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.package-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(155, 17, 30, 0.1) 0%, var(--glass-bg) 100%);
    box-shadow: 0 20px 50px rgba(155, 17, 30, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text-cream);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pkg-header {
    text-align: center;
    margin-bottom: 30px;
}

.pkg-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.pkg-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.pkg-features {
    flex-grow: 1;
    margin-bottom: 40px;
}

.pkg-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    padding-left: 30px;
}

.pkg-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.pkg-footer {
    text-align: center;
}

.pkg-alert {
    background: rgba(249, 246, 230, 0.1);
    color: var(--text-cream);
    padding: 8px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.pkg-btn {
    width: 100%;
}

/* 6. CONTACT SECTION */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    max-width: 500px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    line-height: 1.1;
}

.contact-title .highlight {
    color: var(--text-cream);
    text-transform: uppercase;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-list-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-icon {
    color: var(--text-cream);
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-list p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* Form Styles */
.contact-form-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.advibe-form .form-group {
    margin-bottom: 25px;
}

.advibe-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-cream);
}

.advibe-form .form-control {
    width: 100%;
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    color: var(--text-cream);
    padding: 15px 20px;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.advibe-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(155, 17, 30, 0.2);
}

.advibe-form .form-control::placeholder {
    color: rgba(249, 246, 230, 0.3);
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    cursor: pointer;
}

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
}

/* FOOTER */
.site-footer {
    background: var(--bg-dark);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links-col h3, .footer-contact-col h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--primary);
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-email {
    display: inline-block;
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        margin-top: 60px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visuals {
        height: 300px;
        margin-top: 40px;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    .card {
        width: 190px;
        height: 300px;
        position: absolute;
    }
    .card-left { 
        left: 5%; 
        top: 0;
    }
    .card-right { 
        right: 5%; 
        top: 0;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .stat-item {
        border-right: none;
    }
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--bg-dark);
        padding: 20px 0;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        box-sizing: border-box;
        overflow: hidden;
        border-bottom: 1px solid var(--glass-border);
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    .hero-title-small {
        font-size: 1.4rem;
        padding: 5px 12px;
        margin-top: 15px;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    /* Hide floating cards on mobile - they clip into the brands section */
    .hero-visuals {
        display: none;
    }
    .card-text {
        font-size: 1.2rem;
    }
    .stat-number {
        font-size: 2.8rem;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .models-filter {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-info {
        text-align: center;
    }
    .contact-list li {
        text-align: left;
    }
    .contact-form-card {
        padding: 30px 20px;
    }
}
