/* ===== ANDAMIUM - Style Principal =====
   Design: "Soleil de Gironde" — Réalisme Photographique Immersif
   Palette: Vert émeraude #1B7A4E, Blanc #FFFFFF, Anthracite #2C2C2C, Orange cuivré #D97706
   Typo: Montserrat (titres), Lato (corps)
===== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: #2C2C2C;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* --- HEADER --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 50px; width: 50px; object-fit: contain; }
.logo-text {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.3rem; letter-spacing: -0.5px;
  color: #fff; transition: color 0.3s;
}
.scrolled .logo-text { color: #1B7A4E; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px; font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.9); border-radius: 6px;
  transition: all 0.3s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.main-nav a.active { color: #fff; font-weight: 700; }
.scrolled .main-nav a { color: #555; }
.scrolled .main-nav a:hover { color: #1B7A4E; background: rgba(27,122,78,0.05); }
.scrolled .main-nav a.active { color: #1B7A4E; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  padding: 8px 0; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all 0.3s;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.88rem;
  color: #555 !important;
}
.dropdown-menu a:hover { background: rgba(27,122,78,0.05); color: #1B7A4E !important; }

/* Header CTA */
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px; font-size: 0.88rem; font-weight: 600;
  color: #fff; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px); transition: all 0.3s;
}
.header-cta:hover { background: rgba(255,255,255,0.25); }
.scrolled .header-cta {
  background: #1B7A4E; color: #fff; border-color: #1B7A4E;
}
.scrolled .header-cta:hover { background: #155e3b; }

/* Mobile Toggle */
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: #fff;
  position: absolute; left: 8px; transition: all 0.3s;
}
.scrolled .mobile-toggle span { background: #2C2C2C; }
.mobile-toggle span:nth-child(1) { top: 14px; }
.mobile-toggle span:nth-child(2) { top: 20px; }
.mobile-toggle span:nth-child(3) { top: 26px; }
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 20px; }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 20px; }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 999; overflow-y: auto; padding: 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 16px; font-size: 1rem; color: #555;
  border-radius: 8px; font-weight: 500;
}
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(27,122,78,0.05); color: #1B7A4E; }
.mobile-menu .sub-link { padding-left: 36px; font-size: 0.9rem; color: #888; }
.mobile-menu-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; padding: 14px; background: #1B7A4E; color: #fff;
  border-radius: 10px; font-weight: 600;
}

/* --- HERO --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72), rgba(0,0,0,0.35), transparent);
}
.hero-content {
  position: relative; z-index: 2; max-width: 640px;
  padding-top: 120px; padding-bottom: 60px;
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 48px;
  padding-top: 120px; padding-bottom: 60px;
}
.hero-text { flex: 1; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(217,119,6,0.9); color: #fff;
  padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 3.2rem; font-weight: 800; color: #fff; margin-bottom: 20px;
}
.hero h1 span { color: #7BA05B; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 540px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; background: #1B7A4E; color: #fff;
  border-radius: 10px; font-weight: 700; font-size: 1rem;
  font-family: 'Montserrat', sans-serif; border: none; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(27,122,78,0.3);
}
.btn-primary:hover { background: #155e3b; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(27,122,78,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; background: rgba(255,255,255,0.12); color: #fff;
  border-radius: 10px; font-weight: 700; font-size: 1rem;
  font-family: 'Montserrat', sans-serif; border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px); cursor: pointer; transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; background: #D97706; color: #fff;
  border-radius: 10px; font-weight: 700; font-size: 1rem;
  font-family: 'Montserrat', sans-serif; border: none; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(217,119,6,0.3);
}
.btn-orange:hover { background: #b86106; transform: translateY(-2px); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.scroll-mouse {
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 8px;
}
.scroll-dot {
  width: 4px; height: 10px; background: rgba(255,255,255,0.6);
  border-radius: 4px; animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* --- STATS BAR --- */
.stats-bar { background: #1B7A4E; padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { display: flex; align-items: center; gap: 14px; justify-content: center; }
.stat-icon { width: 40px; height: 40px; color: rgba(255,255,255,0.8); }
.stat-value {
  font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 800; color: #fff;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* --- SECTIONS --- */
.section { padding: 80px 0; }
.section-gray { background: #f8f9fa; }
.section-green { background: #1B7A4E; }
.section-dark { background: #1a1a2e; }
.section-label {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: #1B7A4E; margin-bottom: 12px;
}
.section-label-white { color: #D4A843; }
.section-title {
  font-size: 2.2rem; font-weight: 800; color: #2C2C2C; margin-bottom: 16px;
}
.section-title-white { color: #fff; }
.section-desc { font-size: 1.1rem; color: #777; max-width: 640px; }
.section-desc-white { color: rgba(255,255,255,0.8); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- AIDES BANNER --- */
.aides-banner { position: relative; padding: 80px 0; overflow: hidden; }
.aides-banner .bg-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.aides-banner .bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(27,122,78,0.92), rgba(27,122,78,0.75));
}
.aides-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.aides-list { list-style: none; }
.aides-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 0; color: #fff; font-size: 0.95rem;
}
.aides-list .check-icon { color: #D4A843; flex-shrink: 0; }
.aides-img {
  border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  object-fit: cover; width: 100%; height: 400px;
}

/* --- SERVICES GRID --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid #f0f0f0; transition: all 0.4s;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.service-card-img {
  height: 200px; overflow: hidden; position: relative;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-icon {
  position: absolute; top: 16px; left: 16px;
  width: 48px; height: 48px; background: #1B7A4E; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.service-icon svg { width: 24px; height: 24px; color: #fff; }
.service-card-body { padding: 24px; }
.service-card-body h3 {
  font-size: 1.1rem; font-weight: 700; color: #2C2C2C; margin-bottom: 8px;
  transition: color 0.3s;
}
.service-card:hover .service-card-body h3 { color: #1B7A4E; }
.service-card-body p { font-size: 0.9rem; color: #777; margin-bottom: 16px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: #1B7A4E;
  transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 10px; }

/* --- ABOUT / WHY US --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img {
  border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  object-fit: cover; width: 100%; height: 450px;
}
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: #1B7A4E; color: #fff; padding: 24px; border-radius: 14px;
  box-shadow: 0 8px 30px rgba(27,122,78,0.3);
}
.about-badge-value { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800; }
.about-badge-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.about-features { margin-top: 32px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px;
}
.about-feature-icon {
  width: 36px; height: 36px; background: rgba(27,122,78,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg { width: 20px; height: 20px; color: #1B7A4E; }
.about-feature h4 { font-size: 0.95rem; font-weight: 700; color: #2C2C2C; margin-bottom: 2px; }
.about-feature p { font-size: 0.88rem; color: #777; }

/* --- CTA SECTION --- */
.cta-section { position: relative; padding: 80px 0; overflow: hidden; }
.cta-section .bg-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.cta-section .bg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 32px; }

/* --- PAGE HERO (internal pages) --- */
.page-hero {
  position: relative; min-height: 50vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.page-hero .bg-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero .bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}
.page-hero-content {
  position: relative; z-index: 2; text-align: center; color: #fff;
  padding-top: 100px; padding-bottom: 60px;
}
.page-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 16px; }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto; }

/* --- CONTENT GRID (services pages) --- */
.content-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.feature-card {
  background: #fff; padding: 32px; border-radius: 14px;
  border: 1px solid #f0f0f0; transition: box-shadow 0.3s;
}
.feature-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.feature-icon {
  width: 56px; height: 56px; background: rgba(27,122,78,0.08);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; color: #1B7A4E; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; color: #2C2C2C; margin-bottom: 12px; }
.feature-card p { font-size: 0.9rem; color: #777; }

/* Solutions cards (photovoltaique) */
.solutions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.solution-card {
  padding: 32px; border-radius: 14px; color: #fff;
}
.solution-card.green { background: linear-gradient(135deg, #1B7A4E, #155e3b); }
.solution-card.orange { background: linear-gradient(135deg, #D97706, #b86106); }
.solution-icon {
  width: 56px; height: 56px; background: rgba(255,255,255,0.2);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.solution-icon svg { width: 28px; height: 28px; color: #fff; }
.solution-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.solution-card p { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-size: 0.95rem; }
.solution-list li {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 0; font-size: 0.9rem;
}
.solution-list .check { color: #D4A843; flex-shrink: 0; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; }
.step-number {
  width: 48px; height: 48px; background: #1B7A4E; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 700;
  margin: 0 auto 16px;
}
.step h3 { font-weight: 700; color: #2C2C2C; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: #777; }

/* Advantages grid */
.advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.advantage { text-align: center; padding: 24px; background: #f8f9fa; border-radius: 14px; }
.advantage-icon {
  width: 56px; height: 56px; background: rgba(27,122,78,0.1);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.advantage-icon svg { width: 28px; height: 28px; color: #1B7A4E; }
.advantage h3 { font-size: 0.95rem; font-weight: 700; color: #2C2C2C; margin-bottom: 8px; }
.advantage p { font-size: 0.85rem; color: #777; }

/* Aides grid */
.aides-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.aide-card {
  background: #fff; padding: 32px; border-radius: 14px;
  border: 1px solid #f0f0f0; transition: box-shadow 0.3s;
}
.aide-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }

/* Check list */
.check-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 0; font-size: 0.95rem;
}
.check-list .icon-check { color: #1B7A4E; flex-shrink: 0; }

/* Alert box */
.alert-box {
  background: #fef2f2; border: 1px solid #fecaca; border-radius: 14px;
  padding: 32px; display: flex; align-items: flex-start; gap: 16px;
}
.alert-box .alert-icon { color: #ef4444; flex-shrink: 0; width: 32px; height: 32px; }
.alert-box h3 { font-size: 1.1rem; font-weight: 700; color: #991b1b; margin-bottom: 8px; }
.alert-box p { font-size: 0.9rem; color: #b91c1c; }

/* Info box */
.info-box {
  background: rgba(27,122,78,0.04); border-radius: 14px;
  padding: 40px 48px;
}
.info-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.info-feature {
  display: flex; align-items: center; gap: 12px;
}
.info-feature .icon-check { color: #1B7A4E; flex-shrink: 0; }
.info-feature span { font-size: 0.9rem; font-weight: 600; color: #2C2C2C; }

/* --- CONTACT FORM --- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.88rem; font-weight: 600; color: #2C2C2C;
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 1px solid #e0e0e0;
  border-radius: 10px; font-size: 0.95rem; font-family: 'Lato', sans-serif;
  transition: border-color 0.3s; background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #1B7A4E; box-shadow: 0 0 0 3px rgba(27,122,78,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-card {
  background: #f8f9fa; border-radius: 14px; padding: 32px;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px;
}
.contact-info-icon {
  width: 44px; height: 44px; background: rgba(27,122,78,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: #1B7A4E; }
.contact-info-item h4 { font-size: 0.9rem; font-weight: 700; color: #2C2C2C; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.88rem; color: #777; }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(27,122,78,0.1); display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.social-link:hover { background: #1B7A4E; }
.social-link svg { width: 18px; height: 18px; color: #1B7A4E; transition: color 0.3s; }
.social-link:hover svg { color: #fff; }

/* --- FOOTER --- */
.site-footer { background: #1a1a2e; color: #fff; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.footer-desc { font-size: 0.9rem; color: #9ca3af; margin: 16px 0 24px; line-height: 1.7; }
.footer-title {
  font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: #9ca3af; transition: color 0.3s; }
.footer-links a:hover { color: #7BA05B; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px;
}
.footer-contact-item svg { width: 20px; height: 20px; color: #1B7A4E; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.88rem; color: #9ca3af; }
.footer-contact-item a { color: #9ca3af; }
.footer-contact-item a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.footer-social a:hover { background: #1B7A4E; }
.footer-social svg { width: 16px; height: 16px; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px; padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.8rem; color: #6b7280; }
.footer-bottom a { font-size: 0.8rem; color: #6b7280; transition: color 0.3s; }
.footer-bottom a:hover { color: #fff; }

/* --- HERO FORM --- */
.hero-form-wrap {
  flex-shrink: 0; width: 360px;
}
.hero-form {
  background: rgba(255,255,255,0.97); border-radius: 16px;
  padding: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
}
.hero-form-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.hero-form-header svg { color: #1B7A4E; flex-shrink: 0; }
.hero-form-header h3 {
  font-family: 'Montserrat', sans-serif; font-size: 1.2rem;
  font-weight: 700; color: #2C2C2C;
}
.hero-form p {
  font-size: 0.88rem; color: #777; margin-bottom: 20px; line-height: 1.5;
}
.hero-form-group { margin-bottom: 14px; }
.hero-form-group input {
  width: 100%; padding: 13px 16px; border: 1px solid #e0e0e0;
  border-radius: 10px; font-size: 0.92rem; font-family: 'Lato', sans-serif;
  transition: border-color 0.3s; background: #fff; color: #2C2C2C;
}
.hero-form-group input:focus {
  outline: none; border-color: #1B7A4E;
  box-shadow: 0 0 0 3px rgba(27,122,78,0.1);
}
.hero-form-btn { width: 100%; justify-content: center; }

/* --- FLOATING BUTTONS --- */
.floating-btns {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.phone-btn {
  width: 56px; height: 56px; background: #1B7A4E; border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(27,122,78,0.4);
  transition: all 0.3s;
}
.phone-btn:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(27,122,78,0.5); }
.phone-btn svg { width: 26px; height: 26px; color: #fff; }
.whatsapp-btn {
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 28px; height: 28px; color: #fff; }

/* --- CALLBACK MODAL --- */
.callback-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.callback-modal.open { opacity: 1; visibility: visible; }
.callback-modal-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.callback-modal-content {
  position: relative; background: #fff; border-radius: 20px;
  padding: 40px; max-width: 420px; width: 90%;
  box-shadow: 0 25px 80px rgba(0,0,0,0.2);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s;
}
.callback-modal.open .callback-modal-content {
  transform: translateY(0) scale(1);
}
.callback-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border: none; background: #f3f4f6;
  border-radius: 50%; font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #666; transition: all 0.3s; line-height: 1;
}
.callback-modal-close:hover { background: #e5e7eb; color: #2C2C2C; }
.callback-modal-icon {
  width: 60px; height: 60px; background: rgba(27,122,78,0.1);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.callback-modal-icon svg { color: #1B7A4E; }
.callback-modal-content h3 {
  font-family: 'Montserrat', sans-serif; font-size: 1.3rem;
  font-weight: 700; color: #2C2C2C; margin-bottom: 8px;
}
.callback-modal-content > p {
  font-size: 0.92rem; color: #777; margin-bottom: 24px; line-height: 1.5;
}
.callback-modal-content .hero-form-group { margin-bottom: 14px; }

/* --- ANIMATIONS --- */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .main-nav, .header-cta { display: none; }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: 2.4rem; }
  .hero-inner { flex-direction: column; gap: 32px; align-items: stretch; }
  .hero-text { max-width: 100%; }
  .hero-form-wrap { width: 100%; max-width: 420px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { display: none; }
  .aides-grid { grid-template-columns: 1fr; }
  .aides-img { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .aides-cards { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero-inner { padding-top: 100px; padding-bottom: 40px; }
  .hero-form-wrap { max-width: 100%; }
  .hero-form { padding: 24px; }
  .page-hero h1 { font-size: 2rem; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .content-grid-2 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .aides-cards { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .info-features { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .callback-modal-content { padding: 28px; }
}

/* --- CONTACT PAGE EXTRA --- */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
}
.contact-detail-icon {
  width: 48px; height: 48px; background: rgba(27,122,78,0.08);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 22px; height: 22px; color: #1B7A4E; }
.contact-form-wrapper {
  background: #f8f9fa; border-radius: 16px; padding: 36px;
}
.contact-form { max-width: 100%; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}
