/* ========================================
   A-Ability Repair Service — Stylesheet
   Bold editorial · Emerald + Cream
   ======================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;
  --emerald-950: #022c22;

  --cream-50: #fefdf8;
  --cream-100: #fdf9ef;
  --cream-200: #faf3e0;
  --cream-300: #f5e6c8;
  --cream-400: #edc99a;
  --cream-500: #e0a866;
  --cream-600: #c48840;
  --cream-700: #a0662e;
  --cream-800: #7a4d23;
  --cream-900: #523317;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #0a0f1a;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.16), 0 8px 20px rgba(0,0,0,0.08);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate-800);
  background-color: var(--cream-50);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 253, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 95, 70, 0.08);
  transition: box-shadow var(--transition-base);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--emerald-900);
  text-decoration: none;
}

.nav-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--emerald-700);
  border-radius: var(--radius-sm);
  color: var(--cream-50);
}

.nav-logo-accent {
  color: var(--emerald-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-600);
  transition: width var(--transition-base);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--emerald-700);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--emerald-700);
  color: var(--cream-50) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--emerald-800);
  color: var(--cream-50) !important;
  transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-800);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 15, 26, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-overlay-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--cream-50);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.mobile-overlay.open .mobile-overlay-inner {
  transform: translateX(0);
}

.mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--slate-800);
  padding: 14px 0;
  border-bottom: 1px solid var(--slate-200);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-link:hover {
  color: var(--emerald-700);
  padding-left: 8px;
}

.mobile-cta-btn {
  margin-top: 16px;
  border-bottom: none;
  background: var(--emerald-700);
  color: var(--cream-50);
  text-align: center;
  border-radius: var(--radius-sm);
  padding: 16px;
}

.mobile-cta-btn:hover {
  background: var(--emerald-800);
  color: var(--cream-50);
  padding-left: 16px;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: var(--emerald-950);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-card {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--emerald-300);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream-50);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-headline-accent {
  color: var(--emerald-400);
  font-style: italic;
}

.hero-subheadline {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--slate-300);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background: var(--emerald-600);
  color: var(--cream-50);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}

.btn-primary:hover {
  background: var(--emerald-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--cream-100);
  border: 1.5px solid rgba(253, 249, 239, 0.3);
}

.btn-secondary:hover {
  border-color: var(--cream-300);
  background: rgba(253, 249, 239, 0.08);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream-50);
  border: 1.5px solid rgba(253, 249, 239, 0.4);
}

.btn-outline-light:hover {
  background: rgba(253, 249, 239, 0.1);
  border-color: var(--cream-200);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Floating Stat Cards */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: all var(--transition-base);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateX(-4px);
}

.stat-card--1 { border-left: 3px solid var(--emerald-400); }
.stat-card--2 { border-left: 3px solid var(--cream-400); }
.stat-card--3 { border-left: 3px solid var(--emerald-300); }

.stat-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-300);
}

.stat-card--2 .stat-card-icon {
  background: rgba(224, 168, 102, 0.15);
  color: var(--cream-400);
}

.stat-card--3 .stat-card-icon {
  background: rgba(110, 231, 183, 0.15);
  color: var(--emerald-200);
}

.stat-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-card-number {
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream-50);
  letter-spacing: -0.01em;
}

.stat-card-label {
  font-size: 0.8rem;
  color: var(--slate-400);
  font-weight: 400;
}

/* ========================================
   SECTION SHARED
   ======================================== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-headline-accent {
  color: var(--emerald-700);
  font-style: italic;
}

.section-description {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--slate-600);
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  background: var(--cream-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  transition: all var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-200);
}

.service-card-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 2.6;
}

.service-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-visual img {
  transform: scale(1.05);
}

.service-card-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.7) 0%, rgba(6, 95, 70, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-50);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover .service-card-visual-overlay {
  opacity: 1;
}

.service-card-body {
  padding: 28px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--slate-600);
}

/* ========================================
   WHY US
   ======================================== */
.why-us {
  background: var(--cream-100);
}

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.why-us-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--emerald-200);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.5;
}

.why-us-content {
  max-width: 520px;
}

.why-us-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-100);
  color: var(--emerald-700);
  border-radius: var(--radius-sm);
}

.why-feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.why-feature-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate-600);
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  background: var(--cream-50);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  max-width: 540px;
}

.about-text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--slate-600);
  margin-bottom: 20px;
}

.about-text:last-of-type {
  margin-bottom: 0;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  background: var(--emerald-900);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 20%, rgba(16, 185, 129, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.testimonials .section-header {
  position: relative;
  z-index: 1;
}

.testimonials .section-eyebrow {
  color: var(--emerald-400);
}

.testimonials .section-headline {
  color: var(--cream-50);
}

.testimonials .section-headline-accent {
  color: var(--emerald-400);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.testimonial-card-quote {
  margin-bottom: 20px;
}

.testimonial-card-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--slate-300);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream-50);
}

.testimonial-card-location {
  font-size: 0.8rem;
  color: var(--slate-400);
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: var(--emerald-700);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(16, 185, 129, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 30%, rgba(4, 120, 87, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  color: var(--emerald-200);
}

.cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream-50);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-banner-headline-accent {
  color: var(--emerald-200);
  font-style: italic;
}

.cta-banner-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--emerald-100);
  margin-bottom: 36px;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner .btn-primary {
  background: var(--cream-50);
  color: var(--emerald-900);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary:hover {
  background: var(--cream-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
  background: var(--cream-50);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  max-width: 480px;
}

.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-100);
  color: var(--emerald-700);
  border-radius: var(--radius-sm);
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
}

.contact-detail-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-800);
}

.contact-detail-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--emerald-700);
  transition: color var(--transition-fast);
}

.contact-detail-link:hover {
  color: var(--emerald-500);
}

/* Form */
.contact-form-wrapper {
  background: var(--cream-100);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
  letter-spacing: 0.02em;
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--cream-50);
  color: var(--slate-800);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-input::placeholder {
  color: var(--slate-400);
}

.form-input:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 0;
}

.form-success.show {
  display: flex;
}

.contact-form.hidden {
  display: none;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-100);
  color: var(--emerald-700);
  border-radius: 50%;
  margin-bottom: 4px;
}

.form-success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
}

.form-success-text {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
  max-width: 360px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream-50);
  margin-bottom: 16px;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--emerald-700);
  border-radius: var(--radius-sm);
  color: var(--cream-50);
}

.footer-logo-accent {
  color: var(--emerald-400);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--slate-400);
}

.footer-links-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream-50);
  margin-bottom: 20px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: var(--slate-400);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--emerald-400);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact-list a {
  color: var(--slate-400);
  transition: color var(--transition-fast);
}

.footer-contact-list a:hover {
  color: var(--emerald-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.82rem;
  color: var(--slate-500);
}

.footer-location {
  color: var(--slate-500);
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal[data-reveal-delay="1"] { transition-delay: 0.1s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.2s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.3s; }
.reveal[data-reveal-delay="4"] { transition-delay: 0.4s; }
.reveal[data-reveal-delay="5"] { transition-delay: 0.5s; }
.reveal[data-reveal-delay="6"] { transition-delay: 0.6s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
  .stat-card:hover { transform: none; }
  .service-card:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
  .btn:hover { transform: none; }
  .nav-cta:hover { transform: none; }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stat-card { flex: 1; min-width: 200px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-us-content,
  .about-content,
  .contact-info { max-width: 100%; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }
  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .hero-stats {
    flex-direction: column;
  }
  .stat-card { min-width: 100%; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .why-us-image-accent { display: none; }

  .contact-form-wrapper { padding: 28px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .hero { padding: 90px 16px 50px; }
  .contact-form-wrapper { padding: 20px; }
}
