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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Navigation */
.navbar {
    background-color: #2d5016;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-logo h1 {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.lang-btn {
    background-color: #4a7c59;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn.active,
.lang-btn:hover {
    background-color: #d4af37;
    color: #2d5016;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-item::before {
    content: attr(data-number);
    background-color: #d4af37;
    color: #2d5016;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.nav-item.active,
.nav-item:hover {
    background-color: rgba(212, 175, 55, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-badge {
    background-color: #d4af37;
    color: #2d5016;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #2d5016;
    color: white;
}

.btn-primary:hover {
    background-color: #1a3009;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #d4af37;
    color: #2d5016;
}

.btn-secondary:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    background-color: #2d5016;
    padding: 4rem 0;
    color: white;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5016;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: white;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #2d5016;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 3px solid #d4af37;
    transform: scale(1.05);
}

.popular-badge {
    background-color: #d4af37;
    color: #2d5016;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card h3 {
    color: #2d5016;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.duration {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.pricing-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    color: #555;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card li::before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: white;
}

.about-content {
    margin-bottom: 4rem;
}

.about-text h2 {
    color: #2d5016;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.about-text li {
    color: #666;
    margin-bottom: 0.5rem;
}

.vision-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.vision h2,
.values h2 {
    color: #2d5016;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.vision p,
.values p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.vision ul,
.values ol {
    padding-left: 2rem;
}

.vision li,
.values li {
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.founder {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.founder h3 {
    color: #2d5016;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.founder h4 {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.founder-quote {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.founder-credentials {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.founder-credentials li {
    color: #555;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: #2d5016;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: #2d5016;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    color: #2d5016;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

/* Footer */
.footer {
    background-color: #2d5016;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo h3 {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #d4af37;
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-values {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-item {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }
}/* ====== THEME OVERRIDE - Décoder les Finances ====== */
:root{
  --green-main:#2d5016; --green-dark:#1a3009; --green-mid:#4a7c59;
  --gold:#d4af37; --gold-dark:#b8941f;
  --text-main:#333; --text-sec:#666; --text-light:#555;
  --bg-main:#f8f9fa; --bg-white:#fff; --bg-light:#e9ecef;
}

/* Navigation */
.navbar, header, .site-header{
  background-color: var(--green-main) !important;
  color:#fff !important;
}
.navbar a, header a{ color:#fff !important; }
.navbar .logo, header .logo{ color:var(--gold) !important; }

/* Hero */
.hero, .hero-section, .HeroBag{
  background: linear-gradient(180deg, var(--bg-main), var(--bg-light)) !important;
  color: var(--text-sec) !important;
}
.hero h1, .hero-section h1{ color: var(--green-main) !important; }
.hero .badge, .hero .chip{
  background: var(--gold) !important; color: var(--green-main) !important;
}

/* Boutons */
.btn, button, .cta{
  background: var(--green-main) !important; color:#fff !important; border:none !important;
}
.btn:hover, button:hover, .cta:hover{ background: var(--green-dark) !important; }
.btn.secondary, .btn--secondary, .btn-gold{
  background: var(--gold) !important; color: var(--green-main) !important;
}
.btn.secondary:hover, .btn--secondary:hover, .btn-gold:hover{
  background: var(--gold-dark) !important;
}

/* Cartes / sections blanches */
.card, .service-card, .pricing-card, .section, .box{
  background: var(--bg-white) !important;
  border:1px solid var(--bg-light) !important;
  color: var(--text-sec) !important;
}
.card h2, .card h3, .service-card h3, .pricing-card h3{
  color: var(--green-main) !important;
}

/* Tableaux */
table thead, .table thead{
  background: var(--green-main) !important; color:#fff !important;
}

/* Footer */
footer, .site-footer{
  background: var(--green-main) !important; color:#fff !important;
  border-top:1px solid rgba(255,255,255,0.2) !important;
}
.site-footer .logo{ color: var(--gold) !important; }

/* Textes globaux */
body{ color: var(--text-main) !important; background: var(--bg-main) !important; }
h1,h2,h3{ color: var(--green-main) !important; }
p, li{ color: var(--text-sec) !important; }
/* Séparateur doré fin */
.services hr, .service hr, .service-card hr,
.services .divider, .service .divider, .service-card .divider{
  height:1px !important;
  border:0 !important;
  background:#d4af37 !important;
  opacity:.95 !important;
  margin:16px 0 !important;
}
/* Barre dorée courte et centrée */
.services .divider, .service .divider, .service-card .divider, 
.services hr, .service hr, .service-card hr{
  height:2px !important; width:64px !important;
  margin:14px auto !important;         /* centre horizontalement */
  background:#d4af37 !important; border:0 !important; opacity:1 !important;
  border-radius:999px !important;       /* bords arrondis */
}
/* Ligne dorée avec dégradé */
.services hr, .service hr, .service-card hr,
.services .divider, .service .divider, .service-card .divider{
  height:2px !important; border:0 !important; margin:16px 0 !important;
  background: linear-gradient(90deg, rgba(212,175,55,0), #d4af37, rgba(212,175,55,0)) !important;
  opacity:1 !important;
}
/* Pointillé doré */
.services hr, .service hr, .service-card hr,
.services .divider, .service .divider, .service-card .divider{
  border:0 !important; height:0 !important; margin:16px 0 !important;
  border-top:2px dotted #d4af37 !important;
  opacity:1 !important;
}
/* Boutons visibles et stylés dans Services */
.services .btn, .services .button, .services .cta,
.services a[class*="btn"], .services a[class*="button"], .services a[class*="cta"],
.services a[class*="rdv"], .services a[class*="appoint"], .services a[class*="more"],
.service-card .btn, .service-card .button, .service-card .cta,
.service-card a[class*="btn"], .service-card a[class*="button"], .service-card a[class*="cta"],
.service-card a[class*="rdv"], .service-card a[class*="appoint"], .service-card a[class*="more"]{
  display:inline-block !important;
  padding:.75rem 1.1rem !important;
  border-radius:10px !important;
  font-weight:600 !important;
  text-decoration:none !important;
  line-height:1 !important;
  visibility:visible !important;
  opacity:1 !important;
  cursor:pointer !important;
}

/* Primaire = Rendez-vous */
.services .btn, .service-card .btn,
.services a[class*="rdv"], .service-card a[class*="rdv"],
.services a[class*="appoint"], .service-card a[class*="appoint"],
.services .cta, .service-card .cta{
  background:#2d5016 !important; color:#fff !important; border:none !important;
  box-shadow:0 2px 8px rgba(0,0,0,.10) !important;
}
.services .btn:hover, .service-card .btn:hover,
.services a[class*="rdv"]:hover, .service-card a[class*="rdv"]:hover,
.services a[class*="appoint"]:hover, .service-card a[class*="appoint"]:hover,
.services .cta:hover, .service-card .cta:hover{
  background:#1a3009 !important;
}

/* Secondaire = En savoir plus (lien-bouton) */
.services a[class*="more"], .service-card a[class*="more"],
.services a[class*="learn"], .service-card a[class*="learn"],
.services .btn-link, .service-card .btn-link{
  background:transparent !important;
  color:#2d5016 !important;
  border:2px solid #2d5016 !important;
  padding:.55rem .9rem !important;
  border-radius:10px !important;
}
.services a[class*="more"]:hover, .service-card a[class*="more"]:hover,
.services a[class*="learn"]:hover, .service-card a[class*="learn"]:hover,
.services .btn-link:hover, .service-card .btn-link:hover{
  background:#d4af37 !important; color:#2d5016 !important; border-color:#d4af37 !important;
}.services .service-card {
    border-top: 4px solid #d4af37 !important; /* doré */
    padding-top: 15px;
}
/* === Palette & variables globales === */
:root{
  --green:#103d2e;
  --gold:#d4af37;      /* doré */
  --gold-soft:#e6d39a; /* doré pâle pour traits */
  --text:#222;
  --bg:#f7f4ef;
}

/* Titres de section + petit soulignement doré */
.section-title{
  color:var(--text);
  position:relative;
  text-align:center;
}
.section-title::after{
  content:"";
  display:block;
  width:72px;
  height:4px;
  margin:10px auto 0;
  background:var(--gold);
  border-radius:2px;
}

/* Cartes de services : cadre + barre dorée en haut */
.services .service-card{
  position:relative;
  border:1px solid #e6e6e6;
  border-radius:10px;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
}
.services .service-card::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:6px;
  background:var(--gold);
  border-top-left-radius:10px;
  border-top-right-radius:10px;
}

/* Puces dorées des listes */
.services .service-card li::marker{ color:var(--gold); }

/* Boutons primaires (ex: Prendre rendez-vous) */
.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition:.2s ease-in-out;
}
.btn-primary{
  background:var(--green);
  color:#fff;
  border:2px solid var(--green);
}
.btn-primary:hover{
  filter:brightness(1.05);
  transform:translateY(-1px);
}
.btn-outline{
  background:#fff;
  color:var(--green);
  border:2px solid var(--green);
}
.btn-outline:hover{
  background:var(--green);
  color:#fff;
}
.service-card .btn {
    display: inline-block; /* évite de prendre toute la largeur */
    margin-top: 10px;       /* espace au-dessus du bouton */
    text-align: left;       /* alignement interne */
}

.service-card {
    text-align: left; /* aligne tout le contenu de la carte à gauche */
}
/* --- Fix: aligner les boutons à gauche dans les cartes de services --- */
.services .service-card {
  text-align: left !important;          /* écrase un éventuel text-align:center */
  align-items: flex-start !important;    /* si la carte est en flex */
}

.services .service-card .btn {
  display: inline-block !important;      /* évite width:100% qui centre */
  margin-top: 12px !important;
  align-self: flex-start !important;     /* si parent en flex, colle le bouton à gauche */
  margin-left: 0 !important;
}

/* Si la grille centre les items, on l’empêche de centrer le contenu */
.services .services-grid {
  justify-items: stretch !important;     /* pour CSS Grid, au cas où */
  align-items: start !important;
}
/* --- Fix: aligner les boutons à gauche dans les cartes de services --- */
.services .service-card {
  text-align: left !important;          /* Évite le centrage du texte */
  align-items: flex-start !important;    /* Si le parent est en flex */
}

.services .service-card .btn {
  display: inline-block !important;      /* Empêche que le bouton prenne toute la largeur */
  margin-top: 12px !important;
  align-self: flex-start !important;     /* Colle le bouton à gauche */
  margin-left: 0 !important;
}

.services .services-grid {
  justify-items: stretch !important;     /* Si c’est en CSS Grid */
  align-items: start !important;
}


  


