/* AYANI COIFFURE - Premium Stylesheet */

:root {
    --color-primary: #1a1a1a;
    --color-secondary: #9a5b64;
    --color-gold: #b76e79;
    --color-gold-light: #f4d7d7;
    --color-rose-gold: #b76e79;
    --color-rose-light: #e8c4c4;
    --color-white: #ffffff;
    --color-cream: #fdf8f8;
    --color-gray: #6b6b6b;
    --color-gray-light: #e8e8e8;
    --color-dark: #0d0d0d;

    /* Metallic Rose Gold Gradient */
    --rose-gold-gradient: linear-gradient(135deg, #e8c4c4 0%, #b76e79 25%, #f4d7d7 50%, #b76e79 75%, #9a5b64 100%);
    --rose-gold-shine: linear-gradient(90deg, #9a5b64 0%, #b76e79 20%, #f4d7d7 40%, #e8c4c4 50%, #f4d7d7 60%, #b76e79 80%, #9a5b64 100%);
    --rose-gold-text: linear-gradient(135deg, #e8c4c4 0%, #b76e79 30%, #f4d7d7 50%, #b76e79 70%, #9a5b64 100%);
    --rose-gold-border: linear-gradient(135deg, #9a5b64, #b76e79, #f4d7d7, #e8c4c4, #b76e79, #9a5b64);
    --rose-gold-glow: 0 0 20px rgba(183, 110, 121, 0.4), 0 0 40px rgba(183, 110, 121, 0.2);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.15);

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-primary);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

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

/* Metallic Rose Gold Effects */
.metallic-text {
    background: var(--rose-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metallic-btn {
    background: var(--rose-gold-gradient);
    background-size: 200% 200%;
    border: none;
    color: var(--color-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.metallic-btn::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: left 0.5s ease;
}

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

.metallic-btn:hover {
    background-position: 100% 100%;
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.metallic-border {
    border: 2px solid transparent;
    background: linear-gradient(var(--color-white), var(--color-white)) padding-box,
                var(--rose-gold-border) border-box;
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--rose-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-white);
    transition: var(--transition);
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    background: var(--rose-gold-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.navbar.scrolled .logo-text {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-white);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--color-primary);
}

.nav-link:not(.btn-reserve)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-reserve {
    padding: 0.75rem 1.5rem;
    background: var(--rose-gold-gradient);
    background-size: 200% 200%;
    color: var(--color-white) !important;
    font-weight: 600;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-reserve::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: left 0.5s ease;
}

.btn-reserve:hover {
    background-position: 100% 100%;
    box-shadow: 0 6px 25px rgba(183, 110, 121, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: var(--color-white) !important;
    transform: translateY(-2px);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--color-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-date {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.hero-title {
    font-weight: 300;
    letter-spacing: 15px;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 400;
    letter-spacing: 8px;
    background: var(--rose-gold-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s both, shimmer 3s linear infinite;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-gold-light);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-location svg {
    opacity: 0.8;
}

.hero-cta {
    display: block;
    padding: 1.1rem 3.5rem;
    background: var(--rose-gold-gradient);
    background-size: 200% 200%;
    border: none;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 20px rgba(183, 110, 121, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease 0.8s both;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.hero-cta::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: left 0.6s ease;
}

.hero-cta:hover {
    background-position: 100% 100%;
    box-shadow: 0 8px 30px rgba(183, 110, 121, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: var(--color-white);
}

.hero-cta:hover::before {
    left: 100%;
}

/* Hero Video Mobile */
.hero-video-mobile {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.hero-video-mobile .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-mobile .video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh; /* 16:9 aspect ratio height-based */
    height: 100vh;
    min-width: 100vw;
    min-height: 56.25vw; /* 16:9 aspect ratio width-based */
    transform: translate(-50%, -50%);
    border: none;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.hero-video-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-logo-mobile {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(183, 110, 121, 0.5);
}

.hero-video-content h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-mobile {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 4px;
    background: var(--rose-gold-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    margin-bottom: 2rem;
}

.hero-cta-mobile {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--rose-gold-gradient);
    background-size: 200% 200%;
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 20px rgba(183, 110, 121, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid;
    border-image: var(--rose-gold-gradient) 1;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 10px rgba(183, 110, 121, 0.3);
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 6px;
    background: var(--rose-gold-gradient);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
    box-shadow: 0 0 5px rgba(183, 110, 121, 0.5);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--color-cream);
}

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

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-soft), 0 0 15px rgba(183, 110, 121, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: var(--rose-gold-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.feature-icon svg {
    color: #b76e79;
    filter: drop-shadow(0 0 3px rgba(183, 110, 121, 0.4));
}

.feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-video {
    display: flex;
    justify-content: center;
}

.video-frame {
    position: relative;
    padding: 15px;
    width: 100%;
    max-width: 350px;
}

.video-frame::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border: 2px solid transparent;
    border-image: var(--rose-gold-gradient) 1;
    box-shadow: 0 0 15px rgba(183, 110, 121, 0.3);
}

.video-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    border: 2px solid transparent;
    border-image: var(--rose-gold-gradient) 1;
    box-shadow: 0 0 15px rgba(183, 110, 121, 0.3);
}

.video-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(183, 110, 121, 0.2);
}

.video-container iframe {
    border-radius: 4px;
}

.image-frame {
    position: relative;
    padding: 20px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border: 1px solid var(--color-gold);
}

.image-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    border: 1px solid var(--color-gold);
}

.image-placeholder {
    width: 350px;
    height: 450px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d2d2d 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--color-gold);
}

.image-placeholder span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 3px;
}

/* Prestations Section */
.prestations {
    padding: 8rem 0;
}

.prestations-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-gray-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.prestation-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.prestation-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.prestation-card.featured {
    border-color: var(--color-gold);
}

.prestation-card.premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--color-white);
}

.prestation-card.premium .badge {
    background: var(--color-gold);
    color: var(--color-primary);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.1rem;
}

.badge {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    background: var(--color-cream);
    color: var(--color-gray);
    white-space: nowrap;
}

.badge.gold {
    background: var(--rose-gold-gradient);
    background-size: 200% 200%;
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(183, 110, 121, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    animation: shimmer 3s linear infinite;
}

.prestation-card p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.prestation-card.premium p {
    color: rgba(255, 255, 255, 0.7);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-gray);
}

.duration svg {
    opacity: 0.6;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--rose-gold-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.prestation-card.premium .price {
    background: var(--rose-gold-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s linear infinite;
    filter: drop-shadow(0 0 2px rgba(183, 110, 121, 0.3));
}

.btn-book {
    width: 100%;
    padding: 0.875rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-book:hover {
    background: var(--rose-gold-gradient);
    background-size: 200% 200%;
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.4);
}

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

.prestation-card.premium .btn-book {
    background: var(--rose-gold-gradient);
    background-size: 200% 200%;
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.prestation-card.premium .btn-book:hover {
    background-position: 100% 100%;
    box-shadow: 0 6px 20px rgba(183, 110, 121, 0.5);
}

/* Team Section */
.team {
    padding: 8rem 0;
    background: var(--color-cream);
}

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

.team-grid.team-single {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.member-image {
    margin-bottom: 1.5rem;
}

.team-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid transparent;
    background-image: linear-gradient(135deg, var(--color-primary) 0%, #2d2d2d 100%), var(--rose-gold-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 20px rgba(183, 110, 121, 0.3);
    position: relative;
}

.team-placeholder::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--rose-gold-gradient);
    z-index: -1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.team-placeholder svg {
    color: #b76e79;
    filter: drop-shadow(0 0 5px rgba(183, 110, 121, 0.5));
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid transparent;
    background-image: linear-gradient(var(--color-cream), var(--color-cream)), var(--rose-gold-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 20px rgba(183, 110, 121, 0.3);
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-member .role {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member .bio {
    font-size: 0.9rem;
    color: var(--color-gray);
    max-width: 280px;
    margin: 0 auto;
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: var(--color-primary);
    overflow: hidden;
}

.gallery .section-header h2,
.gallery .section-header p {
    color: var(--color-white);
}

.gallery .section-header p {
    opacity: 0.7;
}

.gallery-video-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.gallery-video-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(183, 110, 121, 0.2);
    transition: var(--transition);
}

.gallery-video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(183, 110, 121, 0.3);
}

.gallery-video-item.portrait {
    width: 280px;
    height: 500px;
}

.gallery-video-item.landscape {
    width: 400px;
    height: 300px;
}

.gallery-video-item iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border: none;
    object-fit: cover;
}

/* Legacy gallery styles for placeholder items */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-cream) 0%, #e0dcd5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-placeholder svg {
    color: var(--color-gray);
    opacity: 0.5;
}

.gallery-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gray);
    letter-spacing: 1px;
}

.gallery-placeholder:hover {
    background: var(--color-primary);
}

.gallery-placeholder:hover svg,
.gallery-placeholder:hover span {
    color: var(--color-gold);
    opacity: 1;
}

/* Gallery Social Mobile Buttons */
.gallery-social-mobile {
    display: none;
    text-align: center;
    margin-top: 2rem;
}

.gallery-social-title {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.gallery-social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
}

.btn-tiktok {
    background: #000000;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    position: relative;
}

.btn-tiktok::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 2px;
    background: linear-gradient(45deg, #25f4ee, #fe2c55);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn-tiktok:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 244, 238, 0.3);
}

/* Booking Section */
.booking {
    padding: 8rem 0;
    background: var(--color-cream);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--color-gray-light);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-light);
    color: var(--color-gray);
    border-radius: 50%;
    font-weight: 600;
    transition: var(--transition);
}

.step.active .step-number,
.step.completed .step-number {
    background: var(--color-gold);
    color: var(--color-primary);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-gray);
    text-align: center;
}

.step.active .step-label {
    color: var(--color-primary);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-step h3 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
}

.selected-service {
    padding: 1.5rem;
    background: var(--color-cream);
    margin-bottom: 1.5rem;
    text-align: center;
}

.selected-service p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.selected-service .service-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.selected-service .service-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 0.75rem;
}

.selected-service .service-details span {
    font-weight: 600;
    color: var(--color-gold);
}

#service-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-gray-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    cursor: pointer;
}

#service-select:focus {
    outline: none;
    border-color: var(--color-gold);
}

.stylist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stylist-grid.stylist-single {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto 2rem;
}

.stylist-card {
    cursor: pointer;
}

.stylist-card input {
    display: none;
}

.stylist-content {
    padding: 2rem 1rem;
    text-align: center;
    border: 2px solid var(--color-gray-light);
    transition: var(--transition);
}

.stylist-card input:checked + .stylist-content {
    border-color: var(--color-gold);
    background: var(--color-cream);
}

.stylist-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stylist-avatar svg {
    color: var(--color-gold);
}

.stylist-avatar.stylist-photo {
    overflow: hidden;
}

.stylist-avatar.stylist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.stylist-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.stylist-content p {
    font-size: 0.8rem;
    color: var(--color-gray);
}

.datetime-container {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.date-picker label,
.time-slots label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

#booking-date {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-gray-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

#booking-date:focus {
    outline: none;
    border-color: var(--color-gold);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.time-slot {
    padding: 0.75rem;
    text-align: center;
    border: 1px solid var(--color-gray-light);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover:not(.unavailable) {
    border-color: var(--color-gold);
}

.time-slot.selected {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-primary);
    font-weight: 600;
}

.time-slot.unavailable {
    background: var(--color-gray-light);
    color: var(--color-gray);
    cursor: not-allowed;
    text-decoration: line-through;
}

.booking-summary {
    padding: 1.5rem;
    background: var(--color-cream);
    margin-bottom: 2rem;
}

.booking-summary h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-gray-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.summary-row span:last-child {
    font-weight: 500;
}

.summary-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--color-gold);
}

.summary-total span:last-child {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    background: var(--rose-gold-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.client-info {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-gray-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-prev {
    background: transparent;
    border: 1px solid var(--color-gray-light);
    color: var(--color-gray);
}

.btn-prev:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-next {
    background: var(--color-primary);
    color: var(--color-white);
    margin-left: auto;
}

.btn-next:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}

.btn-submit {
    background: var(--rose-gold-gradient);
    background-size: 200% 200%;
    color: var(--color-white);
    flex: 1;
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-submit::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: left 0.5s ease;
}

.btn-submit:hover {
    background-position: 100% 100%;
    box-shadow: 0 6px 25px rgba(183, 110, 121, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: var(--color-white);
}

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

/* Loyalty Card Section */
.loyalty {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.loyalty .section-header h2,
.loyalty .section-header p {
    color: var(--color-white);
}

.loyalty .section-header p {
    opacity: 0.7;
}

.loyalty-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.loyalty-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1.6;
    background: var(--rose-gold-gradient);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(183, 110, 121, 0.3);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.loyalty-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: cardShine 3s infinite;
}

@keyframes cardShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.card-brand {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
}

.card-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-points, .card-member {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.points-label, .member-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.points-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.member-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-white);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-number {
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
}

.card-validity {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.loyalty-info {
    color: var(--color-white);
}

.loyalty-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.loyalty-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.loyalty-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(183, 110, 121, 0.2);
    border: 1px solid rgba(183, 110, 121, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon svg {
    color: var(--color-gold);
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

.btn-loyalty {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--rose-gold-gradient);
    background-size: 200% 200%;
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(183, 110, 121, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-loyalty:hover {
    background-position: 100% 100%;
    box-shadow: 0 6px 30px rgba(183, 110, 121, 0.5);
    transform: translateY(-2px);
}

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

/* Contact Section */
.contact {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: 50%;
    flex-shrink: 0;
}

.info-icon svg {
    color: var(--color-gold);
}

.info-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.info-item a {
    color: var(--color-gray);
}

.info-item a:hover {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.social-links a:hover svg {
    color: var(--color-primary);
}

.contact-map {
    overflow: hidden;
}

.contact-map iframe {
    display: block;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--color-gold);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: var(--color-gold);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-white);
    padding: 3rem;
    text-align: center;
    max-width: 450px;
    width: 100%;
    animation: scaleIn 0.3s ease;
}

.modal-icon {
    margin-bottom: 1.5rem;
}

.modal-icon.success svg {
    color: #22c55e;
}

.modal-content h3 {
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-modal {
    padding: 1rem 3rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-modal:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(8px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image,
    .about-video {
        order: -1;
    }

    .video-frame {
        max-width: 300px;
    }

    .image-placeholder {
        width: 300px;
        height: 380px;
    }

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

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

    .gallery-video-grid {
        gap: 1.5rem;
    }

    .gallery-video-item.portrait {
        width: 240px;
        height: 420px;
    }

    .gallery-video-item.landscape {
        width: 340px;
        height: 255px;
    }

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

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

    .loyalty-card {
        margin: 0 auto;
        transform: none;
    }

    .loyalty-card:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll on mobile */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    section {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Hero Video Mobile */
    .hero-video-mobile {
        display: block;
    }

    .hero-content,
    .hero-overlay,
    .scroll-indicator {
        display: none;
    }

    .hero {
        min-height: 100vh;
        height: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--color-primary);
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .booking-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .booking-steps::before {
        display: none;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .gallery-video-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gallery-video-item.desktop-only {
        display: none;
    }

    .gallery-social-mobile {
        display: block;
    }

    .gallery-video-item.portrait {
        width: 85vw;
        max-width: 300px;
        height: 530px;
    }

    .gallery-video-item.landscape {
        width: 85vw;
        max-width: 350px;
        height: 260px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .prestations-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-video-item.portrait {
        width: 90vw;
        max-width: 280px;
        height: 500px;
    }

    .gallery-video-item.landscape {
        width: 90vw;
        max-width: 300px;
        height: 225px;
    }

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

    .booking-container {
        padding: 1.5rem;
    }

    .hero-title {
        letter-spacing: 8px;
    }
}
