/* PREMIUM SOLAR - Styles Principaux */

/* Variables */
:root {
    --primary-color: #0D1B2A;
    --secondary-color: #C9A557;
    --secondary-hover: #A8863C;
    --accent-color: #E8D5A3;
    --dark-bg: #080F18;
    --light-text: #f3f4f6;
    --gold: #C9A557;
    --gold-light: #E8D5A3;
    --gold-dark: #8B6914;
    --silver: #9E9E9E;
}

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

body {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
}

/* Dimeo-style section label */
.section-label {
    display: inline-block;
    color: #C9A557;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Dimeo-style big title */
.section-title-xl {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: #0D1B2A;
    margin-bottom: 1.25rem;
}

/* Gold divider */
.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C9A557, #E8D5A3);
    margin: 1.5rem 0;
    border-radius: 2px;
}

/* Portfolio grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.portfolio-card {
    background: white;
    border-radius: 14px;
    overflow: visible;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border: 2px solid #C9A557;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    clip-path: none;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(201,165,87,0.25);
    border-color: #A8863C;
}

.portfolio-card-img {
    width: 100%;
    height: 220px;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
    display: block;
}

.portfolio-card-body {
    padding: 1.5rem;
}

.portfolio-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A557;
    margin-bottom: 0.5rem;
}

.portfolio-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0D1B2A;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.portfolio-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #888;
}

.portfolio-stats span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Quote section */
.quote-section {
    background: #0D1B2A;
    padding: 100px 0;
    text-align: center;
}

.quote-mark {
    font-size: 8rem;
    line-height: 0.5;
    color: #C9A557;
    opacity: 0.6;
    font-family: Georgia, serif;
    display: block;
    margin-bottom: 2rem;
}

.quote-text {
    font-size: 1.7rem;
    font-weight: 300;
    color: white;
    letter-spacing: -0.5px;
    line-height: 1.5;
    max-width: 780px;
    margin: 0 auto 2rem;
}

.quote-author {
    color: #C9A557;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title-xl { font-size: 2.2rem; }
}

@media (max-width: 640px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .quote-text { font-size: 1.25rem; }
    .section-title-xl { font-size: 1.8rem; letter-spacing: -0.5px; }
}

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

/* Top Bar */
.top-bar {
    display: none;
}

/* Navigation — Pill flottante glass style Dimeo */
.navbar {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1080px;
    z-index: 999;
    /* Etat héro : verre flouté transparent */
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, top 0.35s ease;
}

.navbar.scrolled {
    /* Etat scroll : blanc opaque */
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.10);
    top: 12px;
}

.nav-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0.45rem 0.6rem 0.45rem 1.1rem;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #C9A557 0%, #E8D5A3 50%, #C9A557 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-img {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img img {
    height: 36px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-img:hover img {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.90);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
    padding: 0.5rem 0.85rem;
    border-radius: 50px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

/* Liens foncés quand scrolled */
.navbar.scrolled .nav-links a {
    color: #0D1B2A;
}
.navbar.scrolled .nav-links a:hover {
    color: var(--gold);
    background: rgba(201,165,87,0.07);
}

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

.dropbtn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.90);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    transition: all 0.25s ease;
}
.dropbtn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}
.navbar.scrolled .dropbtn {
    color: #0D1B2A;
}
.navbar.scrolled .dropbtn:hover {
    color: var(--gold);
    background: rgba(201,165,87,0.07);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: -10px;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

/* Zone tampon invisible pour garder le menu ouvert */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
    background: transparent;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: #1f2937;
    padding: 14px 18px;
    text-decoration: none;
    display: block;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-content a:hover {
    background: #fdf8ee;
    color: var(--gold);
    padding-left: 22px;
}

/* CTA Button — pill gold */
.cta-button {
    background: linear-gradient(135deg, #C9A557, #A8863C);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(201,165,87,0.35);
}

.cta-button:hover {
    background: linear-gradient(135deg, #E8D5A3, #C9A557);
    color: #080F18 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 165, 87, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.90);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.navbar.scrolled .mobile-menu-toggle span {
    background: #0D1B2A;
}

/* Hero Section */
.hero-section {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background: white;
}

.bg-light {
    background: #f9fafb;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

/* Two Columns Layout */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.column h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-blue {
    color: var(--accent-color);
}

.icon-green {
    color: var(--secondary-color);
}

/* Check List */
.check-list {
    list-style: none;
    margin-top: 1rem;
}

.check-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-list i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

/* Features Grid */
.features-section {
    padding: 80px 0;
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Steps Container */
.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #080F18;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-box i {
    color: var(--secondary-color);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #080F18, var(--primary-color));
    padding: 80px 0;
    color: white;
    border-top: 1px solid rgba(201, 165, 87, 0.3);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-button-primary,
.cta-button-secondary {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-primary {
    background: white;
    color: var(--primary-color);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.cta-button-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #080F18;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 165, 87, 0.4);
}

.btn-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-link:hover {
    gap: 1rem;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #efefef;
    box-shadow: none;
    color: #333;
}

.expertise-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 165, 87, 0.5);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.expertise-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdf6e3, #faeec8);
    border-radius: 50%;
    color: var(--gold);
}

.expertise-icon svg {
    width: 60%;
    height: 60%;
}

.expertise-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.expertise-card p {
    line-height: 1.8;
    font-size: 0.95rem;
    color: #666;
}

/* Solution card overlay update */
.solution-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #555;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

/* Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

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

.popup-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: var(--primary-color);
}

.popup-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.popup-button {
    flex: 1;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.popup-button:hover {
    border-color: var(--gold);
    background: #fdf8ee;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .two-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2,
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(11, 24, 41, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.scroll-top i {
    font-size: 1.25rem;
}

/* Floating RDV Button */
.floating-rdv {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #080F18;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(201, 165, 87, 0.5);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-rdv:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 165, 87, 0.7);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 6rem;
    right: 7.5rem;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    font-size: 2rem;
}

/* Stats section */
.stats-section {
    background: var(--primary-color);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #C9A557, #E8D5A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.1;
}

.stat-item .stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 0.4rem;
    letter-spacing: 0.5px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 165, 87, 0.15);
}

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

.button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #080F18;
    padding: 12px 32px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.button-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 165, 87, 0.5);
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* LinkedIn - Couleur officielle */
.footer-social a[href*="linkedin"] {
    background: #0A66C2;
}

.footer-social a[href*="linkedin"]:hover {
    background: #004182;
    transform: translateY(-3px);
}

/* Instagram - Dégradé officiel */
.footer-social a[href*="instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #d07b2c 0%, #c75532 25%, #b91f37 50%, #ab1d56 75%, #9b1575 100%);
    transform: translateY(-3px);
}

/* YouTube - Couleur officielle */
.footer-social a[href*="youtube"] {
    background: #FF0000;
}

.footer-social a[href*="youtube"]:hover {
    background: #cc0000;
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .floating-whatsapp {
        bottom: 5rem;
        right: 6rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .floating-whatsapp i {
        font-size: 1.6rem;
    }
    
    .floating-rdv {
        bottom: 5rem;
        right: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}