/* ============================================
   EXCEL-IMMO - STYLE.CSS
   Design Premium : Bleu #0A1F44, Or #C8A951
   Font: Poppins (Google Fonts)
   Responsive : Mobile, Tablet, Desktop
============================================ */

/* ----- VARIABLES CSS ----- */
:root {
    --bleu-fonce: #0A1F44;
    --or: #C8A951;
    --or-hover: #b59842;
    --blanc: #ffffff;
    --gris-clair: #f8f9fc;
    --gris-moyen: #6c757d;
    --gris-fonce: #2c3e50;
    --noir: #1a1a1a;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gris-fonce);
    background-color: var(--blanc);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

/* ----- UTILITAIRES ----- */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--gris-clair);
}

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

/* ----- LOADER ----- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bleu-fonce);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(200,169,81,0.2);
    border-top-color: var(--or);
    border-radius: 15px;
    animation: spin 1s linear infinite;
}

#loader p {
    color: var(--or);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ----- HEADER & NAVIGATION ----- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--bleu-fonce);
    letter-spacing: -0.5px;
}

.logo img {
    border-radius: 15px;
    height: 130px;
    width: auto;
}

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

.nav-link {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gris-fonce);
    position: relative;
    padding: 10px 22px;
    transition: all 0.3s ease;
    border-radius: 50px;
    background: transparent;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--or);
    background: rgba(200,169,81,0.08);
    border-color: rgba(200,169,81,0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200,169,81,0.15);
}

.nav-link.active {
    color: var(--blanc);
    background: linear-gradient(135deg, var(--or) 0%, var(--or-hover) 100%);
    box-shadow: 0 8px 20px rgba(200,169,81,0.35);
    border-color: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-hover) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 0.08;
}


.nav-link::after {
    display: none;
}

.nav-link.active::after {
    display: none;
}

.nav-link:hover::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--bleu-fonce);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ----- HERO SECTION ----- */
.hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(10,31,68,0.45) 0%, rgba(10,31,68,0.2) 100%),
                url('images/mapage.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 120px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,31,68,0.45) 0%, rgba(10,31,68,0.2) 100%);
}

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

.hero-content h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 15px;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--or), transparent);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.92;
    font-weight: 400;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--blanc);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* ----- BOUTONS ----- */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--or);
    color: var(--bleu-fonce);
}

.btn-primary:hover {
    background-color: var(--or-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(200,169,81,0.4);
}

.btn-secondary {
    background-color: var(--blanc);
    color: var(--bleu-fonce);
    border: 2px solid var(--blanc);
}

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

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

.btn-outline:hover {
    background-color: var(--blanc);
    color: var(--bleu-fonce);
    transform: translateY(-3px);
}

/* ----- SECTION HEADER ----- */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.subtitle {
    display: inline-block;
    color: var(--or);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--bleu-fonce);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--or);
    margin: 0 auto;
    border-radius: 2px;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gris-moyen);
}

/* ----- ABOUT SECTION ----- */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gris-moyen);
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--bleu-fonce);
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 35px 20px;
    background: linear-gradient(135deg, var(--bleu-fonce) 0%, #0d2952 100%);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--or);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* ----- CARTES EXPERTISES ----- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.expertise-card {
    background: var(--blanc);
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-hover) 100%);
    border-radius: 15px;
    font-size: 2rem;
    color: var(--blanc);
}

.expertise-card h3 {
    font-size: 1.5rem;
    color: var(--bleu-fonce);
    margin-bottom: 18px;
    font-weight: 700;
}

.expertise-card p {
    color: var(--gris-moyen);
    line-height: 1.8;
    margin-bottom: 20px;
}

.card-link {
    color: var(--or);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.card-link:hover {
    gap: 12px;
}

/* ----- FEATURES / WHY US ----- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-item i {
    font-size: 3rem;
    color: var(--or);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--bleu-fonce);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item p {
    color: var(--gris-moyen);
    line-height: 1.7;
}

/* ----- CTA SECTION ----- */
.cta {
    position: relative;
    background: linear-gradient(135deg, var(--bleu-fonce) 0%, #0d2952 100%);
    color: var(--blanc);
    text-align: center;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,169,81,0.1) 0%, transparent 70%);
    border-radius: 15px;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&q=50') center/cover;
    opacity: 0.05;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

/* ----- PAGE HEADER (sous-pages) ----- */
.page-header {
    position: relative;
    background: linear-gradient(135deg, rgba(10,31,68,0.45) 0%, rgba(10,31,68,0.2) 100%),
                url('images/mapage.png') center/cover no-repeat;
    color: var(--blanc);
    padding: 200px 0 100px;
    text-align: center;
    margin-top: 120px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&q=50') center/cover;
    opacity: 0.08;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,31,68,0.45) 0%, rgba(10,31,68,0.2) 100%);
}

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-header p {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ----- SERVICES DÉTAILLÉS ----- */
.service-item {
    margin-bottom: 80px;
}

.service-content {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    align-items: start;
}

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

.service-content.reverse .service-text {
    direction: ltr;
}

.service-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-hover) 100%);
    border-radius: 16px;
    font-size: 3rem;
    color: var(--blanc);
    box-shadow: var(--shadow-md);
}

.service-text h3 {
    font-size: 2rem;
    color: var(--bleu-fonce);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-text p {
    color: var(--gris-moyen);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.service-features {
    display: grid;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gris-fonce);
    font-size: 1rem;
}

.service-features i {
    color: var(--or);
    font-size: 1.1rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10,31,68,0.95));
    padding: 80px 25px 25px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-content {
    color: var(--blanc);
}

.gallery-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.category {
    display: inline-block;
    background: var(--or);
    color: var(--bleu-fonce);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ----- PLANS SECTION ----- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.plan-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 280px;
    box-shadow: var(--shadow-md);
}

.plan-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.plan-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10,31,68,0.9));
    padding: 60px 20px 20px;
    color: var(--blanc);
}

.plan-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.plan-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ----- TÉMOIGNAGES ----- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: var(--blanc);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.stars {
    color: var(--or);
    font-size: 1rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--gris-moyen);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--bleu-fonce);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gris-moyen);
    font-size: 0.9rem;
}

/* ----- CONTACT ----- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form h3,
.contact-info h3 {
    font-size: 2rem;
    color: var(--bleu-fonce);
    margin-bottom: 30px;
    font-weight: 700;
}

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

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

.form-group label {
    display: block;
    color: var(--gris-fonce);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--blanc);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--or);
    box-shadow: 0 0 0 4px rgba(200,169,81,0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

.info-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-hover) 100%);
    border-radius: 12px;
    color: var(--blanc);
    font-size: 1.5rem;
}

.info-content h4 {
    font-size: 1.1rem;
    color: var(--bleu-fonce);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: var(--gris-moyen);
    line-height: 1.7;
}

.info-content a {
    color: var(--gris-moyen);
}

.info-content a:hover {
    color: var(--or);
}

.social-section {
    margin-top: 40px;
}

.social-section h4 {
    font-size: 1.1rem;
    color: var(--bleu-fonce);
    margin-bottom: 15px;
    font-weight: 600;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

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

.faq-item {
    background: var(--blanc);
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.15rem;
    color: var(--bleu-fonce);
    font-weight: 600;
}

.faq-question i {
    color: var(--or);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gris-moyen);
    line-height: 1.8;
}

/* ----- FOOTER ----- */
.footer {
    background-color: #050f1f;
    color: rgba(255,255,255,0.8);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 100px;
    border-radius: 15px;
    width: auto;
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--or);
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-col h4 {
    color: var(--or);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    display: inline-block;
}

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

.contact-info li {
    display: flex;
    gap: 15px;
    align-items: start;
    margin-bottom: 18px;
}

.contact-info i {
    color: var(--or);
    font-size: 1.1rem;
    margin-top: 3px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.05);
    border-radius: 15px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--or);
    color: var(--bleu-fonce);
    transform: translateY(-5px);
}

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

.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(200,169,81,0.15);
    color: var(--or);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(200,169,81,0.3);
}

.admin-link:hover {
    background: rgba(200,169,81,0.25);
    border-color: var(--or);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200,169,81,0.3);
}

.admin-link i {
    font-size: 0.8rem;
}

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

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

/* ----- BLOG ----- */
.blog-filters {
    padding: 50px 0 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--blanc);
    border: 2px solid var(--gris-clair);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gris-fonce);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--or) 0%, var(--or-hover) 100%);
    color: var(--blanc);
    border-color: var(--or);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200,169,81,0.3);
}

.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    background: var(--blanc);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 50px 40px 50px 0;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gris-moyen);
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta i {
    color: var(--or);
}

.featured-content h2 {
    font-size: 2.2rem;
    color: var(--bleu-fonce);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.featured-content p {
    color: var(--gris-moyen);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blanc);
}

.badge-actualites {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.badge-conseils {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.badge-tendances {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.badge-evenements {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--blanc);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-size: 1.35rem;
    color: var(--bleu-fonce);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.blog-content p {
    color: var(--gris-moyen);
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--or);
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
    color: var(--or-hover);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blanc);
    border: 2px solid var(--gris-clair);
    border-radius: 8px;
    font-weight: 600;
    color: var(--gris-fonce);
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: var(--or);
    color: var(--blanc);
    border-color: var(--or);
}

.newsletter {
    padding: 80px 0;
}

.newsletter-content {
    background: linear-gradient(135deg, var(--bleu-fonce) 0%, #0d2952 100%);
    border-radius: 12px;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    color: var(--blanc);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.form-group-inline input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group-inline input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(200,169,81,0.3);
}

.form-group-inline .btn {
    padding: 16px 32px;
    white-space: nowrap;
}

/* ----- BOUTON WHATSAPP FLOTTANT ----- */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--blanc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .navbar {
        height: 80px;
    }

    .hero-content h1 {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2.3rem;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background: linear-gradient(180deg, var(--blanc) 0%, var(--gris-clair) 100%);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        box-shadow: var(--shadow-lg);
        padding: 40px 20px;
        gap: 15px;
        backdrop-filter: blur(10px);
    }

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

    .nav-link {
        width: 90%;
        margin: 0 auto;
        padding: 16px 28px;
        font-size: 1.1rem;
        border: 2px solid transparent;
    }

    .nav-link:hover {
        border-color: var(--or);
        background: rgba(200,169,81,0.08);
    }

    .nav-link.active {
        transform: scale(1.02);
    }

    .hero {
        min-height: 450px;
        margin-top: 120px;
    }

    .hero-content h1 {
        font-size: 1rem;
        letter-spacing: -0.3px;
    }

    .hero-content h1::after {
        width: 80px;
        height: 2px;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

    .service-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-icon {
        margin: 0 auto;
    }

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

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

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 1rem;
        letter-spacing: -0.2px;
    }

    .hero-content h1::after {
        width: 60px;
        height: 2px;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .page-header {
        padding: 150px 0 80px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

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

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 85px;
        right: 20px;
    }
}

/* ===== HERO AMÉLIORÉ ===== */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 15px;
    background: radial-gradient(circle, rgba(200,169,81,0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: pulse-glow 6s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 15px;
    background: radial-gradient(circle, rgba(200,169,81,0.08) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: pulse-glow 8s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* ===== STATS CARDS AMÉLIORÉES ===== */
.stat-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(200,169,81,0.15);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #C8A951, #f0d080);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10,31,68,0.4);
}

.stat-number {
    background: linear-gradient(135deg, #C8A951, #f0d080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== EXPERTISE CARDS AMÉLIORÉES ===== */
.expertise-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.expertise-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #0A1F44, #C8A951);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(10,31,68,0.15);
}

.expertise-card:hover .card-icon {
    background: linear-gradient(135deg, #C8A951 0%, #b39642 100%);
}

.expertise-card:hover .card-icon i {
    color: white;
}

.card-icon {
    transition: all 0.4s ease;
}

.card-icon i {
    transition: color 0.4s ease;
}

/* ===== FEATURE ITEMS EFFET HOVER BLEU ===== */
.feature-item {
    border-radius: 16px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A1F44 0%, #0d2952 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item > * {
    position: relative;
    z-index: 1;
}

.feature-item:hover i,
.feature-item:hover h4,
.feature-item:hover p {
    color: white !important;
}

.feature-item i {
    transition: transform 0.3s ease, color 0.4s ease;
}

.feature-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* ===== GALLERY AMÉLIORÉE ===== */
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.gallery-item img {
    transition: transform 0.6s ease;
}

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

/* ===== FOOTER AMÉLIORÉ ===== */
.footer {
    background: linear-gradient(135deg, #060f22 0%, #0A1F44 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0A1F44, #C8A951, #f0d080, #C8A951, #0A1F44);
}

/* ===== SECTION TÉMOIGNAGES ===== */
.testimonials {
    background: linear-gradient(135deg, #0A1F44 0%, #0d2952 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 40px;
    font-size: 300px;
    color: rgba(200,169,81,0.05);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonials .section-header .subtitle { color: rgba(255,255,255,0.6); }
.testimonials .section-header h2 { color: white; }
.testimonials .divider { background: #C8A951; }

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

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,169,81,0.2);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(200,169,81,0.5);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #C8A951;
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, #C8A951, #b39642);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info strong { display: block; color: white; font-size: 0.95rem; }
.author-info span { color: rgba(200,169,81,0.8); font-size: 0.8rem; }

/* ===== SCROLL TO TOP ===== */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C8A951, #b39642);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(200,169,81,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollTop.visible {
    opacity: 1;
    transform: translateY(0);
}

#scrollTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200,169,81,0.5);
}


/* ============================================
   EFFETS SUPPLÉMENTAIRES - DESIGN PREMIUM
============================================ */

/* ===== SÉLECTION DE TEXTE DORÉE ===== */
::selection {
    background: rgba(200,169,81,0.3);
    color: #0A1F44;
}

/* ===== SCROLLBAR PERSONNALISÉE ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #C8A951, #0A1F44);
    border-radius: 15px;
}
::-webkit-scrollbar-thumb:hover { background: #C8A951; }

/* ===== NAVBAR GLASSMORPHISM AU SCROLL ===== */
.header.scrolled {
    background: rgba(15, 50, 120, 0.92) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(200,169,81,0.4);
    box-shadow: 0 8px 32px rgba(10,31,68,0.2);
}

.nav-link {
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    display: none;
}

.nav-link:hover::after,
.nav-link.active::after {
    display: none;
}

/* ===== BOUTONS SHIMMER ===== */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    animation: shimmer-btn 3s infinite;
}

@keyframes shimmer-btn {
    0% { left: -75%; }
    100% { left: 150%; }
}

/* ===== HERO PARTICLES (CSS PUR) ===== */
.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(200,169,81,0.6);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ===== SECTION HERO AMÉLIORÉE ===== */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(0.9rem, 1.8vw, 1.4rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease forwards;
}

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

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.3s both;
}

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

/* ===== BARRES DE PROGRESSION ===== */
.skills-section {
    margin-bottom: 40px;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0A1F44;
    font-size: 0.9rem;
}

.skill-bar {
    height: 8px;
    background: rgba(10,31,68,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(90deg, #0A1F44, #C8A951);
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-fill::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: skill-shimmer 2s infinite;
}

@keyframes skill-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.skill-fill.animate { width: var(--skill-width); }

/* ===== CARTES EXPERTISE - NUMÉROS ===== */
.expertise-card .card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(10,31,68,0.05);
    line-height: 1;
    transition: color 0.4s ease;
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
}

.expertise-card:hover .card-number {
    color: rgba(200,169,81,0.1);
}

.expertise-card {
    position: relative;
}

/* ===== ABOUT SECTION AMÉLIORÉE ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text .lead {
    font-size: 1.2rem;
    color: #0A1F44;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.7;
    border-left: 4px solid #C8A951;
    padding-left: 20px;
}

/* ===== GALERIE - EFFET CADRE DORÉ ===== */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(200,169,81,0);
    border-radius: 15px;
    z-index: 2;
    transition: border-color 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover::before {
    border-color: rgba(200,169,81,0.7);
}

/* ===== FEATURE ITEMS - ICÔNES ANIMÉES ===== */
.feature-item i {
    color: #C8A951;
    margin-bottom: 20px;
    font-size: 2.5rem;
    display: block;
    transition: all 0.3s ease;
}

.feature-item:hover > i {
    color: white;
    transform: scale(1.2) rotate(5deg);
}

/* ===== SECTION TITRE DÉCORATIF ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #0A1F44;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.subtitle {
    display: inline-block;
    color: #C8A951;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.subtitle::before,
.subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: #C8A951;
}

.subtitle::before { right: 100%; margin-right: -20px; }
.subtitle::after { left: 100%; margin-left: -20px; }

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C8A951, #f0d080, #C8A951);
    margin: 15px auto 0;
    border-radius: 3px;
    animation: divider-pulse 2s ease-in-out infinite;
}

@keyframes divider-pulse {
    0%, 100% { width: 60px; opacity: 1; }
    50% { width: 100px; opacity: 0.7; }
}

/* ===== VAGUE AU-DESSUS DU FOOTER ===== */
.footer-wave {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: transparent;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ===== FOOTER LIENS ANIMÉS ===== */
.footer-col ul li a {
    position: relative;
    padding-bottom: 2px;
    color: rgba(255,255,255,0.65);
    transition: color 0.3s ease;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #C8A951;
    transition: width 0.3s ease;
}

.footer-col ul li a:hover {
    color: #C8A951;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

/* ===== SCROLL INDICATOR BOUNCE ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem;
    animation: bounce-scroll 2s ease-in-out infinite;
    cursor: pointer;
}

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

/* ===== CARDS GRID LAYOUT ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
}
