/* ========================================
   MIMOSA - Coiffure Esthétique Beauty
   Style Institut - Violet & Rose Prune
   ======================================== */

:root {
    /* Primary Colors - Rose Prune Institut */
    --gold: #9B2D6B;
    --gold-light: #C77DAA;
    --gold-dark: #6B1D4B;
    --gold-shine: #F5D0E8;
    --gold-gradient: linear-gradient(135deg, #6B1D4B 0%, #9B2D6B 25%, #C75D9A 50%, #9B2D6B 75%, #6B1D4B 100%);
    --gold-shimmer: linear-gradient(90deg, #6B1D4B, #9B2D6B, #C75D9A, #9B2D6B, #6B1D4B);
    --violet: #6B3D7B;
    --violet-light: #A87DB8;
    --violet-dark: #4B2D5B;
    --violet-shine: #E8D0F0;

    /* Background Colors - Soft Pink */
    --cream: #FDF8FA;
    --cream-light: #FFFFFF;
    --cream-dark: #F5E8F0;
    --marble-bg: linear-gradient(135deg, #FDF8FA 0%, #FFFFFF 25%, #FAF0F5 50%, #FFFFFF 75%, #FDF8FA 100%);

    /* Text Colors */
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;

    /* Accent Colors */
    --white: #FFFFFF;
    --black: #0A0A0A;
    --rose-gold: #B76E79;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', Arial, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(180deg, #FFFFFF 0%, #FDF5F8 30%, #FAF0F5 60%, #F8E8F0 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* Violet & Rose sparkles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image:
        radial-gradient(3px 3px at 100px 150px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 300px 100px, rgba(155, 45, 107, 0.4), transparent),
        radial-gradient(3px 3px at 500px 300px, rgba(107, 61, 123, 0.5), transparent),
        radial-gradient(2px 2px at 200px 400px, rgba(199, 125, 170, 0.5), transparent),
        radial-gradient(3px 3px at 700px 200px, rgba(168, 125, 184, 0.5), transparent),
        radial-gradient(2px 2px at 400px 500px, rgba(155, 45, 107, 0.4), transparent),
        radial-gradient(3px 3px at 600px 450px, rgba(107, 61, 123, 0.4), transparent),
        radial-gradient(2px 2px at 150px 550px, rgba(199, 125, 170, 0.5), transparent);
    background-size: 800px 600px;
    animation: blendedSparkle 3s ease-in-out infinite;
}

@keyframes blendedSparkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}



h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-dark);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, #6B1D4B 0%, #6B3D7B 20%, #9B2D6B 40%, #8B4D9B 60%, #C75D9A 80%, #A87DB8 100%);
    background-size: 300% 300%;
    color: var(--white);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #9B2D6B, #6B3D7B) 1;
    box-shadow: 0 4px 15px rgba(155, 45, 107, 0.4), 0 4px 15px rgba(107, 61, 123, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: blendedBtn 4s ease-in-out infinite;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(107, 29, 75, 0.1) 0%, rgba(107, 61, 123, 0.1) 50%, rgba(155, 45, 107, 0.1) 100%);
    color: #6B1D4B;
    box-shadow: 0 4px 20px rgba(155, 45, 107, 0.4), 0 4px 20px rgba(107, 61, 123, 0.3), inset 0 0 20px rgba(199, 125, 170, 0.1);
    border-image: linear-gradient(135deg, #6B1D4B, #6B3D7B, #9B2D6B) 1;
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--white);
}

/* Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(253, 245, 250, 0.98) 50%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 2px 30px rgba(155, 45, 107, 0.1), 0 2px 30px rgba(107, 61, 123, 0.1);
    backdrop-filter: blur(10px);
}

.nav {
    padding: 20px 0;
}

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

.nav-logo img {
    height: 60px;
    transition: var(--transition);
}

.header.scrolled .nav-logo img {
    height: 50px;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu-header,
.nav-menu-footer {
    display: none;
}

.nav-menu-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
}

.header.scrolled .nav-menu-links a {
    color: var(--text-dark);
}

.nav-menu-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-menu-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.header.scrolled .nav-toggle span {
    background-color: var(--text-dark);
}

.nav-overlay {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(155, 45, 107, 0.2) 0%, rgba(75, 45, 91, 0.25) 100%);
    z-index: 1;
}

.carousel-indicators {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicators .indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.carousel-indicators .indicator.active {
    background: linear-gradient(135deg, #9B2D6B 0%, #6B3D7B 50%, #C75D9A 100%);
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    z-index: 5;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo img {
    max-width: 300px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-date {
    font-size: 14px;
    color: var(--gold-shine);
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid;
    border-image: linear-gradient(180deg, #9B2D6B 0%, #6B3D7B 50%, #C75D9A 100%) 1;
    border-radius: 10px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #9B2D6B, #6B3D7B);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

/* Services Banner */
.services-banner {
    background: linear-gradient(135deg, #4B2D5B 0%, #6B1D4B 15%, #6B3D7B 30%, #9B2D6B 45%, #8B4D9B 60%, #C75D9A 75%, #A87DB8 90%, #6B3D7B 100%);
    background-size: 300% 300%;
    animation: blendedBanner 5s ease-in-out infinite;
    padding: 22px 0;
    overflow: hidden;
    position: relative;
    margin-top: 0;
    box-shadow: 0 4px 30px rgba(155, 45, 107, 0.3), 0 4px 30px rgba(107, 61, 123, 0.3);
}

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

.banner-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.banner-content {
    display: flex;
    gap: 60px;
    padding-right: 60px;
}

.banner-content span {
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
}

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

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

/* Section Styles */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
    background: linear-gradient(90deg, #6B1D4B, #6B3D7B, #9B2D6B, #A87DB8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.section-title {
    font-size: 60px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ornament {
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #6B1D4B 0%, #6B3D7B 25%, #9B2D6B 50%, #A87DB8 75%, #C75D9A 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(155, 45, 107, 0.3), 0 2px 10px rgba(107, 61, 123, 0.3);
}

/* About Section */
.about {
    background: linear-gradient(180deg, #FFFFFF 0%, #FDF8FA 50%, #FAF0F5 100%);
    position: relative;
    overflow: hidden;
}


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

.about-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
    font-size: 16px;
}

.about-text strong {
    color: var(--gold);
}

.about-features {
    display: grid;
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #4B2D5B 0%, #6B1D4B 20%, #6B3D7B 40%, #9B2D6B 60%, #8B4D9B 80%, #C75D9A 100%);
    background-size: 300% 300%;
    animation: blendedFeature 5s ease-in-out infinite;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 20px rgba(155, 45, 107, 0.25), 0 4px 20px rgba(107, 61, 123, 0.25);
}

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

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(155, 45, 107, 0.4), 0 15px 40px rgba(107, 61, 123, 0.3);
}

.feature-icon {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #FAFAFA 0%, #FDF5F8 50%, #FAF0F5 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6B1D4B, #6B3D7B, #9B2D6B, #A87DB8, transparent);
}

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

.service-card {
    background: #FFFFFF;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(155, 45, 107, 0.2);
    box-shadow: 0 4px 20px rgba(155, 45, 107, 0.08), 0 4px 20px rgba(107, 61, 123, 0.08);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #6B1D4B 0%, #6B3D7B 25%, #9B2D6B 50%, #A87DB8 75%, #C75D9A 100%);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: transparent;
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(155, 45, 107, 0.2), 0 25px 50px rgba(107, 61, 123, 0.2);
}

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

.service-image {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-card ul {
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-medium);
    border-bottom: 1px solid var(--cream-dark);
    position: relative;
    padding-left: 20px;
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 8px;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(180deg, #FFFFFF 0%, #FDF8FA 50%, #FAF0F5 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #A87DB8, #9B2D6B, #6B3D7B, #6B1D4B, transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 20px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: linear-gradient(180deg, #C75D9A 0%, #A87DB8 20%, #6B1D4B 40%, #6B3D7B 60%, #9B2D6B 80%, #E8D0F0 100%);
    background-size: 100% 200%;
    animation: blendedMirror 4s ease-in-out infinite;
    z-index: 0;
    box-shadow:
        0 15px 40px rgba(155, 45, 107, 0.3),
        0 15px 40px rgba(107, 61, 123, 0.3),
        inset 0 2px 6px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(199, 93, 154, 0.3);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FAFAFA 0%, #F0F0F0 50%, #E8E8E8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    z-index: 2;
    box-shadow: inset 0 5px 25px rgba(0, 0, 0, 0.08);
}

.gallery-placeholder span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    color: var(--gold);
    opacity: 0.8;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.03);
}

/* ========================================
   TARIFS SECTION - LUXURY DESIGN
   ======================================== */

.tarifs-premium {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.tarifs-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #1A1418 0%, #2D1F28 50%, #1A1418 100%);
    z-index: 0;
}

.tarifs-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(155, 45, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(183, 110, 121, 0.06) 0%, transparent 50%);
    opacity: 0.8;
}

.tarifs-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.tarifs-glow-1 {
    width: 500px;
    height: 500px;
    background: #9B2D6B;
    top: -150px;
    left: -150px;
}

.tarifs-glow-2 {
    width: 400px;
    height: 400px;
    background: #B76E79;
    bottom: -100px;
    right: -100px;
}

/* Header */
.tarifs-header {
    position: relative;
    z-index: 1;
    margin-bottom: 70px;
}

.tarifs-subtitle {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #B76E79;
    margin-bottom: 15px;
}

.tarifs-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.tarifs-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.tarifs-ornament span {
    display: block;
    background: linear-gradient(90deg, #6B1D4B, #9B2D6B, #B76E79);
}

.tarifs-ornament span:nth-child(1),
.tarifs-ornament span:nth-child(3) {
    width: 60px;
    height: 1px;
}

.tarifs-ornament span:nth-child(2) {
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
}

/* Menu Container */
.tarifs-menu {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(183, 110, 121, 0.2);
    border-radius: 4px;
    padding: 50px 60px;
    backdrop-filter: blur(10px);
}

.tarifs-menu::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(183, 110, 121, 0.1);
    border-radius: 2px;
    pointer-events: none;
}

/* Category */
.tarifs-category {
    margin-bottom: 45px;
}

.tarifs-category:last-child {
    margin-bottom: 0;
}

.tarifs-category.highlight {
    background: linear-gradient(90deg, rgba(183, 110, 121, 0.05), transparent, rgba(183, 110, 121, 0.05));
    margin-left: -30px;
    margin-right: -30px;
    padding: 25px 30px;
    border-radius: 4px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.category-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183, 110, 121, 0.4), transparent);
}

.category-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: #B76E79;
    white-space: nowrap;
    letter-spacing: 3px;
}

/* Tarif Items */
.tarifs-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tarif-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.tarif-row:hover {
    background: linear-gradient(90deg, rgba(183, 110, 121, 0.03), transparent);
}

.tarif-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
}

.tarif-detail {
    font-size: 13px;
    font-style: italic;
    color: rgba(183, 110, 121, 0.7);
    margin-left: 5px;
}

.tarif-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(183, 110, 121, 0.3);
    min-width: 30px;
    margin-bottom: 5px;
}

.tarif-value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.tarif-value sup {
    font-size: 14px;
    margin-left: 2px;
    color: #B76E79;
}

.tarif-value.from::before {
    content: 'dès ';
    font-size: 12px;
    font-weight: 400;
    color: rgba(183, 110, 121, 0.7);
    letter-spacing: 0;
}

/* Footer */
.tarifs-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(183, 110, 121, 0.2);
}

.tarifs-info {
    margin-bottom: 35px;
}

.tarifs-info p {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    letter-spacing: 0.5px;
    margin: 5px 0;
}

.btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: transparent;
    border: 1px solid #B76E79;
    color: #B76E79;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn-reserve:hover {
    background: #B76E79;
    color: #FFFFFF;
    box-shadow: 0 10px 40px rgba(183, 110, 121, 0.3);
    transform: translateY(-2px);
}

.btn-reserve svg {
    transition: transform 0.3s ease;
}

.btn-reserve:hover svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 900px) {
    .tarifs-premium {
        padding: 80px 0;
    }

    .tarifs-menu {
        padding: 40px 35px;
        margin: 0 15px;
    }

    .tarifs-menu::before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .tarifs-title {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .category-header h3 {
        font-size: 20px;
    }

    .tarif-label {
        font-size: 14px;
    }

    .tarif-value {
        font-size: 20px;
    }

    .tarifs-category.highlight {
        margin-left: -20px;
        margin-right: -20px;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .tarifs-menu {
        padding: 30px 25px;
    }

    .tarifs-title {
        font-size: 36px;
    }

    .tarifs-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .category-header {
        gap: 15px;
    }

    .category-header h3 {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .tarif-row {
        flex-wrap: wrap;
    }

    .tarif-label {
        flex: 1 1 100%;
        margin-bottom: 5px;
    }

    .tarif-dots {
        display: none;
    }

    .tarif-value {
        margin-left: auto;
    }

    .btn-reserve {
        padding: 15px 35px;
        font-size: 12px;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #FFFFFF 0%, #FDF8FA 50%, #FAF0F5 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6B1D4B, #6B3D7B, #9B2D6B, #A87DB8, transparent);
}

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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #6B1D4B 0%, #6B3D7B 25%, #9B2D6B 50%, #A87DB8 75%, #C75D9A 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(155, 45, 107, 0.3), 0 4px 15px rgba(107, 61, 123, 0.3);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.8;
}

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

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A1A1A 0%, #201820 30%, #1A1A1A 50%, #1A181A 70%, #1A1A1A 100%);
    padding: 50px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #6B1D4B 0%, #6B3D7B 20%, #9B2D6B 40%, #A87DB8 60%, #C75D9A 80%, #E8D0F0 100%);
    background-size: 200% 200%;
    animation: shimmer 4s ease-in-out infinite;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo img {
    height: 80px;
    border-radius: 50%;
    opacity: 0.9;
}

.footer-info p {
    font-size: 14px;
    color: var(--cream-dark);
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span {
        background-color: #FFFFFF;
    }

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

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

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

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(180deg, #1A1418 0%, #2D1F28 50%, #1A1418 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
        z-index: 1001;
        overflow-y: auto;
    }

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

    /* Menu Header */
    .nav-menu-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 30px 30px;
        border-bottom: 1px solid rgba(183, 110, 121, 0.2);
    }

    .nav-menu-logo {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
        border: 2px solid rgba(183, 110, 121, 0.3);
    }

    .nav-menu-tagline {
        font-family: var(--font-heading);
        font-size: 12px;
        font-style: italic;
        color: #B76E79;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    /* Menu Links */
    .nav-menu-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        list-style: none;
    }

    .nav-menu-links li {
        border-bottom: 1px solid rgba(183, 110, 121, 0.1);
    }

    .nav-menu-links li:last-child {
        border-bottom: none;
    }

    .nav-menu-links a {
        display: block;
        padding: 18px 35px;
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.85);
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-menu-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background: #B76E79;
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .nav-menu-links a:hover,
    .nav-menu-links a:active {
        color: #FFFFFF;
        background: rgba(183, 110, 121, 0.1);
        padding-left: 45px;
    }

    .nav-menu-links a:hover::before,
    .nav-menu-links a:active::before {
        transform: scaleY(1);
    }

    .nav-menu-links a::after {
        display: none;
    }

    /* Menu Footer */
    .nav-menu-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 30px;
        margin-top: auto;
        border-top: 1px solid rgba(183, 110, 121, 0.2);
    }

    .nav-menu-btn {
        display: block;
        width: 100%;
        padding: 18px 30px;
        background: linear-gradient(135deg, #9B2D6B 0%, #B76E79 100%);
        color: #FFFFFF;
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        text-align: center;
        text-decoration: none;
        border-radius: 4px;
        margin-bottom: 25px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(155, 45, 107, 0.3);
    }

    .nav-menu-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(155, 45, 107, 0.4);
    }

    .nav-menu-contact {
        text-align: center;
    }

    .nav-menu-contact a {
        display: block;
        font-family: var(--font-heading);
        font-size: 20px;
        color: #FFFFFF;
        margin-bottom: 8px;
        letter-spacing: 1px;
    }

    .nav-menu-contact span {
        display: block;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 0.5px;
    }

    /* Rest of mobile styles */
    .section-title {
        font-size: 42px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .hero-logo img {
        max-width: 200px;
    }

    .hero-tagline {
        font-size: 18px;
    }

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

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

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn {
        padding: 14px 30px;
        font-size: 12px;
    }
}

/* ========================================
   Reservation Section
   ======================================== */
.reservation {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.reservation-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #9B2D6B 0%, #6B3D7B 50%, #4B2D5B 100%);
    z-index: -1;
}

.reservation-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.reservation-glow-1 {
    width: 400px;
    height: 400px;
    background: #ffffff;
    top: -100px;
    left: -100px;
    animation: glowPulse 8s ease-in-out infinite;
}

.reservation-glow-2 {
    width: 350px;
    height: 350px;
    background: #C75D9A;
    bottom: -100px;
    right: -50px;
    opacity: 0.4;
    animation: glowPulse 8s ease-in-out infinite reverse;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

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

.reservation-content {
    color: var(--white);
}

.reservation-content .section-subtitle {
    background: rgba(199, 93, 154, 0.3);
    color: #ffffff;
    border: 1px solid rgba(199, 93, 154, 0.5);
}

.reservation-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0;
    color: var(--white);
}

.highlight-rose {
    background: linear-gradient(135deg, #E8A0B8 0%, #C75D9A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reservation-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 35px;
}

.reservation-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reservation-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reservation-feature .feature-icon svg {
    stroke: #E8A0B8;
}

.reservation-feature .feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reservation-feature .feature-text strong {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.reservation-feature .feature-text span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.reservation-cta-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.cta-card-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FAF0F5 0%, #FDF5F8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(155, 45, 107, 0.1);
}

.cta-icon svg {
    stroke: #9B2D6B;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #4B2D5B;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #6B3D7B;
    margin-bottom: 30px;
}

.btn-reservation {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #9B2D6B 0%, #6B3D7B 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(155, 45, 107, 0.3);
}

.btn-reservation:hover {
    background: linear-gradient(135deg, #6B1D4B 0%, #4B2D5B 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(155, 45, 107, 0.5);
}

.btn-reservation svg {
    stroke: #ffffff;
    transition: transform 0.3s ease;
}

.btn-reservation:hover svg {
    stroke: #ffffff;
    transform: translateX(5px);
}

/* Planity Modal */
.planity-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.planity-modal.active {
    display: flex;
}

.planity-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

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

.planity-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease;
}

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

.planity-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    border: none;
    background: #FAF0F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.planity-modal-close:hover {
    background: #E8A0B8;
    transform: rotate(90deg);
}

.planity-modal-close svg {
    color: #9B2D6B;
}

.planity-modal-header {
    text-align: center;
    padding: 25px 20px 15px;
    border-bottom: 1px solid #FAF0F5;
}

.planity-modal-logo {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}

.planity-modal-header p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #6B3D7B;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.planity-embed {
    background: var(--white);
    overflow: hidden;
}

.planity-embed iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Reservation Responsive */
@media (max-width: 992px) {
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reservation-title {
        font-size: 2rem;
    }

    .reservation-text {
        font-size: 1rem;
    }

    .reservation-cta-card {
        padding: 35px 25px;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .btn-reservation {
        padding: 15px 30px;
        font-size: 0.95rem;
    }

    .reservation-glow {
        opacity: 0.2;
    }

    .reservation-glow-1 {
        width: 200px;
        height: 200px;
    }

    .reservation-glow-2 {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .planity-embed iframe {
        height: 500px;
    }

    .planity-modal {
        padding: 10px;
    }

    .planity-modal-content {
        max-height: 95vh;
        border-radius: 15px;
    }

    .planity-modal-header {
        padding: 20px 15px 10px;
    }

    .planity-modal-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .reservation {
        padding: 60px 0;
    }

    .reservation-title {
        font-size: 1.6rem;
    }

    .planity-embed iframe {
        height: 450px;
    }
}

/* Fidelite Section */
.fidelite {
    background: linear-gradient(180deg, #FAFAFA 0%, #FDF5F8 50%, #FAF0F5 100%);
    position: relative;
}

.fidelite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #9B2D6B, #A87DB8, #6B1D4B, #6B3D7B, transparent);
}

.fidelite-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fidelite-info .section-subtitle,
.fidelite-info .section-title,
.fidelite-info .ornament {
    text-align: left;
    margin-left: 0;
}

.fidelite-desc {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin: 30px 0 40px;
}

.fidelite-benefits {
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6B1D4B 0%, #6B3D7B 25%, #9B2D6B 50%, #A87DB8 75%, #C75D9A 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(155, 45, 107, 0.3), 0 4px 15px rgba(107, 61, 123, 0.3);
}

.benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.benefit-text p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Loyalty Card Premium */
.fidelite-card-container {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.loyalty-card-premium {
    width: 420px;
    height: 260px;
    background: linear-gradient(135deg, #1A1418 0%, #2D1F28 40%, #1A1418 100%);
    border-radius: 16px;
    position: relative;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(183, 110, 121, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.loyalty-card-premium:hover {
    transform: rotateY(0) rotateX(0);
}

.card-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        135deg,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 55%,
        transparent 70%
    );
    animation: cardShineMove 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cardShineMove {
    0%, 100% { transform: translate(-30%, -30%); }
    50% { transform: translate(10%, 10%); }
}

.card-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(183, 110, 121, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Card Top */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.card-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(183, 110, 121, 0.4);
}

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

.card-brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 3px;
}

.card-brand-type {
    font-size: 10px;
    color: #B76E79;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.card-chip {
    width: 45px;
    height: 35px;
}

.card-chip svg {
    width: 100%;
    height: 100%;
}

/* Card Middle */
.card-middle {
    text-align: center;
}

.card-number {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.4);
}

/* Card Bottom */
.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-holder {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.card-member-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.card-points-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.card-points-value {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: #B76E79;
    line-height: 1;
}

.card-points-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold);
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modal-desc {
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-desc strong {
    color: var(--gold);
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--cream-dark);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

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

#fidelite-form .btn {
    width: 100%;
    margin-top: 10px;
}

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

    .fidelite-info .section-subtitle,
    .fidelite-info .section-title,
    .fidelite-info .ornament {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .fidelite-desc {
        text-align: center;
    }

    .fidelite-benefits {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .fidelite-info .btn {
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .loyalty-card-premium {
        width: 100%;
        max-width: 340px;
        height: 210px;
        transform: none;
    }

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

    .card-content {
        padding: 22px 24px;
    }

    .card-logo-img {
        width: 40px;
        height: 40px;
    }

    .card-brand-name {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .card-chip {
        width: 38px;
        height: 28px;
    }

    .card-number {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .card-member-name {
        font-size: 12px;
    }

    .card-points-value {
        font-size: 28px;
    }

    .modal-content {
        padding: 30px;
    }

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