/* J Plumbing Service — Retro Americana Utility Theme */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Lato:wght@300;400;700;900&display=swap');

:root {
  --primary: #1B2A4A;
  --primary-dark: #0F1D35;
  --secondary: #CC2936;
  --secondary-dark: #A8202C;
  --bg: #FAF8F4;
  --surface: #F0EDE8;
  --surface-2: #E8E4DD;
  --text: #1C1C1E;
  --text-muted: #5C6370;
  --border: #D8D3CC;
  --white: #FFFFFF;
  --light-navy: #EEF1F7;
  --shadow: rgba(27, 42, 74, 0.15);
  --shadow-lg: rgba(27, 42, 74, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Abril Fatface', serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* Top Bar */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: .4rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.top-bar a { color: var(--white); font-weight: 700; transition: opacity .2s; }
.top-bar a:hover { opacity: .8; }

/* Header / Nav */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--shadow-lg);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 70px;
}
.logo-wrap { display: flex; align-items: center; gap: .75rem; }
.logo-icon {
  width: 42px; height: 42px;
  background: var(--secondary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: white; flex-shrink: 0;
}
.logo-text { color: white; }
.logo-text .brand-name {
  font-family: 'Abril Fatface', serif;
  font-size: 1.1rem;
  line-height: 1;
  display: block;
}
.logo-text .brand-tagline {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: .7;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: white;
  border-color: var(--secondary);
}
.nav-cta {
  background: var(--secondary);
  color: white !important;
  padding: .6rem 1.25rem !important;
  border-radius: 6px !important;
  border-bottom: none !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--secondary-dark) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .5rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--primary-dark);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: .75rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 700;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: block;
}
.mobile-nav a:last-child { border-bottom: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,18,35,.85) 0%, rgba(27,42,74,.7) 60%, rgba(204,41,54,.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--secondary);
  color: white;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: white;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.hero h1 .accent { color: #FF9CA3; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--secondary);
  color: white;
  font-weight: 900;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 2px solid var(--secondary);
  transition: background .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,41,54,.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.5);
  transition: background .2s, border-color .2s;
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: white;
}
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 700;
}
.trust-icon {
  width: 32px; height: 32px;
  background: rgba(204,41,54,.25);
  border: 1px solid rgba(204,41,54,.4);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

/* Diagonal stripe accent bar */
.stripe-bar {
  background: var(--secondary);
  height: 6px;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,.15) 8px,
    rgba(255,255,255,.15) 16px
  );
}

/* Quick contact strip */
.contact-strip {
  background: var(--primary);
  color: white;
  padding: 1.5rem;
  text-align: center;
}
.contact-strip .strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-strip .strip-label {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: .7;
}
.contact-strip .strip-phone {
  font-family: 'Abril Fatface', serif;
  font-size: 1.8rem;
  color: white;
  letter-spacing: 1px;
  transition: color .2s;
}
.contact-strip .strip-phone:hover { color: #FF9CA3; }
.contact-strip .strip-divider {
  width: 1px; height: 40px; background: rgba(255,255,255,.2);
}
.contact-strip .strip-note {
  font-size: .9rem;
  opacity: .8;
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-light { background: var(--bg); }
.section-alt { background: var(--surface); }
.section-dark { background: var(--primary); color: white; }
.section-dark .section-subtitle { color: rgba(255,255,255,.7); }

.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .75rem;
  padding: .3rem .75rem;
  background: rgba(204,41,54,.08);
  border-radius: 4px;
  border-left: 3px solid var(--secondary);
}
.section-dark .section-label { background: rgba(204,41,54,.2); }

.section-title {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--primary);
}
.section-dark .section-title { color: white; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--secondary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
  border-color: rgba(204,41,54,.2);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--light-navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: background .3s;
}
.service-card:hover .service-icon { background: rgba(204,41,54,.1); }
.service-card h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--secondary);
  transition: gap .2s;
}
.service-link:hover { gap: .6rem; }

/* About section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}
.about-img-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--secondary);
  color: white;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(204,41,54,.4);
}
.about-img-badge .badge-num {
  display: block;
  font-family: 'Abril Fatface', serif;
  font-size: 1.6rem;
  line-height: 1;
}
.about-img-badge .badge-label {
  font-size: .7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .9;
}
.about-content .section-label { margin-bottom: 1rem; }
.about-content .section-title { margin-bottom: 1.25rem; }
.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-list {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text);
}
.about-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  min-width: 20px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
  margin-top: 2px;
}

/* Before/After Slider */
.ba-section {
  background: var(--primary);
  padding: 5rem 1.5rem;
  color: white;
}
.ba-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.ba-inner .section-title { color: white; margin-bottom: .75rem; }
.ba-inner .section-subtitle { color: rgba(255,255,255,.75); margin: 0 auto 2.5rem; }

/* FAQ Accordion */
.faq-list {
  max-width: 780px;
  margin: 2.5rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--primary);
  list-style: none;
  user-select: none;
}
.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(--secondary);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item .faq-body {
  padding: .5rem 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .95rem;
}

/* CTA Banner */
.cta-banner {
  background: var(--secondary);
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 20px,
    rgba(0,0,0,.04) 20px, rgba(0,0,0,.04) 40px
  );
  padding: 4rem 1.5rem;
  text-align: center;
  color: white;
}
.cta-banner h2 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: .75rem;
  color: white;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto; margin-right: auto;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: white;
  color: var(--secondary);
  font-weight: 900;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 2px solid white;
  transition: background .2s, transform .2s;
}
.btn-white:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-box { padding-top: .5rem; }
.contact-info-box h2 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.9rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--light-navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-weight: 900;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.contact-detail-text a {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
  transition: color .2s;
}
.contact-detail-text a:hover { color: var(--secondary); }

/* Form styles */
.contact-form-wrap {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,42,74,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  background: var(--secondary);
  color: white;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, transform .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.form-submit:hover {
  background: var(--secondary-dark);
  transform: translateY(-1px);
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: #F0FFF4;
  border-radius: 10px;
  border: 1px solid #9AE6B4;
}
.form-success.show { display: block; }
.form-success h4 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.3rem;
  color: #276749;
  margin-bottom: .5rem;
}

/* Map */
.map-container {
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 3rem;
}

/* Page Hero (inner pages) */
.page-hero {
  background: var(--primary);
  background-image: linear-gradient(135deg, #0F1D35 0%, #1B2A4A 60%, #2A3F6E 100%);
  padding: 4rem 1.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 30px,
    rgba(255,255,255,.02) 30px, rgba(255,255,255,.02) 60px
  );
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.page-hero h1 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  margin-bottom: .75rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { opacity: .5; }

/* Service detail cards (services page) */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-detail-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow);
}
.service-detail-img {
  width: 100%; height: 180px;
  object-fit: cover;
}
.service-detail-body { padding: 1.5rem; }
.service-detail-body h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: .6rem;
}
.service-detail-body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.service-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .2rem .6rem;
  background: var(--light-navy);
  color: var(--primary);
  border-radius: 4px;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: .5rem;
}
.why-card p { font-size: .9rem; color: var(--text-muted); }

/* Areas served */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.area-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary);
}
.area-item::before {
  content: '📍';
  font-size: .85rem;
}

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-wrap { margin-bottom: 1rem; }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  opacity: .7;
  max-width: 240px;
}
.footer-col h4 {
  font-family: 'Abril Fatface', serif;
  color: white;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-col ul li a:hover { color: white; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .75rem;
}
.footer-contact-item a {
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-contact-item a:hover { color: white; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 50;
  background: var(--secondary);
  color: white;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(204,41,54,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(204,41,54,.5);
}
@media (min-width: 768px) {
  .floating-cta { bottom: 2rem; right: 2rem; width: 64px; height: 64px; }
}

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(30px); 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; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .about-img-wrap img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.25rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar { justify-content: center; text-align: center; }
  .section { padding: 3.5rem 1rem; }
  .hero-content { padding: 3rem 1rem; }
  .page-hero { padding: 2.5rem 1rem; }
}
