/* cabinet-aroncynthia.com - Neuropsychologue Lot-et-Garonne */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --primary: #4a7c59;
  --primary-dark: #3a6347;
  --secondary: #7cb494;
  --accent: #c8e6c9;
  --beige: #f5f0e8;
  --beige-dark: #ede5d6;
  --dark: #2d3a2e;
  --text: #3d4a3e;
  --text-light: #6b7c6d;
  --bg: #faf8f4;
  --white: #ffffff;
  --border: #d8e8da;
  --warm: #8d6e63;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

header { background: var(--white); box-shadow: 0 1px 15px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 1000; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 600; color: var(--dark); text-decoration: none; }
.logo span { color: var(--primary); }
nav { display: flex; gap: 25px; align-items: center; }
nav a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.88rem; transition: color 0.3s; }
nav a:hover { color: var(--primary); }
.nav-cta { background: var(--primary); color: white !important; padding: 10px 22px; border-radius: 6px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--primary-dark) !important; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: var(--text); }

.hero { background: url('../img/hero-office.jpg') center/cover no-repeat; padding: 90px 20px; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(245,240,232,0.92) 0%, rgba(237,229,214,0.88) 100%); }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: rgba(74,124,89,0.1); color: var(--primary); border: 1px solid rgba(74,124,89,0.25); padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.hero h1 { font-family: 'Lora', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; color: var(--dark); margin-bottom: 18px; line-height: 1.3; }
.hero p { font-size: 1rem; color: var(--text-light); margin-bottom: 35px; line-height: 1.8; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: var(--primary); color: white; padding: 14px 32px; border-radius: 6px; font-weight: 700; font-size: 0.93rem; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--primary); padding: 13px 31px; border-radius: 6px; font-weight: 600; font-size: 0.93rem; text-decoration: none; border: 2px solid var(--primary); transition: all 0.3s; display: inline-block; }
.btn-secondary:hover { background: rgba(74,124,89,0.05); }
.hero-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 35px; box-shadow: 0 4px 25px rgba(74,124,89,0.1); }
.hero-card h3 { font-family: 'Lora', serif; font-size: 1.1rem; color: var(--dark); margin-bottom: 20px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.hero-stat { text-align: center; padding: 15px; background: var(--beige); border-radius: 8px; }
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.hero-stat span { font-size: 0.78rem; color: var(--text-light); }

section { padding: 75px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-badge { display: inline-block; background: rgba(74,124,89,0.1); color: var(--primary); padding: 5px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.section-title { font-family: 'Lora', serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; color: var(--dark); margin-bottom: 15px; line-height: 1.3; }
.section-subtitle { font-size: 1rem; color: var(--text-light); max-width: 600px; margin: 0 auto 45px; line-height: 1.7; }
.text-center { text-align: center; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 25px; margin-top: 45px; }
.service-card { background: white; border-radius: 12px; padding: 30px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid var(--border); transition: all 0.3s; }
.service-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(74,124,89,0.12); }
.service-icon { width: 54px; height: 54px; background: rgba(74,124,89,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 15px; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-card p { color: var(--text-light); font-size: 0.87rem; line-height: 1.7; }

.process-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 45px; max-width: 750px; margin-left: auto; margin-right: auto; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num { width: 42px; height: 42px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.step-content h3 { font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.step-content p { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; margin-top: 45px; }
.testimonial-card { background: white; border-radius: 12px; padding: 28px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); border: 1px solid var(--border); }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 10px; }
.testimonial-card p { color: var(--text); font-style: italic; font-size: 0.88rem; margin-bottom: 15px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 38px; height: 38px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.85rem; }
.author-name { font-weight: 700; color: var(--dark); font-size: 0.88rem; }
.author-location { font-size: 0.78rem; color: var(--text-light); }

.faq-list { max-width: 800px; margin: 45px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-question { padding: 17px 20px; font-weight: 700; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 0.92rem; }
.faq-question::after { content: '+'; font-size: 1.3rem; color: var(--primary); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s; color: var(--text-light); font-size: 0.88rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 250px; padding: 0 20px 16px; }

.cta-section { background: url('../img/consultation.jpg') center/cover no-repeat; color: white; text-align: center; padding: 80px 20px; position: relative; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(74,124,89,0.9), rgba(58,99,71,0.92)); }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2, .cta-section p { position: relative; z-index: 1; }
.cta-section .cta-btns { position: relative; z-index: 1; }
.cta-section h2 { font-family: 'Lora', serif; font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 600; margin-bottom: 12px; }
.cta-section p { opacity: 0.85; font-size: 1rem; margin-bottom: 30px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: white; color: var(--primary); padding: 14px 32px; border-radius: 6px; font-weight: 700; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: white; padding: 13px 31px; border-radius: 6px; font-weight: 600; text-decoration: none; border: 2px solid rgba(255,255,255,0.4); transition: all 0.3s; display: inline-block; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 55px 20px 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 35px; margin-bottom: 35px; }
.footer-logo { font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 600; color: white; margin-bottom: 10px; }
.footer-logo span { color: var(--secondary); }
.footer-desc { font-size: 0.87rem; line-height: 1.7; }
.footer-col h4 { color: white; font-weight: 700; margin-bottom: 14px; font-size: 0.88rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.8rem; flex-wrap: wrap; gap: 8px; }

.fade-in { opacity: 0; transform: translateY(25px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) { nav { display: none; } nav.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: white; padding: 20px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); gap: 15px; } .menu-toggle { display: flex; } .hero-inner { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
