/* =========================================================
   Adam Appliance Repair — styles.css
   Navy #2D3A4A  |  Gold #C9973A
   Animations: CSS keyframes (framer-motion equivalent)
   ========================================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #2D3A4A;
  --navy-dark:   #1E2832;
  --navy-light:  #3d4f63;
  --gold:        #C9973A;
  --gold-light:  #DFB05A;
  --gold-dark:   #a87b2a;
  --white:       #ffffff;
  --off-white:   #F8F9FB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-400:    #9CA3AF;
  --gray-600:    #6B7280;
  --error:       #DC2626;
  --success:     #16A34A;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.16);
  --shadow-gold: 0 8px 28px rgba(201,151,58,.38);
  /* Unified animation tokens */
  --spring:      cubic-bezier(.22,.68,0,1.15);
  --spring-soft: cubic-bezier(.22,.68,0,1.05);
  --ease-out:    cubic-bezier(.0,0,.2,1);
  --dur-fast:    150ms;
  --dur-base:    220ms;
  --dur-slow:    320ms;
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; font-weight: 700; }
a,button,[role="button"],select { cursor: pointer; }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--gold); color: var(--white);
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  padding: 12px 20px; border-radius: 0 0 var(--radius) var(--radius);
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus { top: 0; outline: 3px solid var(--navy); outline-offset: 2px; }

/* ---------- Container ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ==========================================================
   KEYFRAME ANIMATIONS (framer-motion equivalents)
   ========================================================== */

/* Hero entrance animations */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleUp {
  from { opacity: 0; transform: scale(.88) translateY(16px); }
  to   { opacity: 1; transform: scale(1)   translateY(0);    }
}

/* Floating / idle animations */
@keyframes floatY {
  0%,100% { transform: translateY(0);  }
  50%      { transform: translateY(-7px); }
}

/* Shimmer sweep on gold buttons */
@keyframes shimmerSweep {
  from { left: -80%; }
  to   { left: 160%; }
}

/* Pulsing ring on floating call button */
@keyframes callRing {
  0%   { box-shadow: 0 6px 24px rgba(201,151,58,.45), 0 0 0 0   rgba(201,151,58,.45); }
  60%  { box-shadow: 0 6px 24px rgba(201,151,58,.45), 0 0 0 16px rgba(201,151,58,0);  }
  100% { box-shadow: 0 6px 24px rgba(201,151,58,.45), 0 0 0 0   rgba(201,151,58,0);  }
}

/* Fade-up for scroll reveals */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  border: 2px solid transparent;
  min-height: 48px; min-width: 48px;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  user-select: none; position: relative; overflow: hidden;
  transition:
    background    var(--dur-base) ease,
    border-color  var(--dur-base) ease,
    transform     var(--dur-fast) var(--spring),
    box-shadow    var(--dur-base) ease;
}
.btn-lg   { padding: 16px 32px; font-size: 16px; min-height: 54px; }
.btn-full { width: 100%; justify-content: center; }

/* §7 scale-feedback on press */
.btn:active { transform: scale(.97) !important; box-shadow: none !important; }

/* Gold shimmer sweep */
.btn-gold::after {
  content: '';
  position: absolute; top: 0; left: -80%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}
.btn-gold:hover::after { animation: shimmerSweep .55s ease forwards; }

.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--navy-dark); border-color: var(--navy-dark);
  transform: translateY(-3px); box-shadow: 0 10px 28px rgba(45,58,74,.32);
}

.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--gold-dark); border-color: var(--gold-dark);
  transform: translateY(-3px); box-shadow: var(--shadow-gold);
}

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover, .btn-outline-white:focus-visible {
  background: rgba(255,255,255,.1); border-color: var(--white);
  transform: translateY(-3px);
}

/* Consistent focus ring */
.btn:focus-visible, a:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px;
}

/* ---------- Section Base ---------- */
.section { padding: 96px 0; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(2rem,4vw,2.75rem); color: var(--navy); margin-bottom: 16px; }
.section-header p  { font-size: 17px; color: #5A6A7A; line-height: 1.7; }

.section-label {
  display: inline-block;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,151,58,.1);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
  border: 1px solid rgba(201,151,58,.22);
}

/* ==========================================================
   SCROLL REVEAL (Intersection Observer driven)
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--spring-soft);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ==========================================================
   TOP BAR
   ========================================================== */
.top-bar {
  background: var(--navy-dark); color: rgba(255,255,255,.82);
  font-size: 13px; padding: 9px 0;
}
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,.82); transition: color var(--dur-fast); padding: 4px 0; }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-right { display: flex; gap: 24px; flex-wrap: wrap; }

/* ==========================================================
   HEADER
   ========================================================== */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); box-shadow: 0 1px 0 var(--gray-200);
  transition: box-shadow var(--dur-base) ease;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.11); }

.header-inner { display: flex; align-items: center; gap: 24px; padding: 10px 0; }

.nav-brand { flex-shrink: 0; display: flex; align-items: center; }
.logo { height: 80px; width: auto; object-fit: contain; display: block; }

.nav { margin-left: auto; }
.nav-list { display: flex; gap: 2px; align-items: center; }
.nav-link {
  font-family: var(--font-head); font-size: 14px; font-weight: 500; color: var(--navy);
  padding: 9px 13px; border-radius: 8px; min-height: 44px;
  display: flex; align-items: center; position: relative;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-link:hover, .nav-link:focus-visible { color: var(--gold); background: rgba(201,151,58,.08); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 4px; left: 13px; right: 13px;
  height: 2px; background: var(--gold); border-radius: 2px;
  animation: fadeIn var(--dur-base) ease forwards;
}

.nav-cta { margin-left: 8px; padding: 10px 20px; min-height: 44px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 10px; margin-left: auto;
  min-width: 44px; min-height: 44px; justify-content: center; align-items: center;
  border-radius: 8px; touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--spring), opacity var(--dur-fast);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 8px;
  padding: 16px 24px 24px; border-top: 1px solid var(--gray-200); background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  font-family: var(--font-head); font-size: 15px; font-weight: 500;
  color: var(--navy); padding: 12px 14px; border-radius: 8px;
  display: flex; align-items: center; min-height: 44px;
  transition: color var(--dur-fast), background var(--dur-fast);
  touch-action: manipulation;
}
.mobile-menu a:hover { color: var(--gold); background: rgba(201,151,58,.08); }

/* ==========================================================
   HERO — staggered load animations
   ========================================================== */
.hero {
  position: relative; background: var(--navy); color: var(--white);
  padding: 100px 0 80px; overflow: hidden; min-height: 620px;
  display: flex; align-items: center;
}

/* Background layers */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #141c25 0%, var(--navy-dark) 35%, var(--navy) 65%, #3a5068 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,151,58,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,151,58,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: fadeIn 1.2s ease .3s both;
}
.hero-bg::after {
  content: ''; position: absolute; right: -150px; top: -150px;
  width: 650px; height: 650px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,58,.15) 0%, transparent 65%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center;
}

/* Staggered entrance — framer-motion initial/animate equivalent */
.hero-badge    { animation: fadeSlideUp .6s var(--spring-soft) .08s both; }
.hero-content h1 { animation: fadeSlideUp .75s var(--spring-soft) .22s both; }
.hero-sub      { animation: fadeSlideUp .6s var(--spring-soft) .42s both; }
.hero-ctas     { animation: fadeSlideUp .6s var(--spring-soft) .60s both; }
.hero-trust    { animation: fadeIn       .5s ease-out          .80s both; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,151,58,.13); border: 1px solid rgba(201,151,58,.3);
  color: var(--gold-light); font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 24px;
  font-family: var(--font-head); letter-spacing: .05em;
}

.hero-content h1 {
  font-size: clamp(2.4rem,5vw,3.75rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 24px; color: var(--white); letter-spacing: -.01em;
}
.hero-accent { color: var(--gold-light); }

.hero-sub {
  font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.78);
  max-width: 520px; margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.72);
}
.trust-item i { color: var(--gold-light); font-size: 15px; }

/* Stat cards — staggered scaleUp + persistent float */
.hero-card-group { display: flex; flex-direction: column; gap: 16px; flex-shrink: 0; }

.hero-stat-card:nth-child(1) { animation: scaleUp .55s var(--spring) .50s both, floatY 3.2s ease-in-out 1.2s infinite; }
.hero-stat-card:nth-child(2) { animation: scaleUp .55s var(--spring) .65s both, floatY 3.2s ease-in-out 1.8s infinite; }
.hero-stat-card:nth-child(3) { animation: scaleUp .55s var(--spring) .80s both, floatY 3.2s ease-in-out 2.4s infinite; }

.hero-stat-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 24px 32px; text-align: center;
  min-width: 160px; backdrop-filter: blur(8px);
  transition: background var(--dur-base), border-color var(--dur-base);
}
/* Override transform from animation on hover */
.hero-stat-card:hover {
  background: rgba(201,151,58,.12); border-color: rgba(201,151,58,.3);
  animation-play-state: paused;
  transform: translateY(-6px) !important;
}
.stat-num {
  display: block; font-family: var(--font-head); font-size: 2.25rem; font-weight: 800;
  color: var(--gold-light); line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; }

/* ==========================================================
   SERVICES
   ========================================================== */
.services { background: var(--off-white); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1.5px solid var(--gray-200);
  display: flex; flex-direction: column; gap: 12px;
  transition:
    box-shadow  var(--dur-base) ease,
    border-color var(--dur-base) ease,
    transform   var(--dur-slow) var(--spring-soft);
  will-change: transform;
}
.service-card:hover {
  box-shadow: -4px 0 0 var(--gold), 0 20px 40px rgba(201,151,58,.14), var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-8px);
}

.service-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold-light); flex-shrink: 0; margin-bottom: 4px;
  transition: transform var(--dur-base) var(--spring);
}
.service-card:hover .service-icon { transform: scale(1.12) rotate(-5deg); }

.service-card h3 { font-size: 1.15rem; color: var(--navy); }
.service-card p  { font-size: 15px; color: #5A6A7A; line-height: 1.65; flex: 1; }

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  color: var(--gold); margin-top: 4px; padding: 4px 0;
  min-height: 32px; touch-action: manipulation;
  transition: gap var(--dur-fast), color var(--dur-fast);
}
.service-link:hover { gap: 10px; color: var(--gold-dark); }

/* ==========================================================
   BRANDS
   ========================================================== */
.brands { background: var(--navy); }
.brands .section-label  { color: var(--gold-light); background: rgba(201,151,58,.13); border-color: rgba(201,151,58,.25); }
.brands .section-header h2 { color: var(--white); }
.brands .section-header p  { color: rgba(255,255,255,.62); }

.brands-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.brand-item {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82); padding: 12px 24px; border-radius: 100px;
  font-family: var(--font-head); font-size: 14px; font-weight: 500;
  min-height: 44px; display: flex; align-items: center;
  transition:
    background    var(--dur-base),
    border-color  var(--dur-base),
    color         var(--dur-base),
    transform     var(--dur-fast) var(--spring);
}
.brand-item:hover {
  background: rgba(201,151,58,.15); border-color: rgba(201,151,58,.4);
  color: var(--gold-light); transform: scale(1.06);
}
.brand-more { background: rgba(201,151,58,.13); border-color: rgba(201,151,58,.3); color: var(--gold-light); }

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

.why-us-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.why-us-left  { position: sticky; top: 120px; }
.why-us-left h2 { font-size: clamp(1.75rem,3.5vw,2.5rem); color: var(--navy); margin-bottom: 20px; }
.why-us-left p  { font-size: 16px; color: #5A6A7A; line-height: 1.7; margin-bottom: 36px; }

.why-stats { display: flex; gap: 28px; margin-bottom: 40px; flex-wrap: wrap; }
.why-stat  { display: flex; flex-direction: column; gap: 4px; }
.stat-big  { font-family: var(--font-head); font-size: 2.1rem; font-weight: 800; color: var(--gold); line-height: 1; }
.why-stat span:last-child { font-size: 13px; color: #5A6A7A; font-weight: 500; }

.why-us-right { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.why-item {
  display: flex; gap: 16px; padding: 24px; border-radius: var(--radius);
  border: 1.5px solid var(--gray-200); background: var(--off-white);
  transition:
    border-color var(--dur-base),
    box-shadow   var(--dur-base),
    transform    var(--dur-slow) var(--spring-soft);
}
.why-item:hover {
  border-color: var(--gold); box-shadow: 0 4px 18px rgba(201,151,58,.13);
  transform: translateY(-3px);
}

.why-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 18px; flex-shrink: 0;
  transition: transform var(--dur-base) var(--spring);
}
.why-item:hover .why-icon { transform: scale(1.15) rotate(-4deg); }

.why-text h3 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.why-text p  { font-size: 14px; color: #5A6A7A; line-height: 1.6; }

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.how-it-works { background: var(--navy-dark); }
.how-it-works .section-label  { color: var(--gold-light); background: rgba(201,151,58,.13); border-color: rgba(201,151,58,.25); }
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p  { color: rgba(255,255,255,.62); }

.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 16px; align-items: start; }

.step-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 40px 28px; text-align: center; position: relative;
  transition:
    background    var(--dur-base),
    border-color  var(--dur-base),
    box-shadow    var(--dur-base),
    transform     var(--dur-slow) var(--spring-soft);
}
.step-card:hover {
  background: rgba(255,255,255,.09); border-color: var(--gold);
  box-shadow: 0 0 32px rgba(201,151,58,.18); transform: translateY(-7px);
}

.step-number {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 4px 16px; border-radius: 0 0 10px 10px;
}

.step-icon {
  width: 72px; height: 72px; background: rgba(201,151,58,.13); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 20px auto; font-size: 26px; color: var(--gold-light);
  transition: transform var(--dur-base) var(--spring);
}
.step-card:hover .step-icon { transform: scale(1.12); }

.step-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 12px; }
.step-card p  { color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.65; }
.step-card a  { color: var(--gold-light); text-decoration: underline; }

.step-arrow {
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,151,58,.38); font-size: 22px; padding-top: 80px;
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials { background: var(--off-white); }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px 32px;
  border: 1.5px solid var(--gray-200); display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition:
    box-shadow   var(--dur-base),
    border-color var(--dur-base),
    transform    var(--dur-slow) var(--spring-soft);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md); border-color: var(--gold); transform: translateY(-5px);
}

/* Decorative quote mark */
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 12px; right: 20px;
  font-family: Georgia,serif; font-size: 80px; color: rgba(201,151,58,.1);
  line-height: 1; pointer-events: none; user-select: none;
  transition: color var(--dur-base);
}
.testimonial-card:hover::before { color: rgba(201,151,58,.18); }

.stars { color: var(--gold); font-size: 15px; display: flex; gap: 3px; }

.testimonial-card blockquote {
  font-size: 15px; line-height: 1.7; color: #5A6A7A; flex: 1;
  font-style: italic; position: relative; z-index: 1;
}

.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--gray-200);
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light); font-family: var(--font-head); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; color: var(--navy); font-family: var(--font-head); }
.testimonial-author span   { font-size: 13px; color: var(--gray-400); }

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

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

.contact-info .section-label { display: inline-block; margin-bottom: 12px; }
.contact-info h2 { font-size: clamp(1.75rem,3.5vw,2.5rem); color: var(--navy); margin-bottom: 16px; }
.contact-info > p { font-size: 16px; color: #5A6A7A; line-height: 1.7; margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item    { display: flex; align-items: flex-start; gap: 16px; }

.contact-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 17px; flex-shrink: 0;
}
.contact-item strong {
  display: block; font-size: 12px; color: #5A6A7A; font-weight: 600;
  margin-bottom: 2px; font-family: var(--font-head); letter-spacing: .08em; text-transform: uppercase;
}
.contact-item a, .contact-item span {
  font-size: 16px; color: var(--navy); font-weight: 600; font-family: var(--font-head);
}
.contact-item a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--off-white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 40px;
}
.contact-form h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 28px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label { font-size: 14px; font-weight: 600; color: var(--navy); font-family: var(--font-head); }
.required { color: var(--gold); }

input, select, textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--gray-200); border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; color: var(--navy);
  background: var(--white); min-height: 48px; touch-action: manipulation;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
input::placeholder, textarea::placeholder { color: var(--gray-400); }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(45,58,74,.1);
}
input.error, select.error { border-color: var(--error); }
input.error:focus, select.error:focus { box-shadow: 0 0 0 3px rgba(220,38,38,.12); }

select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
textarea { resize: vertical; min-height: 120px; }

.field-error {
  font-size: 13px; color: var(--error); min-height: 18px;
  display: flex; align-items: center; gap: 4px;
}
.field-error:not(:empty)::before { content: '\26A0'; font-size: 12px; }

.form-note { text-align: center; font-size: 13px; color: var(--gray-600); margin-top: 12px; line-height: 1.5; }
.form-note a { color: var(--gold); text-decoration: underline; }

.form-success { text-align: center; padding: 48px 24px; }
.form-success i { font-size: 56px; color: var(--success); margin-bottom: 20px; display: block; }
.form-success h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: 12px; }
.form-success p  { color: #5A6A7A; line-height: 1.6; }
.form-success a  { color: var(--gold); text-decoration: underline; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.72); padding: 72px 0 0; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo { height: 60px; width: auto; object-fit: contain; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 280px; }

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a { font-size: 14px; color: rgba(255,255,255,.58); transition: color var(--dur-fast); }
.footer-links a:hover { color: var(--gold-light); }

.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.58); }
.footer-contact i  { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact a  { color: rgba(255,255,255,.58); transition: color var(--dur-fast); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px; padding: 24px 0;
  font-size: 13px; color: rgba(255,255,255,.36);
}

/* ==========================================================
   FLOATING CALL BUTTON — pulse ring animation
   ========================================================== */
.floating-call {
  display: none; position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: var(--white); font-size: 22px;
  align-items: center; justify-content: center;
  animation: callRing 2.8s ease-out 1.5s infinite;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  transition: transform var(--dur-fast) var(--spring), background var(--dur-fast);
}
.floating-call:hover { animation: none; transform: scale(1.12); box-shadow: 0 12px 36px rgba(201,151,58,.55); }
.floating-call:active { transform: scale(.94); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1024px) {
  .why-us-inner  { grid-template-columns: 1fr; gap: 48px; }
  .why-us-left   { position: static; }
  .why-us-right  { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-card-group { flex-direction: row; justify-content: flex-start; }
  .hero-stat-card  { min-width: 140px; }
  .steps-grid    { grid-template-columns: 1fr; gap: 24px; }
  .step-arrow    { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav      { display: none; }
  .nav-cta  { display: none; }
  .hamburger { display: flex; }
  .top-bar-right { display: none; }
  .hero { padding: 72px 0 60px; }
  .hero-content h1 { font-size: 2.25rem; }
  .hero-card-group { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-us-right  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .floating-call { display: flex; }
  .logo { height: 64px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section   { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .hero { padding: 56px 0 48px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 16px; }
  .services-grid  { grid-template-columns: 1fr; }
  .brands-grid    { gap: 8px; }
  .brand-item     { font-size: 13px; padding: 10px 18px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 16px; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .logo   { height: 56px; }
  .why-stats { gap: 20px; }
}
