/* libresanspermis.fr - Location voiture sans permis */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --secondary: #fb923c;
  --dark: #1c1917;
  --text: #292524;
  --text-light: #78716c;
  --bg: #fff7ed;
  --white: #ffffff;
  --border: #e7e5e4;
  --gray: #57534e;
}

* { 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 2px 20px rgba(249,115,22,0.1); 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-size: 1.4rem; font-weight: 800; 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.9rem; transition: color 0.3s; }
nav a:hover { color: var(--primary); }
.nav-cta { background: var(--primary); color: var(--white) !important; padding: 10px 22px; border-radius: 25px; 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: linear-gradient(135deg, #1c1917 0%, #292524 60%, #1c1917 100%); color: white; padding: 90px 20px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, transparent, rgba(249,115,22,0.1)); }
.hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge { display: inline-block; background: var(--primary); color: white; padding: 6px 18px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.15rem; opacity: 0.85; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--primary); color: white; padding: 15px 35px; border-radius: 30px; font-weight: 700; font-size: 1.05rem; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(249,115,22,0.4); }
.btn-secondary { background: rgba(255,255,255,0.1); color: white; padding: 15px 35px; border-radius: 30px; font-weight: 600; font-size: 1.05rem; text-decoration: none; border: 2px solid rgba(255,255,255,0.3); transition: all 0.3s; display: inline-block; }
.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.hero-stats { display: flex; justify-content: center; gap: 50px; margin-top: 60px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.hero-stat span { font-size: 0.9rem; opacity: 0.8; }

section { padding: 80px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-badge { display: inline-block; background: var(--bg); color: var(--primary); padding: 5px 16px; border-radius: 15px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--dark); margin-bottom: 15px; line-height: 1.2; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto 50px; }
.text-center { text-align: center; }

.vehicles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 50px; }
.vehicle-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 2px solid var(--border); transition: all 0.3s; }
.vehicle-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(249,115,22,0.15); border-color: var(--primary); }
.vehicle-header { background: linear-gradient(135deg, var(--dark), #3c3936); padding: 30px; text-align: center; }
.vehicle-icon { font-size: 3rem; margin-bottom: 10px; }
.vehicle-name { color: white; font-size: 1.2rem; font-weight: 700; }
.vehicle-body { padding: 25px; }
.vehicle-price { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
.vehicle-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); }
.vehicle-features { list-style: none; margin-top: 15px; display: flex; flex-direction: column; gap: 8px; }
.vehicle-features li { display: flex; gap: 8px; color: var(--text-light); font-size: 0.9rem; }
.vehicle-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.vehicle-cta { display: block; background: var(--primary); color: white; text-align: center; padding: 12px; border-radius: 8px; text-decoration: none; font-weight: 700; margin-top: 20px; transition: background 0.3s; }
.vehicle-cta:hover { background: var(--primary-dark); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 50px; }
.service-card { background: white; border-radius: 16px; padding: 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); border: 1px solid var(--border); transition: all 0.3s; }
.service-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.service-icon { width: 60px; height: 60px; background: var(--bg); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 50px; }
.testimonial-card { background: white; border-radius: 16px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); border: 1px solid var(--border); }
.stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { color: var(--text); font-style: italic; margin-bottom: 18px; line-height: 1.7; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1rem; }
.author-name { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.author-location { font-size: 0.8rem; color: var(--text-light); }

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

.cta-section { background: linear-gradient(135deg, var(--dark), #3c3936); color: white; text-align: center; padding: 80px 20px; }
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 15px; }
.cta-section p { opacity: 0.85; font-size: 1.1rem; margin-bottom: 35px; }
.cta-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: white; color: var(--primary); padding: 15px 35px; border-radius: 30px; font-weight: 700; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,255,255,0.2); }
.btn-outline-white { background: transparent; color: white; padding: 15px 35px; border-radius: 30px; 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.75); padding: 60px 20px 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-size: 1.3rem; font-weight: 800; color: white; margin-bottom: 12px; }
.footer-logo span { color: var(--primary); }
.footer-desc { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { color: white; font-weight: 700; margin-bottom: 16px; font-size: 0.9rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: 0.83rem; flex-wrap: wrap; gap: 8px; }

.fade-in { opacity: 0; transform: translateY(30px); 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 10px 30px rgba(0,0,0,0.1); gap: 15px; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
