/* ==========================================================================
   MANESTREAM S.A.S.S. - BADASS SALON DESIGN SYSTEM
   Hot pink, jet black, neon glows, and pure attitude
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Colors - Hot Pink Primary */
    --primary: #ff2d7b;
    --primary-dark: #d91a63;
    --primary-light: #ff6fa3;
    --primary-glow: rgba(255, 45, 123, 0.5);
    --primary-subtle: rgba(255, 45, 123, 0.08);

    /* Colors - Deep Black Secondary */
    --secondary: #0a0a0a;
    --secondary-dark: #000000;

    /* Colors - Neutrals */
    --dark: #0a0a0f;
    --dark-lighter: #141420;
    --gray-900: #1a1a2e;
    --gray-800: #2a2a3e;
    --gray-700: #4a4a5e;
    --gray-600: #6a6a7e;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gray-100: #f8fafc;
    --white: #ffffff;

    /* Colors - Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --star: #fbbf24;

    /* Typography */
    --font-heading: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;
    --font-size-8xl: 6rem;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;

    --line-height-tight: 1.0;
    --line-height-snug: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    --section-padding: 6rem;

    /* Borders */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px var(--primary-glow);
    --shadow-neon: 0 0 10px var(--primary-glow), 0 0 40px rgba(255, 45, 123, 0.2), 0 0 80px rgba(255, 45, 123, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-dramatic: 600ms cubic-bezier(0.23, 1, 0.32, 1);

    /* Z-Index Scale */
    --z-dropdown: 50;
    --z-sticky: 100;
    --z-fixed: 200;
    --z-modal: 300;
    --z-tooltip: 400;
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --------------------------------------------------------------------------
   LAYOUT
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding) 0;
}

.section--dark {
    background-color: var(--dark);
    color: var(--white);
}

.section--dark .section__subtitle,
.section--dark p {
    color: var(--gray-400);
}

/* Section Headers */
.section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-5xl));
    font-weight: var(--font-weight-normal);
    letter-spacing: 0.05em;
    line-height: var(--line-height-tight);
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.section--dark .section__title {
    color: var(--white);
}

.section__subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn svg {
    flex-shrink: 0;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 0 0 var(--primary-glow);
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-neon);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary-light);
    box-shadow: 0 0 20px rgba(255, 45, 123, 0.15);
}

.btn--lg {
    padding: 1.125rem 2.25rem;
    font-size: var(--font-size-lg);
}

/* For light sections */
.section:not(.section--dark) .btn--outline {
    color: var(--dark);
    border-color: var(--gray-300);
}

.section:not(.section--dark) .btn--outline:hover {
    background: var(--primary-subtle);
    border-color: var(--primary);
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 1px rgba(255, 45, 123, 0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-normal);
    letter-spacing: 0.1em;
    color: var(--white);
}

.nav__menu {
    display: flex;
    gap: var(--space-xl);
}

.nav__link {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
    box-shadow: 0 0 8px var(--primary-glow);
}

.nav__link:hover {
    color: var(--white);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    padding: 0.625rem 1.25rem;
    font-size: var(--font-size-sm);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: var(--z-fixed);
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark);
    padding: var(--space-3xl) var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition-dramatic);
    z-index: var(--z-modal);
    box-shadow: var(--shadow-2xl);
    border-left: 1px solid rgba(255, 45, 123, 0.2);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: 0;
}

/* Mobile Menu Header Branding */
.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 45, 123, 0.2);
    margin-bottom: var(--space-lg);
}

.mobile-menu__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.mobile-menu__logo-img {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--primary);
}

.mobile-menu__logo span {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-normal);
    color: var(--white);
    font-size: var(--font-size-lg);
    letter-spacing: 0.05em;
}

.mobile-menu__close {
    position: static;
    padding: var(--space-sm);
    color: var(--white);
}

.mobile-menu__list {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--gray-400);
}

.mobile-menu__link {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--primary);
    padding-left: var(--space-sm);
}

.mobile-menu__cta {
    margin-top: var(--space-2xl);
    width: 100%;
    justify-content: center;
}

/* Mobile Menu Overlay */
.mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.mobile-menu.active::before {
    opacity: 1;
    pointer-events: auto;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a1a 40%, #1a0a15 70%, #0a0a0a 100%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.25;
    mix-blend-mode: luminosity;
}

.hero__particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.shape--1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -250px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.shape--2 {
    width: 500px;
    height: 500px;
    background: #4a0020;
    bottom: -200px;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

.shape--3 {
    width: 350px;
    height: 350px;
    background: var(--primary-dark);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(40px, -40px) rotate(5deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(-5deg);
    }
    75% {
        transform: translate(15px, 50px) rotate(3deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.4;
    }
}

.hero__content {
    position: relative;
    text-align: center;
    padding: var(--space-5xl) 0;
    max-width: 900px;
}

.hero__badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 45, 123, 0.1);
    border: 1px solid rgba(255, 45, 123, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--primary-light);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero__title {
    margin-bottom: var(--space-xl);
}

.hero__title-line {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(var(--font-size-5xl), 10vw, var(--font-size-8xl));
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-tight);
    color: var(--white);
    letter-spacing: 0.05em;
}

.hero__title-line--accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #ff9ec7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 45, 123, 0.4));
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 45, 123, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(255, 45, 123, 0.6));
    }
}

.hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: var(--line-height-relaxed);
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* --------------------------------------------------------------------------
   MARQUEE
   -------------------------------------------------------------------------- */
.marquee {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    padding: var(--space-lg) 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 30px rgba(255, 45, 123, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.15);
}

.marquee__track {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee__item {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: var(--font-weight-normal);
    letter-spacing: 0.2em;
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.marquee__separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-xl);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --------------------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------------------- */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.about__image-accent {
    position: absolute;
    top: var(--space-xl);
    left: var(--space-xl);
    right: calc(var(--space-xl) * -1);
    bottom: calc(var(--space-xl) * -1);
    background: linear-gradient(135deg, var(--primary) 0%, #4a0020 100%);
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0.3;
}

.about__content .section__label {
    text-align: left;
}

.about__content .section__title {
    text-align: left;
}

.about__text {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-relaxed);
}

.about__stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--gray-200);
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-normal);
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.05em;
}

.stat__label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--gray-500);
    margin-top: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   SERVICES
   -------------------------------------------------------------------------- */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    position: relative;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 45, 123, 0.1);
    border-radius: var(--radius-xl);
    transition: all var(--transition-dramatic);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 45, 123, 0.05);
    border-color: rgba(255, 45, 123, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 45, 123, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    color: var(--white);
    box-shadow: 0 0 20px rgba(255, 45, 123, 0.3);
    transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
    box-shadow: 0 0 30px rgba(255, 45, 123, 0.5);
    transform: scale(1.1);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-normal);
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.service-card__desc {
    font-size: var(--font-size-sm);
    color: var(--gray-400);
    line-height: var(--line-height-relaxed);
}

/* --------------------------------------------------------------------------
   GALLERY
   -------------------------------------------------------------------------- */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.gallery__item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 45, 123, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    color: var(--white);
}

.gallery__item:hover img {
    transform: scale(1.15);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    color: var(--white);
    padding: var(--space-sm);
    transition: all var(--transition-fast);
}

.lightbox__close:hover {
    transform: scale(1.1);
    color: var(--primary);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    padding: var(--space-md);
    transition: all var(--transition-fast);
}

.lightbox__nav:hover {
    transform: translateY(-50%) scale(1.1);
    color: var(--primary);
}

.lightbox__nav--prev {
    left: var(--space-xl);
}

.lightbox__nav--next {
    right: var(--space-xl);
}

.lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox__image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* --------------------------------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 45, 123, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-dramatic);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 8rem;
    color: rgba(255, 45, 123, 0.05);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 45, 123, 0.05);
    border-color: rgba(255, 45, 123, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card__stars {
    display: flex;
    gap: var(--space-xs);
    color: var(--star);
    margin-bottom: var(--space-lg);
}

.testimonial-card__quote {
    font-size: var(--font-size-base);
    font-style: italic;
    color: var(--gray-300);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-lg);
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-weight: var(--font-weight-bold);
    color: var(--white);
}

.testimonial-card__title {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.testimonials__disclaimer {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-top: var(--space-2xl);
    font-style: italic;
}

/* --------------------------------------------------------------------------
   CONTACT
   -------------------------------------------------------------------------- */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact__card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.contact__card:hover {
    background: var(--white);
    border-color: rgba(255, 45, 123, 0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(255, 45, 123, 0.1);
}

.contact__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    color: var(--white);
    flex-shrink: 0;
}

.contact__details h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-normal);
    letter-spacing: 0.05em;
    color: var(--dark);
    margin-bottom: var(--space-xs);
}

.contact__details p,
.contact__details a {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: var(--line-height-relaxed);
}

.contact__details a:hover {
    color: var(--primary);
}

.contact__cta {
    display: flex;
    align-items: center;
}

.contact__cta-content {
    padding: var(--space-3xl);
    background: linear-gradient(135deg, var(--dark) 0%, #1a0a15 50%, var(--dark-lighter) 100%);
    border-radius: var(--radius-2xl);
    text-align: center;
    border: 1px solid rgba(255, 45, 123, 0.15);
}

.contact__cta-content h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-normal);
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.contact__cta-content p {
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
}

.section .contact__cta-content .btn--outline {
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.section .contact__cta-content .btn--outline:hover {
    background: rgba(255, 45, 123, 0.1) !important;
    border-color: var(--primary) !important;
    color: var(--primary-light) !important;
}

.contact__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid rgba(255, 45, 123, 0.1);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-normal);
    letter-spacing: 0.1em;
    color: var(--white);
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer__tagline {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 45, 123, 0.4);
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-normal);
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a {
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}

.footer__links a:hover {
    color: var(--primary);
    padding-left: var(--space-xs);
}

.footer__contact p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-sm);
    line-height: var(--line-height-relaxed);
}

.footer__contact a:hover {
    color: var(--primary);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    font-size: var(--font-size-sm);
}

.footer__credit a {
    color: var(--primary-light);
}

.footer__credit a:hover {
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   MOBILE BOTTOM BAR
   -------------------------------------------------------------------------- */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-sm);
    z-index: var(--z-fixed);
    border-top: 1px solid rgba(255, 45, 123, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-bar__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    text-align: center;
    padding: var(--space-md);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-bar__btn--secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-light);
}

/* --------------------------------------------------------------------------
   ANIMATIONS & REVEALS
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger effect for grids */
.services__grid .reveal:nth-child(1) { transition-delay: 0.1s; }
.services__grid .reveal:nth-child(2) { transition-delay: 0.2s; }
.services__grid .reveal:nth-child(3) { transition-delay: 0.3s; }
.services__grid .reveal:nth-child(4) { transition-delay: 0.4s; }
.services__grid .reveal:nth-child(5) { transition-delay: 0.5s; }
.services__grid .reveal:nth-child(6) { transition-delay: 0.6s; }

.testimonials__grid .reveal:nth-child(1) { transition-delay: 0.1s; }
.testimonials__grid .reveal:nth-child(2) { transition-delay: 0.2s; }
.testimonials__grid .reveal:nth-child(3) { transition-delay: 0.3s; }

.gallery__grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.gallery__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.gallery__grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.gallery__grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.gallery__grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.gallery__grid .reveal:nth-child(6) { transition-delay: 0.3s; }

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 4rem;
    }

    .about__grid {
        gap: var(--space-3xl);
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid .testimonial-card:nth-child(3) {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem;
        --container-padding: 1.25rem;
    }

    .nav__menu,
    .nav__cta {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .logo-text {
        font-size: clamp(0.9rem, 4vw, 1.3rem);
        white-space: nowrap;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about__image {
        order: -1;
    }

    .about__content .section__label,
    .about__content .section__title {
        text-align: center;
    }

    .about__text {
        text-align: center;
    }

    .about__stats {
        justify-content: center;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .testimonials__grid .testimonial-card:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__buttons {
        flex-direction: column;
    }

    .contact__buttons .btn {
        width: 100%;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__tagline {
        margin: 0 auto;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .lightbox__nav--prev {
        left: var(--space-md);
    }

    .lightbox__nav--next {
        right: var(--space-md);
    }

    /* Show mobile bottom bar */
    .mobile-bar {
        display: flex;
    }

    /* Add padding to footer so bottom bar doesn't cover it */
    .footer {
        padding-bottom: 5rem;
    }

    .marquee__item {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .section__title {
        font-size: var(--font-size-3xl);
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .about__stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .btn--lg {
        padding: 0.875rem 1.5rem;
        font-size: var(--font-size-base);
    }

    .hero__title-line {
        font-size: clamp(var(--font-size-4xl), 12vw, var(--font-size-6xl));
    }
}
