/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; } /* Lenis gère le smooth scroll */
body { font-family: 'Inter', system-ui, sans-serif; color: #1A3D2B; background: #FFFFFF; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ── Skip to content (a11y) ─────────────────────────────── */
.skip-link { position: absolute; top: -100%; left: 16px; z-index: 99999; background: var(--accent); color: white; padding: 10px 20px; border-radius: 0 0 10px 10px; font-size: 14px; font-weight: 600; text-decoration: none; transition: top 0.2s; white-space: nowrap; }
.skip-link:focus { top: 0; outline: 3px solid white; outline-offset: 2px; }

/* ── Scroll progress bar ─────────────────────────────────── */
#scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 2px; background: var(--accent); transform-origin: left center; transform: scaleX(0); z-index: 10000; pointer-events: none; box-shadow: 0 0 8px rgba(249,115,22,0.6); }

/* ── Card tilt - GSAP gère le transform, on retire le :hover CSS ── */
.svc-card { will-change: transform; }
.svc-card:hover { transform: none; }
.testi-card:hover { transform: none; }

/* ── Floating CTA ────────────────────────────────────────── */
#float-cta { position: fixed; bottom: 28px; right: 28px; z-index: 8000; transform: translateY(100px); opacity: 0; pointer-events: none; transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.45s; }
#float-cta.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
#float-cta .btn { box-shadow: 0 8px 28px rgba(249,115,22,0.45); }
@media (max-width: 640px) { #float-cta { bottom: 16px; right: 16px; } }

/* ── Image reveal ────────────────────────────────────────── */
.img-reveal { clip-path: inset(0 100% 0 0); will-change: clip-path; }

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

:root {
  --navy: #1A3D2B; --navy-dark: #122B1E; --navy-mid: #1E4D36;
  --accent: #F97316; --accent-soft: #FFF4EC;
  --gray-50: #F9FAFB; --gray-100: #F3F4F6; --gray-200: #E5E7EB;
  --gray-300: #D1D5DB; --gray-400: #9CA3AF; --gray-500: #6B7280;
  --gray-600: #4B5563; --gray-700: #374151; --white: #FFFFFF;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

.poppins { font-family: 'Poppins', sans-serif; }
.mono    { font-family: 'JetBrains Mono', monospace; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }
section { padding: 100px 0; }
section[id] { scroll-margin-top: var(--navbar-h, 80px); }
section.tight { padding: 64px 0; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--accent); border-radius: 2px; flex-shrink: 0; transform: scaleX(0); transform-origin: left center; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1) 0.1s; }
.eyebrow.in-view::before { transform: scaleX(1); }

.section-title { font-family: 'Poppins', sans-serif; font-size: clamp(28px,3.2vw,44px); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 18px; }
.section-body  { font-size: 17px; line-height: 1.75; color: var(--gray-600); max-width: 560px; }

.btn { display: inline-flex; align-items: center; gap: 9px; padding: 15px 30px; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: box-shadow 0.22s var(--ease), background 0.22s, color 0.22s; will-change: transform; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--navy); color: white; box-shadow: 0 4px 16px rgba(26,61,43,0.24); }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(26,61,43,0.32); }
.btn-accent  { background: var(--accent); color: white; box-shadow: 0 4px 16px rgba(249,115,22,0.28); }
.btn-accent:hover  { background: #EA6A0A; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(249,115,22,0.36); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: white; transform: translateY(-2px); }

/* ── Placeholder image ─────────────────────────────────── */
.img-placeholder {
  width: 100%; background: linear-gradient(135deg, #1A3D2B 0%, #1E4D36 40%, #2D6A4F 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,0.35); font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.img-placeholder svg { opacity: 0.3; }

/* ── NAVBAR ───────────────────────────────────────────── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 22px 0; transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease); }
#navbar.scrolled { padding: 17px 0; background: rgba(10,26,18,0.96); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4); box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.22); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo img { height: 33px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.18s; position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 100%; height: 1.5px; background: var(--accent); border-radius: 2px; transition: right 0.25s var(--ease); }
.nav-links a:hover { color: white; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: white; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone-link { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color 0.18s; }
.nav-phone-link:hover { color: white; }
.nav-phone-link svg { width: 14px; height: 14px; }
.nav-book { padding: 10px 20px; font-size: 13px; border-radius: 7px; }
@media (max-width: 960px) { .nav-links, .nav-phone-link, .nav-book { display: none; } }

/* ── MOBILE NAV TOGGLE ────────────────────────────────── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; cursor: pointer;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 0 10px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.14); }
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: rgba(255,255,255,0.9); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s, width 0.3s var(--ease);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 960px) { .nav-hamburger { display: flex; } }
@media (max-width: 480px) {
  .nav-logo img { height: 32px; }
  .nav-inner { gap: 0; }
  .nav-right { flex-shrink: 0; }
}

/* ── MOBILE MENU DRAWER ───────────────────────────────── */
#mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 210;
  background: rgba(10,26,18,0.0);
  pointer-events: none;
  transition: background 0.35s var(--ease);
}
#mobile-menu.open {
  background: rgba(10,26,18,0.6);
  pointer-events: all;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-panel {
  position: absolute; top: 0; right: 0;
  width: min(340px, 88vw); height: 100%;
  background: var(--navy-dark);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -12px 0 48px rgba(0,0,0,0.35);
  overflow-y: auto;
}
#mobile-menu.open .mobile-panel { transform: translateX(0); }

.mobile-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.mobile-panel-logo img { height: 33px; width: auto; }
.mobile-panel-close {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; color: white;
}
.mobile-panel-close:hover { background: rgba(255,255,255,0.16); }
.mobile-panel-close svg { width: 18px; height: 18px; }

.mobile-nav-links {
  list-style: none; padding: 16px 0; flex: 1;
}
.mobile-nav-links li {
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
#mobile-menu.open .mobile-nav-links li { opacity: 1; transform: translateX(0); }
#mobile-menu.open .mobile-nav-links li:nth-child(1)  { transition-delay: 0.18s; }
#mobile-menu.open .mobile-nav-links li:nth-child(2)  { transition-delay: 0.23s; }
#mobile-menu.open .mobile-nav-links li:nth-child(3)  { transition-delay: 0.28s; }
#mobile-menu.open .mobile-nav-links li:nth-child(4)  { transition-delay: 0.33s; }
#mobile-menu.open .mobile-nav-links li:nth-child(5)  { transition-delay: 0.38s; }
#mobile-menu.open .mobile-nav-links li:nth-child(6)  { transition-delay: 0.43s; }
#mobile-menu.open .mobile-nav-links li:nth-child(7)  { transition-delay: 0.48s; }
#mobile-menu.open .mobile-nav-links li:nth-child(8)  { transition-delay: 0.53s; }
#mobile-menu.open .mobile-nav-links li:nth-child(9)  { transition-delay: 0.58s; }
#mobile-menu.open .mobile-nav-links li:nth-child(10) { transition-delay: 0.63s; }
#mobile-menu.open .mobile-nav-links li:nth-child(11) { transition-delay: 0.68s; }
.mobile-nav-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,0.75); text-decoration: none;
  transition: color 0.18s, background 0.18s;
  font-family: 'Poppins', sans-serif;
  border-left: 2px solid transparent;
}
.mobile-nav-links a:hover {
  color: white; background: rgba(255,255,255,0.05);
  border-left-color: var(--accent);
}
.mobile-nav-links a svg { width: 16px; height: 16px; opacity: 0.4; }
.mobile-nav-divider {
  height: 1px; background: rgba(255,255,255,0.07);
  margin: 8px 24px;
}
.mobile-panel-footer {
  padding: 20px 24px 32px; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 12px; flex-shrink: 0;
}
.mobile-contact-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.mobile-contact-row svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.mobile-contact-row a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.18s; }
.mobile-contact-row a:hover { color: white; }
.mobile-book-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; background: var(--accent); color: white;
  border-radius: 8px; font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}
.mobile-book-btn:hover { background: #EA6A0A; transform: translateY(-1px); }
.mobile-book-btn svg { width: 16px; height: 16px; }

/* ── HERO ─────────────────────────────────────────────── */
#hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; background: var(--navy-dark); overflow: hidden; padding: 0; }
.hero-bg { position: absolute; inset: 0; background-image: url('../images/hero-house.webp'); background-size: cover; background-position: center 30%; will-change: transform; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,26,18,0.93) 0%, rgba(14,33,23,0.82) 50%, rgba(26,61,43,0.55) 100%); }
.hero-overlay::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0H0v60' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E"); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 2; width: 100%; padding-top: 120px; padding-bottom: 60px; flex: 1; display: flex; align-items: center; }
.hero-layout { width: 100%; }
.hero-inner { max-width: 680px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.35); border-radius: 100px; padding: 8px 18px; margin-bottom: 36px; position: relative; overflow: hidden; }
.hero-badge::after { content: ''; position: absolute; top: 0; left: -80%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent); transform: skewX(-20deg); animation: badge-shimmer 4s ease-in-out infinite 2s; }
@keyframes badge-shimmer { 0%,40%{left:-80%} 60%,100%{left:160%} }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero-badge-text { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.05em; }
.hero-title { font-family: 'Poppins', sans-serif; font-size: clamp(38px,5.5vw,68px); font-weight: 800; line-height: 1.07; letter-spacing: -0.03em; color: #FFFFFF; margin-bottom: 24px; }
.hero-title .accent-word { color: var(--accent); }
.hero-title .line-2 { color: rgba(255,255,255,0.5); font-weight: 300; display: block; }
.hero-sub { font-size: 18px; line-height: 1.72; color: rgba(255,255,255,0.65); max-width: 520px; margin-bottom: 44px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 40px; }
.hero-stats { display: flex; gap: 0; flex-wrap: nowrap; }
.hero-stat { padding: 0 40px 0 0; margin-right: 40px; border-right: 1px solid rgba(255,255,255,0.12); }
.hero-stat:last-child { border-right: none; margin-right: 0; }
@media (max-width: 640px) {
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .hero-stat { padding: 0; margin-right: 0; border-right: none; border-bottom: none; }
  .hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); padding-right: 20px; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.12); }
}
.hero-stat-n { font-family: 'Poppins', sans-serif; font-size: 34px; font-weight: 800; color: white; line-height: 1; margin-bottom: 6px; }
.hero-stat-n span { color: var(--accent); }
.hero-stat-l { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; text-transform: uppercase; }
.hero-float-card { position: absolute; bottom: 24px; right: 0; background: white; border-radius: 16px; padding: 20px 24px; box-shadow: 0 24px 64px rgba(0,0,0,0.22); display: flex; align-items: center; gap: 16px; min-width: 240px; }
@media (max-width: 640px) { .hero-float-card { right: 50%; transform: translateX(50%); } }
.hero-float-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-float-icon svg { width: 24px; height: 24px; color: var(--accent); stroke-width: 1.8; }
.hero-float-title { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); }
.hero-float-sub { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.hero-scroll-hint { display: none; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3)); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ── TRUST BAR ───────────────────────────────────────── */
#trust-bar { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); position: relative; z-index: 2; }
.trust-bar-inner { display: flex; justify-content: center; flex-wrap: wrap; }
.trust-bar-item { display: flex; align-items: center; gap: 12px; padding: 24px 40px; border-right: 1px solid rgba(255,255,255,0.07); transition: background 0.2s; }
.trust-bar-item:last-child { border-right: none; }
.trust-bar-item:hover { background: rgba(255,255,255,0.03); }
.trust-bar-item svg { width: 20px; height: 20px; color: var(--accent); stroke-width: 1.8; flex-shrink: 0; }
.trust-bar-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); white-space: nowrap; }
@media (max-width: 640px) {
  .trust-bar-inner { display: grid; grid-template-columns: 1fr 1fr; }
  .trust-bar-item { padding: 18px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); justify-content: center; }
  .trust-bar-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .trust-bar-item:nth-last-child(-n+1):nth-child(odd) { grid-column: 1 / -1; border-right: none; }
  .trust-bar-item:last-child { border-bottom: none; }
}

/* ── SERVICES ─────────────────────────────────────────── */
#services { background: var(--gray-50); }
.services-head { text-align: center; margin-bottom: 64px; }
.services-head .section-body { margin: 0 auto; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) {
  .services-grid {
    display: flex;
    grid-template-columns: unset;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    margin-right: -20px;
    padding-right: 20px;
    /* masquer la scrollbar */
    scrollbar-width: none;
  }
  .services-grid::-webkit-scrollbar { display: none; }
  .services-grid .svc-card {
    flex-shrink: 0;
    width: 78vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
}
.svc-card { background: white; border-radius: 16px; border: 1px solid var(--gray-200); overflow: hidden; box-shadow: 0 1px 3px rgba(26,61,43,0.06),0 4px 12px rgba(26,61,43,0.04); transition: transform 0.3s var(--ease),box-shadow 0.3s var(--ease); cursor: pointer; position: relative; text-decoration: none; display: flex; flex-direction: column; }
.svc-card::after { content: ''; position: absolute; inset: 0; border-radius: 16px; border: 2px solid var(--accent); opacity: 0; transition: opacity 0.3s var(--ease); pointer-events: none; }
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(26,61,43,0.14); }
.svc-card:hover::after { opacity: 1; }
.svc-img { width: 100%; height: 170px; object-fit: cover; filter: saturate(0.88) brightness(0.97); display: block; transition: filter 0.4s; }
.svc-card:hover .svc-img { filter: saturate(1) brightness(1); }
.svc-img-placeholder { width: 100%; height: 170px; }
.svc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.svc-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: background 0.25s,transform 0.25s; }
.svc-icon svg { width: 20px; height: 20px; color: var(--accent); stroke-width: 1.8; }
.svc-card:hover .svc-icon { background: var(--accent); transform: scale(1.1); }
.svc-card:hover .svc-icon svg { color: white; }
.svc-title { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-desc  { font-size: 13px; line-height: 1.68; color: var(--gray-600); margin-bottom: 20px; flex: 1; }
.svc-price-row { display: flex; align-items: center; justify-content: space-between; }
.svc-price { font-family: 'JetBrains Mono', monospace; font-size: 24px; font-weight: 500; color: var(--navy); }
.svc-price-note { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.svc-arrow { width: 32px; height: 32px; border-radius: 8px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; transition: background 0.2s,transform 0.2s; }
.svc-arrow svg { width: 16px; height: 16px; color: var(--navy); }
.svc-card:hover .svc-arrow { background: var(--navy); transform: translateX(3px); }
.svc-card:hover .svc-arrow svg { color: white; }

/* ── ABOUT ────────────────────────────────────────────── */
#about { background: white; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-img-col { position: relative; }
.about-img-frame { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 32px 80px rgba(26,61,43,0.18); }
.about-img { width: 100%; height: 560px; object-fit: cover; object-position: center; display: block; filter: saturate(0.9); }
.about-img-placeholder { width: 100%; height: 560px; }
.about-img-frame::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(26,61,43,0.4) 0%, transparent 50%); }
.about-years-badge { position: absolute; bottom: -20px; right: -20px; z-index: 2; background: var(--accent); border-radius: 16px; padding: 18px 24px; box-shadow: 0 12px 36px rgba(249,115,22,0.35); text-align: center; }
.about-years-num { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 800; color: white; line-height: 1; }
.about-years-txt { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.about-col { padding-right: 8px; }
.about-p { font-size: 16px; line-height: 1.78; color: var(--gray-600); margin-bottom: 18px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin: 32px 0 36px; }
.about-feat { display: flex; align-items: flex-start; gap: 16px; padding: 16px 18px; border-radius: 12px; background: var(--gray-50); border: 1px solid var(--gray-200); transition: border-color 0.2s,box-shadow 0.2s; }
.about-feat:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(249,115,22,0.08); }
.about-feat-icon { width: 40px; height: 40px; border-radius: 10px; background: white; border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 6px rgba(26,61,43,0.06); }
.about-feat-icon svg { width: 18px; height: 18px; color: var(--navy); stroke-width: 1.8; }
.about-feat-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; font-family: 'Poppins', sans-serif; }
.about-feat-desc { font-size: 13px; line-height: 1.6; color: var(--gray-600); }

/* ── PROCESS ──────────────────────────────────────────── */
#process { background: var(--navy); position: relative; overflow: hidden; }
#process::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 900px; height: 600px; border-radius: 50%; background: radial-gradient(ellipse, rgba(249,115,22,0.08) 0%, transparent 70%); pointer-events: none; }
#process .section-title { color: white; }
.process-head { text-align: center; margin-bottom: 72px; position: relative; z-index: 1; }
.process-track { display: grid; grid-template-columns: repeat(4,1fr); position: relative; z-index: 1; }
@media (max-width: 900px) { .process-track { grid-template-columns: 1fr 1fr; gap: 40px; } .process-line { display: none; } }
.process-line { position: absolute; top: 52px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, rgba(249,115,22,0.3), rgba(249,115,22,0.55) 50%, rgba(249,115,22,0.3)); z-index: 0; transform: scaleX(0); transform-origin: left center; }
.proc-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.proc-step .proc-num-wrap { opacity: 0; }
.proc-step-body .proc-tag, .proc-step-body .proc-title, .proc-step-body .proc-duration, .proc-step-body .proc-desc { opacity: 0; }
.proc-num-wrap { width: 104px; height: 104px; border-radius: 50%; position: relative; margin-bottom: 28px; display: flex; align-items: center; justify-content: center; }
.proc-num-bg { position: absolute; inset: 0; border-radius: 50%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s var(--ease); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.proc-num-ring { position: absolute; inset: 8px; border-radius: 50%; border: 1.5px solid rgba(249,115,22,0.25); transition: all 0.3s var(--ease); }
.proc-icon { position: relative; z-index: 1; }
.proc-icon svg { width: 32px; height: 32px; color: rgba(255,255,255,0.7); stroke-width: 1.5; transition: color 0.3s; }
.proc-step:hover .proc-num-bg { background: rgba(249,115,22,0.15); border-color: rgba(249,115,22,0.4); }
.proc-step:hover .proc-num-ring { border-color: rgba(249,115,22,0.6); }
.proc-step:hover .proc-icon svg { color: var(--accent); }
@media (max-width: 560px) {
  .process-track { grid-template-columns: 1fr; gap: 0; }
  .proc-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 20px; padding: 0 0 36px; }
  .proc-step:last-child { padding-bottom: 0; }
  .proc-num-wrap { width: 64px; height: 64px; flex-shrink: 0; margin-bottom: 0; }
  .proc-num-wrap .proc-icon svg { width: 22px; height: 22px; }
  .proc-step-body { display: flex; flex-direction: column; padding-top: 8px; }
  .proc-step:not(:last-child)::after { content: ''; position: absolute; left: 32px; top: 64px; bottom: 0; width: 1px; background: linear-gradient(to bottom, rgba(249,115,22,0.4), rgba(249,115,22,0.1)); }
}
.proc-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.proc-title { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: white; margin-bottom: 10px; }
.proc-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.process-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 64px; }
.process-cta-note { font-size: 14px; color: rgba(255,255,255,0.4); }
.process-cta-note a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.18s; }
.process-cta-note a:hover { color: white; }

/* ── TESTIMONIALS ─────────────────────────────────────── */
#testimonials { background: var(--gray-50); }
.testi-head { text-align: center; margin-bottom: 48px; }
.testi-rating-badge { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1px solid var(--gray-200); border-radius: 100px; padding: 10px 20px; box-shadow: 0 2px 8px rgba(26,61,43,0.06); margin-top: 20px; }
.testi-rating-stars { display: flex; gap: 2px; }
.testi-rating-stars svg { width: 14px; height: 14px; color: #F59E0B; fill: #F59E0B; }
.testi-rating-score { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); }
.testi-rating-sep { color: var(--gray-300); font-size: 14px; }
.testi-rating-count { font-size: 13px; font-weight: 500; color: var(--gray-500); }
.testi-google-link { text-align: center; margin-top: 44px; }
.testi-google-link a { display: inline-flex; align-items: center; gap: 9px; background: white; border: 1px solid var(--gray-200); border-radius: 100px; padding: 11px 22px; font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; box-shadow: 0 2px 8px rgba(26,61,43,0.06); transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s; }
.testi-google-link a:hover { border-color: var(--gray-300); box-shadow: 0 8px 24px rgba(26,61,43,0.12); transform: translateY(-2px); }
.testi-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.testi-grid .testi-card { grid-column: span 2; }
.testi-grid .testi-card:nth-child(4) { grid-column: 2 / 4; }
.testi-grid .testi-card:nth-child(5) { grid-column: 4 / 6; }
@media (max-width: 960px) { .testi-grid { grid-template-columns: 1fr 1fr; } .testi-grid .testi-card { grid-column: span 1; } .testi-grid .testi-card:nth-child(4), .testi-grid .testi-card:nth-child(5) { grid-column: span 1; } }
@media (max-width: 600px) {
  .testi-grid {
    display: flex;
    grid-template-columns: unset;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    margin-right: -20px;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi-grid .testi-card { flex-shrink: 0; width: 82vw; max-width: 320px; scroll-snap-align: start; grid-column: unset; }
  .testi-grid .testi-card:nth-child(4), .testi-grid .testi-card:nth-child(5) { grid-column: unset; }
}
.testi-card { background: white; border-radius: 16px; border: 1px solid var(--gray-200); padding: 28px; box-shadow: 0 2px 8px rgba(26,61,43,0.05),0 1px 2px rgba(26,61,43,0.04); transition: transform 0.3s var(--ease),box-shadow 0.3s var(--ease),border-color 0.3s; position: relative; display: flex; flex-direction: column; }
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,61,43,0.12); border-color: var(--gray-300); }
.testi-quote-mark { font-family: Georgia,serif; font-size: 64px; line-height: 1; color: var(--accent); opacity: 0.18; position: absolute; top: 16px; left: 24px; user-select: none; }
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; position: relative; z-index: 1; margin-top: 30px; }
.testi-stars svg { width: 15px; height: 15px; fill: var(--accent); color: var(--accent); }
.testi-text { font-size: 14px; line-height: 1.78; color: var(--gray-700); margin-bottom: 22px; font-style: italic; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: white; flex-shrink: 0; font-family: 'Poppins', sans-serif; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy); font-family: 'Poppins', sans-serif; }
.testi-loc  { font-size: 12px; color: var(--gray-500); }
.testi-svc  { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* ── CERTS ────────────────────────────────────────────── */
#certs { background: white; }
.certs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-200); box-shadow: 0 4px 20px rgba(26,61,43,0.06); }
@media (max-width: 900px) { .certs-grid { grid-template-columns: 1fr 1fr; } }
.cert-item { background: white; padding: 36px 28px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: background 0.2s; border-right: 1px solid var(--gray-200); }
.cert-item:last-child { border-right: none; }
@media (max-width: 900px) { .cert-item:nth-child(2) { border-right: none; } .cert-item:nth-child(1), .cert-item:nth-child(2) { border-bottom: 1px solid var(--gray-200); } }
.cert-item:hover { background: var(--gray-50); }
@media (max-width: 560px) {
  .certs-grid { grid-template-columns: 1fr; }
  .cert-item { border-right: none !important; border-bottom: none !important; }
  .cert-item + .cert-item { border-top: 1px solid var(--gray-200) !important; }
}
.cert-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cert-icon svg { width: 28px; height: 28px; stroke-width: 1.5; }
.cert-title { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cert-desc { font-size: 13px; line-height: 1.6; color: var(--gray-600); }

/* ── CTA BAND ─────────────────────────────────────────── */
#cta-band { background: linear-gradient(105deg,var(--navy-dark) 0%,var(--navy) 60%,var(--navy-mid) 100%); padding: 80px 0; position: relative; overflow: hidden; }
#cta-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle,rgba(249,115,22,0.14),transparent 70%); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-text-block { max-width: 560px; }
.cta-title { font-family: 'Poppins', sans-serif; font-size: clamp(24px,3vw,38px); font-weight: 800; color: white; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.18; }
.cta-sub { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.6); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── CONTACT ──────────────────────────────────────────── */
#contact { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-info-row { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon { width: 46px; height: 46px; border-radius: 12px; background: white; border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 6px rgba(26,61,43,0.07); transition: background 0.2s,transform 0.2s; }
.ci-icon svg { width: 20px; height: 20px; color: var(--navy); stroke-width: 1.8; }
.contact-info-row:hover .ci-icon { background: var(--navy); transform: scale(1.05); }
.contact-info-row:hover .ci-icon svg { color: white; }
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px; }
.ci-val { font-size: 16px; font-weight: 600; color: var(--navy); }
.ci-link { text-decoration: none; transition: color 0.18s; }
.ci-link:hover { color: var(--accent); }
.ci-sub { font-size: 13px; color: var(--gray-500); margin-top: 2px; }
.contact-form-panel { background: white; border-radius: 20px; padding: 44px; border: 1px solid var(--gray-200); box-shadow: 0 8px 40px rgba(26,61,43,0.09); }
.cf-title { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cf-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row2 { grid-template-columns: 1fr; } }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fg:last-child { margin-bottom: 0; }
.fg label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.fg input,.fg select,.fg textarea { padding: 13px 16px; border: 1.5px solid var(--gray-200); border-radius: 9px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--navy); background: white; outline: none; width: 100%; transition: border-color 0.22s,box-shadow 0.22s; }
.fg input:focus,.fg select:focus,.fg textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,61,43,0.10); }
.fg input::placeholder,.fg textarea::placeholder { color: var(--gray-400); }
.fg select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; cursor: pointer; }
.fg textarea { resize: vertical; min-height: 110px; }
.services-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.svc-check { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1.5px solid var(--gray-200); border-radius: 9px; cursor: pointer; transition: border-color 0.2s, background 0.2s; user-select: none; }
.svc-check:hover { border-color: var(--navy); background: var(--gray-50); }
.svc-check input[type="checkbox"] { display: none; }
.svc-check-box { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--gray-300); background: white; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
.svc-check input:checked ~ .svc-check-box { background: var(--navy); border-color: var(--navy); }
.svc-check input:checked ~ .svc-check-box::after { content: ''; display: block; width: 5px; height: 9px; border: 2px solid white; border-top: none; border-left: none; transform: rotate(45deg) translateY(-1px); }
.svc-check input:checked ~ .svc-check-label .svc-check-name { color: var(--navy); font-weight: 600; }
.svc-check-label { display: flex; flex-direction: column; gap: 1px; }
.svc-check-name { font-size: 13px; font-weight: 500; color: var(--gray-700); transition: color 0.2s; }
.svc-check-price { font-size: 11px; color: var(--accent); font-weight: 600; }
.svc-check:has(input:checked) { border-color: var(--navy); background: rgba(26,61,43,0.04); }
@media (max-width: 500px) { .services-checkboxes { grid-template-columns: 1fr; } }
.form-submit-btn { width: 100%; padding: 16px; margin-top: 4px; background: var(--navy); color: white; border: none; border-radius: 9px; font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; transition: background 0.22s,transform 0.22s,box-shadow 0.22s; box-shadow: 0 4px 16px rgba(26,61,43,0.22); }
.form-submit-btn:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,61,43,0.3); }
.form-submit-btn svg { width: 18px; height: 18px; }
.form-note { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 14px; }
.field-error { display: none; font-size: 12px; color: #dc2626; margin-top: 4px; }

/* ── Address autocomplete ─────────────────────────────── */
.address-autocomplete-wrap { position: relative; }
.address-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 50;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(26,61,43,0.14);
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
}
.address-suggestions.open { display: block; }
.address-suggestions li {
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--gray-700);
  cursor: pointer;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.4;
}
.address-suggestions li:last-child { border-bottom: none; }
.address-suggestions li:hover,
.address-suggestions li.active { background: var(--gray-50); color: var(--navy); }

/* ── FOOTER ───────────────────────────────────────────── */
footer { background: var(--navy-dark); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-logo img { height: 33px; margin-bottom: 18px; }
.footer-tagline { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 300px; margin-bottom: 24px; }
.footer-contact-sm { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-sm a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.18s; }
.footer-contact-sm a:hover { color: white; }
.footer-contact-sm svg { width: 14px; height: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.footer-social a:hover { background: rgba(249,115,22,0.18); border-color: rgba(249,115,22,0.45); color: var(--accent); }
.footer-col-title { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s, transform 0.2s; display: inline-block; }
.footer-links a:hover { color: white; transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.18s; }
.footer-legal a:hover { color: rgba(255,255,255,0.85); }
.footer-credit { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-credit a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.18s; }
.footer-credit a:hover { color: white; }

/* ── GSAP init states ─────────────────────────────────── */
.gs-fade-up    { opacity: 0; transform: translateY(40px); }
.gs-fade-left  { opacity: 0; transform: translateX(-40px); }
.gs-fade-right { opacity: 0; transform: translateX(40px); }
.gs-scale-in   { opacity: 0; transform: scale(0.92); }