/* ===========================
   VARIABLES & RESET
   =========================== */

:root {
    /* Palette Désert Pastel */
    --safran-dark: #8B6FA5;           /* Violet foncé (fleur safran) */
    --safran-red: #C97C5C;            /* Terracotta doux */
    --safran-orange: #D4A574;         /* Saffran pastel */
    --safran-bright: #E6B87D;         /* Saffran clair */
    --safran-accent: #A587BA;         /* Violet pastel */
    --safran-light: #F0E6D8;          /* Sand très clair */
    --safran-brown: #B8956A;          /* Clay */
    
    /* Neutrals (Dark mode) */
    --bg-main: #0b0b0e;
    --bg-secondary: #111116;
    --bg-tertiary: #16161d;
    --text-primary: #f5f6f8;
    --text-secondary: #cfd1d6;
    --text-muted: #9aa0ac;
    --border: #1f2026;
    --white: #FFFFFF;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-heading: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', 'Space Grotesk', system-ui, -apple-system, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-secondary);
    line-height: 1.6;
    background-color: var(--bg-main);
    overflow-x: hidden;
}

p {
    color: var(--text-secondary) !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary) !important;
}

span {
    color: inherit !important;
}

/* Safran text selection highlight */
::selection {
    background: var(--safran-accent);
    color: var(--text-primary) !important;
}

::-moz-selection {
    background: var(--safran-accent);
    color: var(--text-primary) !important;
}

/* Force visibility for all text-containing elements */
.studio-intro {
    color: var(--text-secondary) !important;
}

.feature-item h3 {
    color: var(--text-primary) !important;
}

.feature-item p {
    color: var(--text-muted) !important;
}

.contact-intro {
    color: var(--text-muted) !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 11, 14, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #D4A574, #A587BA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--safran-bright), var(--safran-accent));
    transition: var(--transition-smooth);
}

.nav-menu a:hover {
    color: var(--safran-accent);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Burger Menu Button */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
    transition: var(--transition-smooth);
}

.burger-line {
    width: 100%;
    height: 2px;
    background: var(--safran-bright);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Burger Animation when Active */
.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        flex-direction: column;
        background: rgba(11, 11, 14, 0.98);
        backdrop-filter: blur(12px);
        width: 100%;
        height: 100vh;
        text-align: center;
        padding: 5rem 0 2rem;
        gap: 0;
        border-top: none;
        overflow-y: auto;
        z-index: 1001;
        display: flex !important;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu li {
        margin: 0;
        padding: 1.25rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.3s; }

    .nav-menu a {
        font-size: 1.25rem;
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }
}



/* ===========================
   HERO SECTION
   =========================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 20%, rgba(253, 126, 0, 0.08), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(238, 100, 1, 0.07), transparent 45%),
        linear-gradient(160deg, #0f0f15 0%, #12121b 55%, #0d0d13 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('media/Plan large.jpg') center/cover no-repeat;
    opacity: 0.12;
    filter: grayscale(55%) brightness(0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 6px;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 500;
    color: #eaeaea;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.hero-tagline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 400;
    color: #ffc76a;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 0.95rem 1.9rem;
    background: linear-gradient(135deg, var(--safran-orange), var(--safran-bright));
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 14px;
    transition: var(--transition-smooth);
    box-shadow:
        0 10px 24px rgba(253, 126, 0, 0.22),
        0 0 0 1px rgba(253, 126, 0, 0.45);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 28px rgba(253, 126, 0, 0.28),
        0 0 0 2px rgba(253, 126, 0, 0.6);
    background: linear-gradient(135deg, var(--safran-bright), var(--safran-accent));
}

.ghost-button {
    display: inline-block;
    padding: 0.95rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

.ghost-button:hover {
    border-color: var(--safran-bright);
    color: var(--safran-accent);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator .loader {
    width: 28px;
    height: 46px;
    position: relative;
    box-sizing: border-box;
    border: 1.4px solid #9D5CCB;
    margin: auto;
    border-radius: 50% 50% 50% 50% / 25% 25% 25% 25%;
    box-shadow: 0 0 8px rgba(157, 92, 203, 0.3);
}

.scroll-indicator .loader::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    width: 2.8px;
    height: 2.8px;
    background: #9D5CCB;
    border-radius: 10px;
    animation: scrollDown 1.5s linear infinite;
    box-shadow: 0 0 5px rgba(157, 92, 203, 0.48);
}

@keyframes scrollDown {
    0% {
        top: 8px;
        height: 3px;
        opacity: 1;
    }
    33% {
        top: 8px;
        height: 24px;
    }
    66% {
        top: 28px;
        height: 7px;
        opacity: 1;
    }
    100% {
        top: 34px;
        height: 3px;
        opacity: 0;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


.reveal,
.reveal-left,
.reveal-right,
.reveal-bottom,
.reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* ===========================
   SECTIONS COMMUNES
   =========================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-full {
    max-width: 100%;
    padding: 0 3rem;
}

section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--safran-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9D5CCB, #A587BA);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* ===========================
   STUDIO SECTION
   =========================== */

.studio-section {
    background: var(--bg-main);
}

.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.studio-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.studio-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(253, 126, 0, 0.05);
    border-color: rgba(253, 126, 0, 0.3);
}

.feature-icon {
    font-size: 1.6rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-content {
    display: grid;
    grid-template-columns: minmax(140px, 180px) 1fr;
    gap: 1.2rem;
    align-items: center;
    width: 100%;
}

.feature-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    white-space: nowrap;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.studio-tagline {
    /* text-align: center; */
    font-size: 1rem;
    padding: 1.5rem;
    background: rgba(253, 126, 0, 0.08);
    border-left: 4px solid var(--safran-bright);
    border-radius: 8px;
}

.studio-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
}

.studio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.studio-image:hover img {
    transform: scale(1.05);
}

/* ===========================
   TARIFS SECTION
   =========================== */

.tarifs-section {
    background: linear-gradient(180deg, #0f0f14 0%, #0b0b0e 100%);
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tarif-card {
    background: linear-gradient(160deg, #0f0f14 0%, #0c0c12 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tarif-card.glow-left {
    background:
        radial-gradient(circle at 18% 18%, rgba(253, 126, 0, 0.12), transparent 55%),
        linear-gradient(160deg, #0f0f14 0%, #0c0c12 100%);
    border-color: rgba(253, 126, 0, 0.25);
}

.tarif-card.glow-center {
    background:
        radial-gradient(circle at 50% 20%, rgba(253, 126, 0, 0.14), transparent 60%),
        linear-gradient(150deg, #11101c 0%, #0d0d13 100%);
    border-color: rgba(253, 126, 0, 0.28);
}

.tarif-card.glow-right {
    background:
        radial-gradient(circle at 82% 24%, rgba(253, 126, 0, 0.12), transparent 55%),
        linear-gradient(170deg, #0f0f14 0%, #0b0b0e 100%);
    border-color: rgba(253, 126, 0, 0.2);
}

.tarif-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--safran-orange), var(--safran-bright));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.tarif-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.tarif-card:hover::before {
    transform: scaleX(1);
}

.tarif-featured {
    color: var(--white);
    transform: translateY(-4px);
    border-color: rgba(253, 126, 0, 0.32);
}

.tarif-featured .tarif-header h3,
.tarif-featured .tarif-label,
.tarif-featured .tarif-price {
    color: var(--white);
}

.tarif-featured .tarif-badge {
    background: rgba(255, 255, 255, 0.2);
}

.tarif-featured:hover {
    transform: translateY(-10px);
}

.featured-badge { display: none; }

.tarif-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tarif-featured .tarif-header {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.tarif-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.tarif-badge {
    display: inline-block;
    background: rgba(253, 126, 0, 0.12);
    color: var(--safran-light);
    padding: 0.3rem 0.9rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tarif-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.highlight-price {
    position: relative;
    background: rgba(253, 126, 0, 0.06);
    border: 1px solid rgba(253, 126, 0, 0.16);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.highlight-price .tarif-label {
    color: var(--text-primary);
    font-weight: 700;
}

.highlight-price .tarif-price {
    color: var(--bg-main);
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--safran-orange), var(--safran-accent));
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

.tarif-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.tarif-featured .tarif-label {
    color: rgba(255, 255, 255, 0.9);
}

.tarif-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--safran-bright);
}

.tarif-featured .tarif-price {
    color: var(--safran-accent);
}

.featured-item .tarif-price {
    font-size: 1.5rem;
    color: var(--safran-accent);
}

.tarif-note {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===========================
   GALERIE SECTION
   =========================== */

.galerie-section {
    background: #0a0a0f;
    padding: var(--spacing-xl) 0;
}

.galerie-section .section-label {
    color: var(--safran-bright);
}

.galerie-section .section-title {
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border);
}

.gallery-large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 130%; /* Plus haut pour absorber tout le mouvement parallax */
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
    filter: brightness(0.88);
    display: block;
    margin-top: -15%; /* Centre l'image et absorbe le mouvement des deux côtés */
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* ===========================
   INSTAGRAM SECTION
   =========================== */

.instagram-section {
    background: linear-gradient(180deg, #0b0b0e 0%, #0c0c12 100%);
    padding: 5rem 2rem;
}

.instagram-embed {
    max-width: 1000px;
    margin: 3rem auto;
    text-align: center;
}

.instagram-embed p {
    color: inherit !important;
}

.instagram-link {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--safran-accent);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    border: 2px solid var(--safran-accent);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.instagram-link:hover {
    background: rgba(248, 169, 31, 0.1);
    color: var(--safran-bright);
    border-color: var(--safran-bright);
}

.instagram-widget {
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

.instagram-widget iframe {
    display: block;
    border: none;
    max-height: 600px;
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact-section {
    background: linear-gradient(180deg, #0c0c12 0%, #0b0b0e 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
    border: 1px solid var(--border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-address {
    text-align: center;
    margin-top: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.contact-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.3rem;
    min-width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.link-inline {
    color: var(--safran-accent);
    font-weight: 600;
}

.link-inline:hover {
    color: var(--safran-bright);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--safran-accent);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: rgba(253, 126, 0, 0.15);
    color: var(--safran-bright);
    transform: translateY(-2px);
}

/* Formulaire */
.contact-form {
    background: var(--bg-secondary);
    padding: 2.6rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-fast);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--safran-bright);
    box-shadow: 0 0 0 4px rgba(253, 126, 0, 0.12);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: var(--safran-bright);
    background: var(--bg-secondary);
    padding: 0 0.5rem;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--safran-orange), var(--safran-bright));
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--safran-bright), var(--safran-accent));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 126, 0, 0.3);
}

.button-arrow {
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.submit-button:hover .button-arrow {
    transform: translateX(5px);
}

/* ===========================
   AVIS SECTION
   =========================== */

.avis-section {
    background: linear-gradient(180deg, #0b0b0e 0%, #0f0f14 100%);
}

.avis-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.avis-grid {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0; /* slight breathing room */
}

.avis-track {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    width: max-content; /* allow natural width for animation */
    animation: none;
    will-change: transform;
}

@keyframes reviewsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Cards sizing for horizontal carousel */
.avis-card {
    flex: 0 0 360px; /* show multiple cards on wide screens */
}

.avis-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth) !important;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.avis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--safran-orange), var(--safran-bright), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.avis-card:hover::before {
    transform: scaleX(1);
}

.avis-card:hover {
    background: rgba(253, 126, 0, 0.05);
    border-color: rgba(253, 126, 0, 0.3);
    transform: translateY(-8px) !important;
}

.avis-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stars {
    font-size: 1.2rem;
    color: var(--safran-bright) !important;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--safran-bright);
}

.avis-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: auto 0; /* center vertically between rating and author */
    font-style: italic;
}

.avis-author {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: auto; /* stick author to bottom if present */
}

.avis-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(253, 126, 0, 0.05);
    border: 1px solid rgba(253, 126, 0, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--safran-bright);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.stat-stars {
    font-size: 1.1rem;
    color: var(--safran-bright);
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(253, 126, 0, 0.2);
}

.google-reviews-link {
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.google-reviews-link:hover .stat-value {
    color: var(--safran-accent);
}

.google-reviews-link:hover .stat-arrow {
    transform: translateX(8px);
}

.stat-arrow {
    font-size: 1.5rem;
    color: var(--safran-bright);
    transition: var(--transition-smooth);
    margin-top: 0.5rem;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: #07070b;
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--safran-bright), var(--safran-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-email {
    margin-top: 0.3rem;
    color: var(--safran-light);
    font-weight: 600;
}

.footer-address {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-social p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.5rem;
}

.footer-social span {
    font-weight: 600;
    color: var(--safran-accent);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-map {
        height: 400px;
    }

    .avis-grid {
        grid-template-columns: 1fr;
    }

    .avis-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }
    
    .container,
    .container-full {
        padding: 0 2rem;
    }
    
    .studio-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-content {
        grid-template-columns: minmax(120px, 150px) 1fr;
        gap: 1rem;
    }
    
    .tarifs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tarif-featured {
        transform: scale(1);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .instagram-widget {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-map {
        height: 350px;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .feature-item h3 {
        white-space: normal;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-large {
        grid-column: span 1;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    /* Responsive contact-cta */
    .contact-cta {
        padding: 2rem;
    }

    .contact-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .container,
    .container-full {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

.contact-cta {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(253, 126, 0, 0.05) 0%, rgba(248, 169, 31, 0.03) 100%);
    border: 1px solid var(--safran-bright);
    border-radius: 16px;
    text-align: center;
}

.contact-cta h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-cta .cta-button {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.cta-button.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

.cta-mail {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-top: 0.6rem;
}

.best-tarif {
    font-weight: bold;
}
