/* ========================================
   La Maison de la Perruque - White Premium
   Mobile-First Design (90% mobile traffic)
   ======================================== */

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

:root {
    --black: #111111;
    --dark: #1a1a1a;
    --text-dark: #2a2a2a;
    --text-gray: #666666;
    --text-light: #999999;
    --border: #e8e4e0;
    --off-white: #faf9f7;
    --white: #ffffff;
    --accent: #b8976a;
    --accent-light: #d4c4a8;
    --accent-dark: #9a7d52;
    --green: #3d8b5e;
    --green-light: #eaf5ee;
    --font-heading: 'Domine', Georgia, serif;
    --font-body: 'Roboto', 'Helvetica Neue', sans-serif;
    --radius: 4px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
}

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

a:hover {
    color: var(--accent-dark);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--white);
    color: var(--text-dark);
    padding: 8px 0;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}

.top-bar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.top-bar a {
    color: var(--accent);
}

.top-bar-partner {
    color: var(--text-light);
    font-size: 11px;
    font-style: italic;
    transition: color var(--transition);
}

.top-bar-partner:hover {
    color: var(--accent);
}

.top-bar-separator {
    display: none;
}

@media (min-width: 768px) {
    .top-bar-content {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }
    .top-bar-separator {
        display: inline;
        opacity: 0.3;
    }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

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

.nav-logo {
    text-decoration: none;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    display: block;
    transition: color var(--transition);
}

.navbar.scrolled .logo-main {
    color: var(--black);
}

.logo-sub {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--accent-light);
    transition: color var(--transition);
}

.navbar.scrolled .logo-sub {
    color: var(--accent);
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
    text-decoration: none;
}

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

.nav-menu a:hover,
.navbar.scrolled .nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width var(--transition);
}

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

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: var(--radius);
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
}

.nav-cta::after {
    display: none !important;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--black);
}

/* Mobile Menu */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.nav-menu.active a {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--black) !important;
    letter-spacing: 1px;
}

.nav-menu.active a:hover {
    color: var(--accent) !important;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
    .nav-toggle {
        display: none;
    }
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 20px;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-tagline {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust-item {
    text-align: center;
}

.hero-trust-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--accent-light);
}

.hero-trust-item span {
    font-size: 11px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.2);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 50px;
    }
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.btn-full {
    width: 100%;
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: var(--off-white);
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.trust-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.trust-icon {
    font-size: 24px;
}

.trust-item span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.trust-item small {
    font-size: 10px;
    color: var(--text-gray);
}

@media (min-width: 768px) {
    .trust-items {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== SECTIONS ========== */
.section {
    padding: 60px 0;
}

.section-light {
    background: var(--off-white);
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.section-label.center {
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-title.center {
    text-align: center;
}

.section-description {
    color: var(--text-gray);
    font-size: 15px;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.section-description.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }
    .section-title {
        font-size: 36px;
    }
}

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    gap: 30px;
}

.about-content {
    order: 2;
}

.about-image {
    order: 1;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-image-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    text-align: center;
    line-height: 1.2;
}

.badge-number {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.badge-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
}

.badge-text {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.about-text {
    color: var(--text-gray);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.8;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 18px;
}

.feature h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.feature p {
    font-size: 11px;
    color: var(--text-gray);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
    .about-content {
        order: 1;
    }
    .about-image {
        order: 2;
    }
}

/* ========== PROCESS STEPS ========== */
.process-grid {
    display: grid;
    gap: 20px;
    margin-top: 32px;
}

.process-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.process-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.process-line {
    width: 30px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 12px;
}

.process-step h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== COLLECTIONS ========== */
.collection-block {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
}

.collection-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.collection-header {
    text-align: center;
    margin-bottom: 28px;
}

.collection-tag {
    display: inline-block;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-light .collection-tag {
    background: var(--white);
}

.collection-name {
    font-size: 26px;
    margin-bottom: 8px;
}

.collection-desc {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 16px;
}

.collection-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.c-badge {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    color: var(--text-gray);
}

.section-light .c-badge {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--off-white);
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 14px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.product-type {
    font-size: 11px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.product-class {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--off-white);
    padding: 2px 8px;
    border-radius: var(--radius);
}

.product-rembourse {
    font-size: 10px;
    color: var(--green);
    font-weight: 600;
}

.collection-cta {
    text-align: center;
    margin-top: 40px;
}

.collection-cta p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* ========== CATALOGUE / GALLERY ========== */
.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.catalogue-item {
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    position: relative;
}

.catalogue-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.catalogue-item:hover img {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .catalogue-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (min-width: 1024px) {
    .catalogue-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 13px;
    opacity: 0.7;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    gap: 16px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.section-light .testimonial-card {
    background: var(--white);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-initial {
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.testimonial-author strong {
    font-size: 13px;
    color: var(--black);
    display: block;
}

.testimonial-author span:not(.testimonial-initial) {
    font-size: 11px;
    color: var(--text-light);
}

.testimonial-summary {
    text-align: center;
    margin-top: 32px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.testimonial-stat .stat-stars {
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.testimonial-stat strong {
    font-size: 20px;
    color: var(--black);
}

.testimonial-stat p {
    font-size: 13px;
    color: var(--text-gray);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========== REMBOURSEMENT ========== */
.rembourse-grid {
    display: grid;
    gap: 30px;
}

.rembourse-content .section-label,
.rembourse-content .section-title {
    text-align: left;
}

.rembourse-table {
    margin: 24px 0;
}

.rembourse-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-bottom: 1px;
}

.rembourse-row > span {
    background: var(--white);
    padding: 12px 14px;
    font-size: 13px;
    color: var(--text-dark);
}

.rembourse-header > span {
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rembourse-highlight {
    color: var(--green) !important;
    font-weight: 600;
}

.rembourse-note {
    font-size: 12px;
    color: var(--text-gray);
    margin: 16px 0 24px;
    padding: 14px;
    background: var(--green-light);
    border-radius: var(--radius);
    border-left: 3px solid var(--green);
    line-height: 1.6;
}

.rembourse-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rembourse-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.rembourse-card h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--black);
}

.rembourse-card ul {
    list-style: none;
    padding: 0;
}

.rembourse-card li {
    font-size: 13px;
    color: var(--text-gray);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.rembourse-card li::before {
    content: '✓ ';
    color: var(--green);
    font-weight: 700;
}

.rembourse-card-note {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 12px;
    font-style: italic;
}

@media (min-width: 768px) {
    .rembourse-grid {
        grid-template-columns: 3fr 2fr;
        gap: 40px;
        align-items: start;
    }
}

/* ========== FAQ ========== */
.faq-grid {
    max-width: 800px;
    margin: 24px auto 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    gap: 30px;
}

.contact-info .section-label,
.contact-info .section-title {
    text-align: left;
}

.contact-text {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: var(--off-white);
    border-radius: var(--radius);
}

.contact-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 13px;
    margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
    font-size: 13px;
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 0;
}

.contact-form {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--off-white);
}

.contact-form h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition);
    -webkit-appearance: none;
}

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

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

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

.form-privacy {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 12px;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: var(--white);
    color: var(--text-gray);
    padding: 50px 0 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.footer-brand h3 {
    font-size: 22px;
    color: var(--black);
    margin-bottom: 4px;
}

.footer-tagline {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-brand > p {
    font-size: 13px;
    line-height: 1.7;
}

.footer-certif {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.footer-certif span {
    font-size: 11px;
    color: var(--green);
    background: var(--green-light);
    padding: 4px 10px;
    border-radius: 50px;
}

.footer-links h4 {
    color: var(--black);
    font-size: 14px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: var(--text-gray);
    font-size: 13px;
    padding: 4px 0;
    transition: color var(--transition);
}

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

/* Footer Partner (Any d'Avray) */
.footer-partner {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-partner > span {
    font-size: 11px;
    color: var(--text-light);
}

.partner-link {
    display: inline-block;
}

.partner-logo {
    height: 35px;
    width: auto;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.partner-link:hover .partner-logo {
    opacity: 1;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.footer-bottom a {
    color: var(--text-gray);
    font-size: 11px;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .footer-partner {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Fix for iOS input zoom */
@media screen and (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}
