/* ============================================
   Roto-Rooter Plumbing & Water Cleanup - Concord, NC
   Brand: Deep Purple #2A1768 | Red #DA291C
   Fonts: Oswald (headings) + Source Sans 3 (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

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

:root {
  --primary: #2A1768;
  --primary-dark: #1b0f44;
  --primary-light: #3d2490;
  --secondary: #DA291C;
  --secondary-dark: #b51f14;
  --text: #393939;
  --text-light: #666;
  --bg: #ffffff;
  --bg-soft: #f7f7f9;
  --bg-dark: #0f0929;
  --border: #e5e5e5;
  --shadow: 0 4px 24px rgba(42,23,104,0.12);
  --shadow-lg: 0 12px 48px rgba(42,23,104,0.18);
  --radius: 6px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--secondary-dark); }
ul { list-style: none; }

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

/* ---- Utility ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 640px;
}
.accent { color: var(--secondary); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218,41,28,.35);
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover, .btn-outline-dark:focus-visible {
  background: var(--primary);
  color: white;
}
*:focus-visible { outline: 3px solid var(--secondary); outline-offset: 3px; }

/* ---- Header / Nav ---- */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo-wrap img { width: 52px; height: 52px; border-radius: 4px; object-fit: contain; background: white; padding: 4px; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .brand { font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700; color: white; letter-spacing: .04em; text-transform: uppercase; line-height: 1; }
.logo-text .tagline { font-size: .7rem; color: rgba(255,255,255,.65); letter-spacing: .08em; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-menu a {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: .5rem .9rem;
  border-radius: var(--radius);
  transition: all .2s;
  text-decoration: none;
}
.nav-menu a:hover, .nav-menu a.active { color: white; background: rgba(255,255,255,.12); }
.nav-cta {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--secondary);
  color: white !important;
  padding: .55rem 1.25rem !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--secondary-dark) !important; color: white !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: white;
}
.hamburger svg { display: block; }

/* ---- Emergency Bar ---- */
.emergency-bar {
  background: var(--secondary);
  text-align: center;
  padding: .5rem 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: white;
}
.emergency-bar a { color: white; font-weight: 700; text-decoration: underline; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,10,68,.92) 45%, rgba(42,23,104,.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(218,41,28,.18);
  border: 1px solid rgba(218,41,28,.4);
  color: #ff9e96;
  font-size: .8rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  animation: fadeUp .6s ease both;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  animation: fadeUp .6s .1s ease both;
}
.hero h1 span { color: var(--secondary); display: block; }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeUp .6s .2s ease both;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeUp .6s .3s ease both;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  animation: fadeUp .6s .4s ease both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
}
.hero-trust-item svg { color: var(--secondary); flex-shrink: 0; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Trust Band ---- */
.trust-band {
  background: var(--primary);
  padding: 1.5rem 0;
}
.trust-band-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.trust-item svg { color: #ff9e96; }

/* ---- Stats Band ---- */
.stats-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .4rem;
  display: block;
}
.stat-icon { color: var(--secondary); margin-bottom: .5rem; display: flex; justify-content: center; }

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(42,23,104,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  transition: all .3s;
}
.service-card:hover .service-icon {
  background: var(--secondary);
  color: white;
}
.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.service-card p { font-size: .9rem; color: var(--text-light); line-height: 1.6; }

/* ---- Testimonials ---- */
.testimonials-section { background: var(--bg-soft); }
.tc-outer { position: relative; max-width: 800px; margin: 0 auto; }
.tc-track-wrap { overflow: hidden; border-radius: var(--radius-lg); }
.tc-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tc-slide {
  min-width: 100%;
  background: white;
  padding: 2.5rem 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.tc-stars { color: #f59e0b; display: flex; gap: 2px; margin-bottom: 1rem; }
.tc-quote {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
}
.tc-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: rgba(42,23,104,.1);
  font-family: Georgia, serif;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  line-height: 1;
}
.tc-author {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .04em;
}
.tc-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.5rem;
}
.tc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(42,23,104,.2);
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.tc-dot.active { background: var(--secondary); transform: scale(1.3); }
.tc-arrows { display: flex; gap: .75rem; justify-content: center; margin-top: 1rem; }
.tc-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: none;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.tc-arrow:hover { background: var(--primary); color: white; }

/* ---- FAQ Accordion ---- */
.faq-section { background: white; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: .02em;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-chevron { flex-shrink: 0; transition: transform .3s; color: var(--secondary); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--secondary); }
.faq-answer {
  padding: 0 0 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
  font-size: .95rem;
}

/* ---- Service Area Map ---- */
.map-section { background: var(--bg-soft); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.area-tag {
  background: rgba(42,23,104,.08);
  color: var(--primary);
  border: 1px solid rgba(42,23,104,.15);
  padding: .35rem .85rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #a01510 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: .75rem;
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}
.cta-section .btn { position: relative; }

/* ---- About Preview ---- */
.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: white;
  border-radius: var(--radius);
  padding: .85rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.about-img-badge .badge-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.about-img-badge .badge-text { font-size: .8rem; color: var(--text-light); line-height: 1.3; font-weight: 600; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: var(--text-light); line-height: 1.75; margin-bottom: 1.25rem; }
.about-checks { display: flex; flex-direction: column; gap: .6rem; margin: 1.5rem 0 2rem; }
.about-check {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}
.about-check svg { color: var(--secondary); flex-shrink: 0; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: .5rem;
}
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: white; }

/* ---- Services All Page ---- */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.service-full-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all .25s;
}
.service-full-card:hover { border-color: var(--secondary); box-shadow: var(--shadow); transform: translateX(4px); }
.service-full-icon {
  width: 40px; height: 40px;
  background: rgba(218,41,28,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}
.service-full-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* ---- Before/After Slider ---- */
.ba-section { background: var(--primary-dark); padding: 5rem 0; }
.ba-section .section-title { color: white; }
.ba-section .section-subtitle { color: rgba(255,255,255,.65); }
.ba-slider-wrap { max-width: 800px; margin: 0 auto; }

/* ---- Contact Page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
.contact-info-box { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon {
  width: 44px; height: 44px;
  background: rgba(42,23,104,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.info-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: .25rem;
}
.info-card p, .info-card a { font-size: 1rem; color: var(--text); font-weight: 600; }
.info-card a:hover { color: var(--secondary); }

.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-soft);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-weight: 600;
  display: none;
  margin-top: 1rem;
}

/* ---- About Page ---- */
.about-story { background: var(--bg-soft); }
.about-story-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.certifications-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.cert-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.cert-icon { width: 40px; height: 40px; background: rgba(218,41,28,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--secondary); flex-shrink: 0; }
.cert-card span { font-size: .9rem; font-weight: 700; color: var(--text); }

/* ---- Footer ---- */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.75); padding: 4rem 0 1.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: .75rem 0 .6rem;
}
.footer-brand p { font-size: .88rem; line-height: 1.65; }
.footer-logo { width: 52px; border-radius: 4px; background: white; padding: 4px; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-contact p { font-size: .9rem; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,.85); }
.footer-contact a:hover { color: white; }
.footer-phone {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary) !important;
  margin: .5rem 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  font-size: .8rem;
}
.footer-license {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.social-links { display: flex; gap: .75rem; margin-top: .75rem; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: all .2s;
}
.social-links a:hover { background: var(--secondary); color: white; }

/* ---- Floating CTA ---- */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--secondary);
  color: white;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(218,41,28,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(218,41,28,.55); color: white; }
.floating-cta-label {
  position: fixed;
  bottom: 2.25rem;
  right: 6rem;
  z-index: 50;
  background: var(--primary-dark);
  color: white;
  padding: .4rem .85rem;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.floating-cta:hover ~ .floating-cta-label { opacity: 1; }

/* ---- Scroll Reveal ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s 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; }

/* ---- Payment / Trust ---- */
.payment-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin-top: 1rem; }
.payment-badge {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .3rem .75rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-light);
}

/* ---- Mobile ---- */
@media (max-width: 900px) {
  .about-preview { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-menu { display: none; flex-direction: column; position: fixed; inset: 0; top: 0; background: var(--primary-dark); padding: 5rem 2rem 2rem; gap: .25rem; z-index: 99; }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 1.1rem; padding: .75rem 1rem; border-radius: var(--radius); }
  .hamburger { display: flex; align-items: center; justify-content: center; z-index: 100; position: relative; }
  .hero { min-height: 85vh; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tc-slide { padding: 1.75rem 1.5rem; }
  .section { padding: 3.5rem 0; }
}

@media (min-width: 768px) {
  .floating-cta { bottom: 2rem; right: 2rem; width: 66px; height: 66px; }
}

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