/* ============================================================
   Amen Plumbing - Rock Hill, SC
   Theme: "Southern Blue Backbone"
   Fonts: Teko (display) + Nunito Sans (body)
   Colors: Navy #1C2B4A, Brand Blue #4D74B5, Sky #6EC1E4,
           Amber #F5A200, Red #D7263D
   ============================================================ */

:root {
  --navy:   #1C2B4A;
  --blue:   #4D74B5;
  --sky:    #6EC1E4;
  --red:    #D7263D;
  --amber:  #F5A200;
  --dark:   #353535;
  --gray:   #6B7280;
  --light:  #EFF4FB;
  --white:  #FAFAFA;
  --shadow: 0 4px 24px rgba(28,43,74,.12);
  --shadow-lg: 0 8px 40px rgba(28,43,74,.18);
  --radius: 8px;
  --radius-lg: 16px;
  --primary: var(--blue);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--amber);
  color: #000;
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  z-index: 999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---- Top Bar ---- */
.top-bar {
  background: var(--navy);
  color: #fff;
  font-size: .82rem;
  font-family: 'Nunito Sans', sans-serif;
  padding: .4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar a { color: var(--sky); font-weight: 700; }
.top-bar a:hover { color: #fff; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1rem; }
.top-bar .badge {
  background: var(--amber);
  color: #000;
  font-weight: 800;
  font-size: .72rem;
  padding: .15rem .55rem;
  border-radius: 20px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-logo img {
  height: 56px;
  width: auto;
  filter: brightness(1.1);
}
.site-logo-text {
  font-family: 'Teko', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .03em;
  line-height: 1.1;
}
.site-logo-text span { color: var(--sky); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-menu a {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  padding: .45rem .85rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .2s, background .2s;
}
.nav-menu a:hover,
.nav-menu a[aria-current="page"] { color: #fff; background: rgba(77,116,181,.35); }
.nav-cta a {
  background: var(--amber) !important;
  color: #000 !important;
  font-weight: 800 !important;
  padding: .5rem 1.1rem !important;
}
.nav-cta a:hover { background: #e09200 !important; transform: translateY(-1px); }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: var(--radius);
  cursor: pointer;
  padding: .4rem .55rem;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://amenplumbing.net/wp-content/uploads/2026/01/qtq80-oF8SUA.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(28,43,74,.92) 0%,
    rgba(28,43,74,.75) 55%,
    rgba(77,116,181,.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,162,0,.15);
  border: 1px solid rgba(245,162,0,.4);
  color: var(--amber);
  font-family: 'Nunito Sans', sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  animation: fadeInDown .6s ease both;
}
.hero-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  animation: fadeInDown .7s ease .1s both;
}
.hero-title span { color: var(--sky); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-bottom: 2rem;
  animation: fadeInDown .7s ease .2s both;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInDown .7s ease .3s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: #000;
  border-color: var(--amber);
}
.btn-primary:hover { background: #e09200; border-color: #e09200; color: #000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,162,0,.4); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; transform: translateY(-2px); }
.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-blue:hover { background: #3d64a5; border-color: #3d64a5; color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn svg { flex-shrink: 0; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  animation: fadeInDown .7s ease .4s both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 600;
}
.hero-trust-item svg { color: var(--sky); flex-shrink: 0; }

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--blue);
  padding: 1.2rem 1.5rem;
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  color: #fff;
}
.stat-num {
  font-family: 'Teko', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--amber);
  display: block;
}
.stat-label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .9;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* ---- Section Basics ---- */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--light);
  padding: .3rem .9rem;
  border-radius: 20px;
  margin-bottom: .9rem;
}
h2 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: .75rem;
}
h3 {
  font-family: 'Teko', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Services Overview ---- */
.services-overview { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(77,116,181,.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  opacity: 0;
  transition: opacity .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(77,116,181,.35); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 50px;
  height: 50px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue);
  transition: background .25s, color .25s;
}
.service-card:hover .service-icon { background: var(--blue); color: #fff; }
.service-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.service-card p { font-size: .92rem; color: var(--gray); line-height: 1.65; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--blue);
  font-weight: 700;
  font-size: .88rem;
  margin-top: .9rem;
  transition: gap .2s;
}
.service-link:hover { gap: .6rem; color: var(--navy); }

/* ---- Why Choose ---- */
.why-choose { background: var(--light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(28,43,74,.06);
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.why-card h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.why-card p { font-size: .9rem; color: var(--gray); line-height: 1.6; }

/* ---- Counters Band ---- */
.counters-band {
  background: var(--navy);
  padding: 3.5rem 1.5rem;
}
.counters-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 4rem;
}
.counter-item { text-align: center; color: #fff; }
.counter-item .counter {
  font-family: 'Teko', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
  line-height: 1;
}
.counter-item .counter-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
  margin-top: .35rem;
}

/* ---- Testimonials ---- */
.testimonials { background: #fff; }
.tc-wrapper {
  max-width: 780px;
  margin: 0 auto;
}
.tc-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.tc-track {
  display: flex;
  transition: transform .5s ease;
}
.tc-slide {
  min-width: 100%;
  padding: 2.5rem;
  background: var(--light);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-lg);
}
.tc-quote {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 1.25rem;
  position: relative;
}
.tc-quote::before {
  content: '"';
  font-family: 'Teko', sans-serif;
  font-size: 4rem;
  color: var(--blue);
  opacity: .3;
  line-height: .5;
  display: block;
  margin-bottom: .5rem;
}
.tc-stars { color: var(--amber); font-size: 1.1rem; margin-bottom: .5rem; }
.tc-author {
  font-weight: 800;
  color: var(--navy);
  font-size: .95rem;
}
.tc-source {
  font-size: .8rem;
  color: var(--gray);
}
.tc-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
}
.tc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  opacity: .3;
  cursor: pointer;
  transition: opacity .3s, transform .3s;
}
.tc-dot.active { opacity: 1; transform: scale(1.3); }

/* ---- Service Area Map ---- */
.service-area { background: var(--light); }
.map-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
#service-area-map {
  height: 380px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.areas-list { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.25rem; }
.areas-list li {
  background: #fff;
  border: 1px solid rgba(77,116,181,.25);
  color: var(--navy);
  font-weight: 700;
  font-size: .85rem;
  padding: .35rem .85rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.areas-list li::before { content: ''; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }

/* ---- Before/After Slider ---- */
.ba-section { background: var(--navy); padding: 4rem 1.5rem; }
.ba-section .section-tag { background: rgba(110,193,228,.15); color: var(--sky); }
.ba-section h2 { color: #fff; }
.ba-section .section-sub { color: rgba(255,255,255,.7); }
.ba-slider {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 2rem auto 0;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  user-select: none;
  box-shadow: var(--shadow-lg);
}

/* ---- FAQ ---- */
.faq-section { background: #fff; }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(77,116,181,.15);
  padding: 1.1rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}
.faq-item summary:hover { color: var(--blue); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-chevron { transition: transform .3s; flex-shrink: 0; color: var(--blue); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--blue); }
.faq-item > div {
  padding: .75rem 0 .35rem;
  color: var(--gray);
  line-height: 1.75;
  font-size: .97rem;
}

/* ---- CTA Band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #2a3f6a 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(77,116,181,.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---- Credentials Strip ---- */
.creds-strip {
  background: var(--blue);
  padding: 1.2rem 1.5rem;
}
.creds-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}
.cred-item svg { color: var(--amber); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a3f6a 100%);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1657558665549-bd7d82afed8c?w=1400&h=400&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
  opacity: .08;
}
.page-hero-content { position: relative; }
.page-hero h1 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .75rem;
}
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--sky); }
.breadcrumb span { opacity: .5; }

/* ---- About Page ---- */
.about-story { background: #fff; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--amber);
  color: #000;
  font-family: 'Teko', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: var(--radius);
}
.about-text p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: .98rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.team-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(77,116,181,.15);
  transition: box-shadow .2s, transform .2s;
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
  color: #fff;
  font-family: 'Teko', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.team-card h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.team-card .team-title { font-size: .85rem; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }

/* ---- Services Full Page ---- */
.services-full { background: #fff; }
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.svc-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(77,116,181,.12);
  transition: box-shadow .2s, transform .2s, background .2s;
  position: relative;
}
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); background: #fff; }
.svc-num {
  font-family: 'Teko', sans-serif;
  font-size: 1rem;
  color: var(--blue);
  opacity: .5;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.svc-card h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.svc-card p { font-size: .9rem; color: var(--gray); line-height: 1.65; }

/* ---- Contact ---- */
.contact-section { background: #fff; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1.25rem; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.4rem;
}
.info-icon {
  width: 42px;
  height: 42px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.info-item strong { display: block; color: var(--navy); font-weight: 800; margin-bottom: .15rem; font-size: .92rem; text-transform: uppercase; letter-spacing: .05em; }
.info-item span, .info-item a { color: var(--gray); font-size: .95rem; }
.info-item a:hover { color: var(--blue); }
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #e6f7ee;
  color: #16803c;
  font-weight: 800;
  font-size: .8rem;
  padding: .25rem .75rem;
  border-radius: 20px;
  margin-top: .4rem;
}
.open-badge::before { content: ''; width: 8px; height: 8px; background: #16803c; border-radius: 50%; }

.contact-form-wrap {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid rgba(77,116,181,.15);
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy);
  margin-bottom: .4rem;
  letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(77,116,181,.25);
  border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(77,116,181,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  background: #e6f7ee;
  border: 1px solid #86efac;
  color: #15803d;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
}
.form-success.visible { display: block; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--blue); color: #fff; }
.footer-col h4 {
  font-family: 'Teko', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: .04em;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--sky); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .8rem;
  font-size: .88rem;
}
.footer-contact-item svg { color: var(--sky); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--sky); }
.footer-bottom {
  max-width: 1200px;
  margin: 1.25rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--sky); }

/* ---- Floating CTA ---- */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--amber);
  color: #000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(245,162,0,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(245,162,0,.55); color: #000; }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ---- Animations ---- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Focus Styles ---- */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
button:focus-visible,
a:focus-visible { border-radius: 4px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .map-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 1rem; }
  h2 { font-size: 2rem; }
  .hero { min-height: 80vh; }
  .hero-content { padding: 4rem 1rem 3rem; }
  .top-bar-left { display: none; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 1rem; gap: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: .75rem 1rem; border-radius: var(--radius); }
  .menu-toggle { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-img img { height: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar-inner { gap: 1rem; }
  .stat-divider { display: none; }
  .counters-inner { gap: 2rem; }
  .hero-trust { gap: .75rem; }
  .creds-inner { gap: 1.25rem; justify-content: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .hero-bg { background-attachment: scroll; }
}
