/* ========================================
   VARIABLES & RESET
======================================== */

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c9a961;
    --accent-color: #8b7355;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   NAVIGATION
======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 4px;
    transition: var(--transition);
}

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

.logo-subtitle {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: white;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.has-dropdown .nav-link i {
    font-size: 10px;
    margin-left: 5px;
    transition: var(--transition);
}

.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--light-color);
    border-left-color: var(--secondary-color);
    padding-left: 30px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition);
    border-radius: 3px;
}

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

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

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

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

.nav-toggle.active span {
    background: var(--primary-color);
}

/* ========================================
   HERO SECTION
======================================== */

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #3d5a7a 100%);
    background-image: 
        url('../images/devanture-nicomeubles.jpg'),
        linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(61, 90, 122, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(201, 169, 97, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    margin-top: 8px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

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

/* ========================================
   FEATURES SECTION
======================================== */

.features {
    padding: 100px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   SECTION HEADERS
======================================== */

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ========================================
   COLLECTIONS SECTION
======================================== */

.collections {
    padding: 100px 0;
    background: white;
}

.collections-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.collection-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.collection-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item:hover .collection-image img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.collection-item:hover .collection-overlay {
    opacity: 1;
}

.view-btn {
    padding: 12px 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.view-btn:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.collection-info {
    padding: 25px;
}

.collection-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.collection-info p {
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   RÉALISATIONS SECTION
======================================== */

.realisations {
    padding: 100px 0;
    background: var(--light-color);
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.realisation-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.realisation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.realisation-image {
    height: 300px;
    overflow: hidden;
}

.realisation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.realisation-content {
    padding: 30px;
}

.realisation-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.realisation-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
======================================== */

.about {
    padding: 100px 0;
    background: white;
}

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

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    padding: 25px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge i {
    font-size: 24px;
    margin-bottom: 8px;
}

.about-badge p {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-intro {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-values {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-item i {
    font-size: 32px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.value-item p {
    margin: 0;
    font-size: 15px;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d5a7a 100%);
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials .section-title::after {
    background: var(--secondary-color);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.8;
}

/* ========================================
   CONTACT SECTION
======================================== */

.contact {
    padding: 100px 0;
    background: var(--light-color);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

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

.form-group label {
    position: absolute;
    left: 20px;
    top: 15px;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition);
    font-size: 15px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:valid + label,
.form-group select + label {
    top: -12px;
    left: 15px;
    font-size: 12px;
    color: var(--secondary-color);
    background: white;
    padding: 0 8px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    opacity: 0;
}

.form-group select {
    cursor: pointer;
}

.contact-form button[type="submit"] {
    margin-top: 10px;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: transparent;
    color: white;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   MODAL
======================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent-color);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.modal-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-info h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-color);
}

.modal-info > p:first-of-type {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.modal-features h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.modal-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-features ul li {
    color: var(--text-light);
    padding-left: 25px;
    position: relative;
}

.modal-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* ========================================
   SCROLL TO TOP
======================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* ========================================
   PAGE HEADER (for internal pages)
======================================== */

.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 80px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

/* ========================================
   INTRO SECTION (Homepage)
======================================== */

.intro-section {
    padding: 100px 0;
    background: white;
}

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

.intro-text h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.intro-lead {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.intro-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-text .btn {
    margin-top: 20px;
}

.intro-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ========================================
   SERVICES SECTION
======================================== */

.services-section {
    padding: 100px 0;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   SPECIALITES SECTION
======================================== */

.specialites-section {
    padding: 100px 0;
    background: white;
}

.specialites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.specialite-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.specialite-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.specialite-image {
    height: 250px;
    overflow: hidden;
}

.specialite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.specialite-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-color);
    padding: 20px 25px 10px;
}

.specialite-card p {
    color: var(--text-light);
    padding: 0 25px 25px;
}

/* ========================================
   PROCESS SECTION
======================================== */

.process-section {
    padding: 100px 0;
    background: var(--light-color);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
======================================== */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d5a7a 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   ATELIER PAGE STYLES
======================================== */

.atelier-intro {
    padding: 100px 0;
    background: white;
}

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

.atelier-text h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.atelier-text .lead {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.atelier-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.atelier-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.atelier-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.equipment-section {
    padding: 100px 0;
    background: var(--light-color);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.equipment-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.equipment-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.equipment-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.equipment-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.savoir-faire-section {
    padding: 100px 0;
    background: white;
}

.savoir-faire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.savoir-faire-item {
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
    background: var(--light-color);
    border-radius: 0 10px 10px 0;
    transition: var(--transition);
}

.savoir-faire-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.savoir-faire-number {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.savoir-faire-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.savoir-faire-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.bois-section {
    padding: 100px 0;
    background: var(--light-color);
}

.bois-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bois-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.bois-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bois-card h3 i {
    color: var(--secondary-color);
}

.bois-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.detailed-process {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.detailed-step.reverse {
    direction: rtl;
}

.detailed-step.reverse > * {
    direction: ltr;
}

.step-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.step-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.step-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   GALLERY PAGE STYLES
======================================== */

.gallery-section {
    padding: 80px 0 100px;
    background: white;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: white;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 20px;
}

.gallery-overlay .view-btn {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.gallery-overlay .view-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

.testimonials-page {
    padding: 100px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* ========================================
   CONTACT PAGE STYLES
======================================== */

.contact-page {
    padding: 80px 0 100px;
    background: white;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-intro h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.contact-card .contact-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.contact-form-container {
    background: var(--light-color);
    padding: 50px;
    border-radius: 15px;
}

.contact-form-container h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.form-note {
    margin-bottom: 20px;
    color: var(--text-light);
}

.form-success {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 15px;
}

.form-success i {
    font-size: 64px;
    color: #4caf50;
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text-light);
    font-size: 18px;
}

.faq-section {
    padding: 100px 0;
    background: var(--light-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.map-section {
    padding: 80px 0;
    background: white;
}

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

.map-info h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.map-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.map-info p i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.map-note {
    background: var(--light-color);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.map-placeholder {
    height: 400px;
    background: var(--light-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 64px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 18px;
}

/* ========================================
   AVIS PAGE STYLES
======================================== */

.rating-overview {
    padding: 80px 0;
    background: white;
}

.rating-summary {
    display: grid;
    grid-template-columns: 300px 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.rating-score {
    text-align: center;
    padding: 40px;
    background: var(--light-color);
    border-radius: 15px;
}

.score-number {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.score-stars {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.score-text {
    color: var(--text-light);
    font-size: 14px;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rating-bar-item {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    gap: 15px;
    align-items: center;
}

.bar-label {
    font-size: 14px;
    color: var(--text-color);
}

.bar-container {
    height: 12px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 1s ease;
}

.bar-count {
    font-size: 14px;
    color: var(--text-light);
    text-align: right;
}

.rating-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.value-item {
    text-align: center;
    padding: 25px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-item i {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.value-item h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-stars {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.value-item span {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonials-full {
    padding: 100px 0;
    background: var(--light-color);
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-detailed {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--light-color);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-location {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 8px;
}

.testimonial-location i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.testimonial-stars {
    color: var(--secondary-color);
    font-size: 16px;
}

.testimonial-date {
    color: var(--text-light);
    font-size: 14px;
    text-align: right;
}

.testimonial-date i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.testimonial-body h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-body h4 i {
    color: var(--secondary-color);
    font-size: 16px;
    margin-right: 8px;
}

.testimonial-body p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-project {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-color);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.project-tag i {
    color: var(--secondary-color);
    font-size: 14px;
}

/* ========================================
   CONTENT SECTIONS (for product pages)
======================================== */

.content-section {
    padding: 100px 0;
    background: white;
}

.content-section:nth-child(even) {
    background: var(--light-color);
}

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

.content-layout.reverse {
    direction: rtl;
}

.content-layout.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.content-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.content-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Zone Section */
.zone-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.zone-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 20px;
}

.zone-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.zone-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.zone-item {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.zone-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.zone-item i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 40px;
        gap: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        align-items: flex-start;
    }
    
    .nav-menu .nav-link {
        color: var(--text-color);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .about-content,
    .contact-content,
    .modal-body,
    .intro-content,
    .atelier-content,
    .map-content {
        grid-template-columns: 1fr;
    }
    
    .detailed-step,
    .detailed-step.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .modal-body img {
        border-radius: 20px 20px 0 0;
        height: 300px;
    }
    
    .modal-info {
        padding: 30px;
    }
    
    .about-image img,
    .intro-image img,
    .atelier-image img {
        height: 400px;
    }
    
    .contact-form-container {
        padding: 35px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .rating-summary {
        grid-template-columns: 1fr;
    }
    
    .rating-values {
        grid-template-columns: 1fr;
    }
    
    .content-layout,
    .content-layout.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        display: none;
    }
    
    .has-dropdown.mobile-open .dropdown-menu {
        display: block;
    }
    
    .content-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid,
    .collections-grid,
    .realisations-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 22px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* ========================================
   MENTIONS LÉGALES
======================================== */

.legal-content {
    padding: 60px 0 80px;
    background: var(--light-color);
}

/* Introduction */
.legal-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 25px 30px;
    background: white;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.legal-intro p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

/* Grid de cartes */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.legal-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

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

.legal-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-card-header i {
    font-size: 24px;
    color: var(--secondary-color);
}

.legal-card-header h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
}

.legal-card-content {
    padding: 25px;
}

.legal-info-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.legal-info-row:last-child {
    border-bottom: none;
}

.legal-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.legal-value {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
}

.legal-value a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.legal-value a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Sections détaillées */
.legal-sections {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section h3 i {
    color: var(--secondary-color);
    font-size: 26px;
}

.legal-section h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--accent-color);
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 18px;
    color: var(--text-color);
    line-height: 1.8;
    text-align: justify;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

/* Notice importante */
.legal-notice {
    background: linear-gradient(135deg, #fff9e6, #fff);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: start;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.legal-notice i {
    font-size: 28px;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.legal-notice p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 15px;
}

/* Footer link for mentions légales */
.footer-bottom a {
    color: inherit;
    text-decoration: underline;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 40px 0 60px;
    }
    
    .legal-intro {
        margin-bottom: 30px;
        padding: 20px;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .legal-card-header {
        padding: 18px 20px;
    }
    
    .legal-card-header h3 {
        font-size: 20px;
    }
    
    .legal-card-content {
        padding: 20px;
    }
    
    .legal-info-row {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 10px 0;
    }
    
    .legal-section {
        padding: 25px 20px;
    }
    
    .legal-section h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .legal-section h4 {
        font-size: 17px;
    }
    
    .legal-section p {
        text-align: left;
    }
    
    .legal-notice {
        padding: 20px;
        gap: 15px;
    }
    
    .legal-notice i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .legal-card-header i {
        font-size: 20px;
    }
    
    .legal-card-header h3 {
        font-size: 18px;
    }
}