/*
  ================================================================
  MR T JUNK REMOVAL — styles.css  (v2 — Premium Redesign)

  TABLE OF CONTENTS:
  1.  CSS Custom Properties (design tokens)
  2.  Reset & Base
  3.  Typography helpers
  4.  Buttons
  5.  Header & Navigation
  6.  Hero Section
  7.  Trust Bar
  8.  About Section
  9.  Services Section
  10. Construction Section
  11. Why Us Section
  12. Pricing Section
  13. Testimonials Section
  14. Contact / Form Section
  15. Footer
  16. Floating Action Buttons
  17. Reveal animations
  18. Responsive — Tablet (≤1024px)
  19. Responsive — Mobile (≤768px)
  20. Responsive — Small phone (≤480px)
  ================================================================
*/


/* ================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   Everything stems from these variables. Change one value here
   and it updates the entire site consistently.
   ================================================================ */
:root {

  /* ---- Core palette ---- */
  --navy:          #0B1524;   /* Darkest — hero bg, footer */
  --navy-mid:      #122040;   /* Mid dark — cards on dark bg */
  --blue:          #1D52F0;   /* Primary brand blue */
  --blue-hover:    #1640C8;   /* Darker blue — hover/active states */
  --blue-light:    #EEF4FF;   /* Lightest blue — tinted section bg, pills */
  --blue-mid:      #BFDBFE;   /* Mid blue — borders, highlights */
  --amber:         #F59E0B;   /* Construction section accent */
  --amber-dark:    #D97706;   /* Amber hover state */
  --green-check:   #10B981;   /* Checkmarks, success states */

  /* ---- Neutrals ---- */
  --white:         #FFFFFF;
  --surface:       #F7F9FC;   /* Tinted section backgrounds */
  --border:        #E4ECF5;   /* Subtle borders */
  --border-dark:   #CDD9EE;   /* Slightly more visible borders */
  --text-primary:  #0D1B2E;   /* Near-black body text */
  --text-secondary:#4A5F7A;   /* Muted body text */
  --text-hint:     #8A9EBC;   /* Very muted — labels, hints */

  /* ---- Typography ---- */
  --font-display:  'Bricolage Grotesque', system-ui, sans-serif;  /* Headings */
  --font-body:     'Manrope', system-ui, sans-serif;              /* Body, UI */

  /* ---- Spacing ---- */
  --gap-xs:   0.5rem;    /*  8px */
  --gap-sm:   1rem;      /* 16px */
  --gap-md:   1.5rem;    /* 24px */
  --gap-lg:   2.5rem;    /* 40px */
  --gap-xl:   4rem;      /* 64px */
  --gap-2xl:  6rem;      /* 96px */

  /* ---- Radius ---- */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  22px;
  --r-2xl: 32px;

  /* ---- Shadows ---- */
  --shadow-xs: 0 1px 3px rgba(11,21,36,0.06);
  --shadow-sm: 0 2px 10px rgba(11,21,36,0.07);
  --shadow-md: 0 6px 24px rgba(11,21,36,0.09), 0 2px 6px rgba(11,21,36,0.05);
  --shadow-lg: 0 16px 48px rgba(11,21,36,0.12), 0 4px 12px rgba(11,21,36,0.07);
  --shadow-blue: 0 8px 32px rgba(29,82,240,0.28), 0 2px 8px rgba(29,82,240,0.15);

  /* ---- Transitions ---- */
  --ease:       all 0.22s ease;
  --ease-slow:  all 0.38s ease;
}


/* ================================================================
   2. RESET & BASE
   ================================================================ */

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-primary);
}

/* ================================================================
   3. TYPOGRAPHY HELPERS
   ================================================================ */

/* Container: centers and caps max-width */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Section wrapper — consistent vertical breathing room */
.section {
  padding: var(--gap-2xl) 0;
}

/* Light tinted background alternate */
.section--tinted {
  background: var(--surface);
}

/* Eyebrow — small label above headings */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--blue-mid);
  margin-bottom: 18px;
}

/* Main section headings */
.section-heading {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

/* Subtitle paragraph below heading */
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
}

/* Body paragraph text */
.body-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Centered section header block */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--gap-xl);
}

.section-header .section-sub {
  margin: 0 auto;
}


/* ================================================================
   4. BUTTONS
   A cohesive button system used throughout the site.
   ================================================================ */

/* Base button styles — all buttons inherit these */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--r-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}

/* Arrow icon inside button */
.btn-arrow {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.btn:hover .btn-arrow {
  transform: translateX(4px); /* Arrow slides right on hover */
}

/* Large variant */
.btn--lg { font-size: 16px; padding: 16px 32px; }

/* Full-width variant */
.btn--block { width: 100%; }

/* PRIMARY — solid blue gradient */
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}

.btn--primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  box-shadow: 0 12px 40px rgba(29,82,240,0.36);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-blue);
}

/* OUTLINE — transparent bg, blue border */
.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn--outline:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* AMBER — for the construction section */
.btn--amber {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  font-weight: 800;
}

.btn--amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}

/* Hero special buttons */
.btn--hero-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-size: 16px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn--hero-primary:hover {
  background: #f0f4ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.22);
}

.btn--hero-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--r-lg);
  backdrop-filter: blur(4px);
}

.btn--hero-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}


/* ================================================================
   5. HEADER & NAVIGATION
   ================================================================ */

/* Thin colored line at the very top of the page — premium touch */
.header-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #6FA3FF 50%, var(--blue) 100%);
  background-size: 200% 100%;
  animation: shimmer-bar 4s linear infinite;
}

@keyframes shimmer-bar {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);            /* Frosted glass effect */
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Shadow appears after scrolling — added by JS */
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(11,21,36,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(29,82,240,0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-hint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Desktop navigation links list */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 13px;
  border-radius: var(--r-md);
  transition: var(--ease);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}

/* The "Free Quote" CTA link in the nav */
.nav-cta-link {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: var(--r-lg);
  box-shadow: 0 2px 12px rgba(29,82,240,0.3);
  margin-left: 6px;
}

.nav-cta-link:hover {
  background: var(--blue-hover) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}

/* Hamburger (mobile only — hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  padding: 10px;
  transition: var(--ease);
}

.hamburger:hover {
  background: var(--blue-light);
  border-color: var(--blue-mid);
}

.bar {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: var(--ease);
  transform-origin: center;
}

/* Animate to X when open */
.hamburger.open { background: var(--blue-light); border-color: var(--blue-mid); }
.hamburger.open .bar-top { transform: translateY(7px) rotate(45deg); background: var(--blue); }
.hamburger.open .bar-mid { opacity: 0; transform: scaleX(0); }
.hamburger.open .bar-bot { transform: translateY(-7px) rotate(-45deg); background: var(--blue); }


/* ================================================================
   6. HERO SECTION
   ================================================================ */

.hero {
  background: var(--navy);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Dot-grid pattern overlay */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

/* Glowing orb decorations */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(29,82,240,0.25) 0%, transparent 65%);
}

.hero-glow--2 {
  width: 400px;
  height: 400px;
  bottom: 50px;
  left: -100px;
  background: radial-gradient(circle, rgba(29,82,240,0.15) 0%, transparent 65%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-end;
  padding-bottom: 80px;
}

/* Pill badge */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #93C5FD;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

/* Pulsing green dot */
.pill-dot {
  width: 8px;
  height: 8px;
  background: #34D399;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(52,211,153,0.25);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

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

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.headline-line { display: block; }

.headline-accent-line {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

/* The blue-tinted accent word */
.headline-accent {
  color: #6FA3FF;   /* Lighter blue for contrast on dark bg */
  display: inline;
}

.headline-dot {
  color: var(--amber);  /* Orange/amber dot for a distinctive accent */
  font-size: 1.1em;
}

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

/* CTA button row */
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
}

/* Trust pills */
.hero-trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 5px 12px;
  border-radius: 50px;
}

.trust-pill svg { color: #34D399; flex-shrink: 0; }

/* Stats grid — right column */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-bottom: 16px;
}

/* Glassmorphism stat cards */
.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 28px 24px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--ease);
  overflow: hidden;
  position: relative;
}

.stat-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-3px);
}

.stat-inner {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 6px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #6FA3FF;
  line-height: 1;
  padding-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 14px;
}

/* Progress bar at bottom of each stat card */
.stat-bar {
  height: 3px;
  background: rgba(255,255,255,0.10);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.stat-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, var(--blue), #6FA3FF);
  border-radius: 3px;
  animation: bar-fill 1.8s ease forwards;
  animation-delay: 0.5s;
  transform-origin: left;
  transform: scaleX(0);
}

@keyframes bar-fill {
  to { transform: scaleX(1); }
}

/* Wave divider at bottom of hero */
.hero-wave {
  position: relative;
  z-index: 1;
  line-height: 0;
  margin-top: auto;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}


/* ================================================================
   7. TRUST BAR
   ================================================================ */

.trust-bar {
  padding: 18px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-bar-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-hint);
  white-space: nowrap;
}

.trust-bar-items {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-bar-item svg { color: var(--blue); flex-shrink: 0; }

.trust-bar-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}


/* ================================================================
   8. ABOUT SECTION
   ================================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-content .section-heading { text-align: left; }

/* Checkmark list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 24px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.5;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(16,185,129,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg { color: var(--green-check); }

/* Feature grid — 2x2 */
.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-feat-card {
  border-radius: var(--r-xl);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: var(--ease);
}

.about-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-mid);
}

/* Blue variant */
.about-feat-card--blue {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.about-feat-card--blue h3 { color: var(--white); }
.about-feat-card--blue p  { color: rgba(255,255,255,0.75); }

.about-feat-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 4px;
}

.about-feat-card p  {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.feat-icon { font-size: 28px; margin-bottom: 12px; }


/* ================================================================
   9. SERVICES SECTION
   ================================================================ */

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

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: var(--ease-slow);
  position: relative;
  overflow: hidden;
}

/* Gradient corner highlight on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(29,82,240,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

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

.service-card:hover::after { opacity: 1; }

.service-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

/* Icon wrapper circle */
.svc-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--ease);
}

.svc-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
}

.service-card:hover .svc-icon-wrap {
  background: var(--blue);
}

.service-card:hover .svc-icon-wrap svg {
  stroke: var(--white);
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s, opacity 0.2s;
}

.svc-link:hover { gap: 10px; }

.svc-link svg { transition: transform 0.2s; }
.svc-link:hover svg { transform: translateX(4px); }


/* ================================================================
   10. CONSTRUCTION SECTION
   The most visually dramatic section on the site.
   Dark navy bg + amber accent + subtle grid texture.
   ================================================================ */

.construction-section {
  background: var(--navy);
  padding: var(--gap-2xl) 0;
  position: relative;
  overflow: hidden;
}

/* Grid pattern background */
.con-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Glowing light in top-right */
.con-glow {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.con-inner { position: relative; z-index: 1; }

/* Section header — white text on dark */
.con-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--gap-xl);
}

.con-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.con-eyebrow-badge {
  font-size: 14px;
}

.con-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

/* The accent word gets amber color */
.con-heading-accent {
  color: var(--amber);
}

.con-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* Construction material cards */
.con-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.con-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

/* Hover: amber-tinted glow from top */
.con-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.con-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,158,11,0.30);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.30);
}

.con-card:hover::before { opacity: 1; }

.con-card-icon {
  font-size: 34px;
  margin-bottom: 14px;
  display: block;
}

.con-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.con-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.50);
  line-height: 1.65;
}

/* CTA strip inside construction section */
.con-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.20);
  border-radius: var(--r-2xl);
  padding: 32px 40px;
  flex-wrap: wrap;
}

.con-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.con-cta-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.con-cta-left strong {
  display: block;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.con-cta-left span {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
}


/* ================================================================
   11. WHY CHOOSE US
   ================================================================ */

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

.reason-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

/* Left accent line on hover */
.reason-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transform: scaleY(0);
  transition: opacity 0.3s, transform 0.3s;
}

.reason-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.reason-card:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.reason-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.reason-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.reason-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ================================================================
   12. PRICING SECTION
   ================================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 36px 32px;
  position: relative;
  transition: var(--ease);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Featured card — highlighted */
.pricing-card--featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: scale(1.04);
  z-index: 1;
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-5px);
}

.pricing-badge-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(29,82,240,0.3);
}

.pricing-top {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.pricing-top h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.price-from {
  font-size: 14px;
  color: var(--text-hint);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -1.5px;
  line-height: 1;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-list {
  margin-bottom: 28px;
}

.pricing-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.pricing-list li:last-child { border-bottom: none; }

.pricing-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--blue-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231D52F0'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-hint);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ================================================================
   13. TESTIMONIALS
   ================================================================ */

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: var(--gap-xl);
  padding: 28px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--gap-xl);
  box-shadow: var(--shadow-sm);
}

.rating-score {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -2px;
}

.rating-stars {
  font-size: 22px;
  color: #F59E0B;
  letter-spacing: 4px;
  margin-bottom: 4px;
}

.rating-count {
  font-size: 13px;
  color: var(--text-hint);
}

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

.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--blue-mid);
}

/* Big decorative quote mark */
.review-quote-mark {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--blue-light);
  margin-bottom: 16px;
  display: block;
  border: none;  /* Remove blockquote default border */
  user-select: none;
}

.review-stars {
  font-size: 14px;
  color: #F59E0B;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(29,82,240,0.25);
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  font-style: normal;
  display: block;
}

.author-city {
  font-size: 12px;
  color: var(--text-hint);
}


/* ================================================================
   14. CONTACT / FORM SECTION
   ================================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}

.contact-form-col .section-heading { text-align: left; }

/* Form card wrapper */
.c-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* Two-column rows */
.c-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.c-form-group { margin-bottom: 22px; }

/* Labels */
.c-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.req { color: var(--blue); }
.optional { font-weight: 400; color: var(--text-hint); }

/* Input fields */
.c-form-group input[type="text"],
.c-form-group input[type="email"],
.c-form-group input[type="tel"],
.c-form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 13px 16px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  appearance: none;
  line-height: 1.5;
}

.c-form-group input:focus,
.c-form-group textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,82,240,0.10);
}

.c-form-group input.is-invalid,
.c-form-group select.is-invalid,
.c-form-group textarea.is-invalid {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.10);
}

.c-form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* Select dropdown wrapper (for custom chevron arrow) */
.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 13px 42px 13px 16px;
  appearance: none;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.select-wrap select:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,82,240,0.10);
}

/* Custom chevron arrow for selects */
.select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-hint);
  pointer-events: none;
  transition: transform 0.2s, color 0.2s;
}

.select-wrap select:focus + .select-chevron {
  color: var(--blue);
  transform: translateY(-50%) rotate(180deg);
}

/* Error messages */
.c-error {
  display: block;
  font-size: 12.5px;
  color: #EF4444;
  font-weight: 600;
  margin-top: 5px;
  min-height: 18px;
}

/* Radio button group */
.radio-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
}

/* Hide actual radio input */
.radio-opt input[type="radio"] { display: none; }

/* Custom styled radio dot */
.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.radio-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
}

.radio-opt input[type="radio"]:checked + .radio-custom {
  border-color: var(--blue);
}

.radio-opt input[type="radio"]:checked + .radio-custom::after {
  opacity: 1;
  transform: scale(1);
}

/* Form disclaimer */
.form-note {
  font-size: 12.5px;
  color: var(--text-hint);
  text-align: center;
  margin-top: 12px;
}

/* Success state */
.form-success-state {
  display: none;
  text-align: center;
  padding: 56px 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-md);
}

.success-checkmark { font-size: 56px; margin-bottom: 16px; display: block; }

.form-success-state h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.form-success-state p { font-size: 15px; color: var(--text-secondary); }

/* Contact info card */
.contact-info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;   /* Sticks below the header when scrolling */
}

.contact-info-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.c-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.c-info-item:last-of-type { border-bottom: none; }

.c-info-icon {
  font-size: 20px;
  width: 42px;
  height: 42px;
  background: var(--blue-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-hint);
  margin-bottom: 3px;
}

.c-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.6;
}

a.c-info-value:hover { color: var(--blue); }

/* Same-day highlight badge */
.same-day-badge {
  background: linear-gradient(135deg, var(--blue), #3B70FF);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  margin-top: 16px;
  box-shadow: var(--shadow-blue);
}

.same-day-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.same-day-badge p {
  font-size: 13px;
  opacity: 0.82;
}


/* ================================================================
   15. FOOTER
   ================================================================ */

.footer {
  background: var(--navy);
  padding: 72px 0 32px;
  position: relative;
}

/* Gradient border at very top of footer */
.footer-gradient-border {
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--blue) 20%,
    #6FA3FF 50%,
    var(--blue) 80%,
    transparent 100%
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 56px;
  margin-bottom: 56px;
}

/* Logo in footer */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.footer-logo-tagline {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-about-text {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 260px;
}

.footer-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #6FA3FF;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.footer-phone:hover { color: var(--white); }

.footer-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badge {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 4px 10px;
  border-radius: 50px;
}

.footer-col-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.footer-links li { margin-bottom: 11px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

/* Social icons */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.50);
  transition: var(--ease);
}

.social-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.60); }


/* ================================================================
   16. FLOATING ACTION BUTTONS
   ================================================================ */

.fab-cluster {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 500;
}

.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
  border: none;
}

.fab-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.3);
}

.fab-whatsapp { background: #25D366; }
.fab-phone    { background: var(--blue); box-shadow: 0 4px 16px rgba(29,82,240,0.4); }


/* ================================================================
   17. REVEAL ANIMATIONS
   Elements with class="reveal" fade in when scrolled into view.
   JS adds 'is-visible' to trigger the CSS transition.
   ================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================
   18. RESPONSIVE — TABLET (≤1024px)
   ================================================================ */

@media (max-width: 1024px) {

  .hero-inner          { grid-template-columns: 1fr; gap: 48px; padding-bottom: 60px; }
  .hero-sub            { max-width: 100%; }
  .hero-stats          { grid-template-columns: repeat(4, 1fr); }
  .about-grid          { grid-template-columns: 1fr; gap: 48px; }
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .con-grid            { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid        { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid        { gap: 16px; }
  .reviews-grid        { grid-template-columns: repeat(2, 1fr); }
  .contact-grid        { grid-template-columns: 1fr; gap: 48px; }
  .contact-info-card   { position: static; }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 32px; }

}


/* ================================================================
   19. RESPONSIVE — MOBILE (≤768px)
   ================================================================ */

@media (max-width: 768px) {

  /* Reveal hamburger button, hide desktop nav */
  .hamburger   { display: flex; }

  /* Mobile menu drawer */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 90px 24px 40px;
    z-index: 999;
    transform: translateX(100%);  /* Slide in from right */
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s ease;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .nav-cta-link {
    margin: 24px 0 0;
    padding: 18px 24px;
    border-radius: var(--r-lg);
    justify-content: center;
    font-size: 16px;
    border-bottom: none;
  }

  /* Sections */
  .section  { padding: 64px 0; }
  .hero     { min-height: auto; padding-top: 72px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 40px; }

  .services-grid   { grid-template-columns: 1fr; }
  .con-grid        { grid-template-columns: 1fr; }
  .reasons-grid    { grid-template-columns: 1fr; }
  .reviews-grid    { grid-template-columns: 1fr; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 32px;
  }

  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-5px); }

  .about-feature-grid { grid-template-columns: 1fr; }

  .con-cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .con-cta-left  { flex-direction: column; text-align: center; }

  .c-form-row { grid-template-columns: 1fr; }
  .c-form      { padding: 28px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  .fab-cluster { bottom: 20px; right: 18px; }

}


/* ================================================================
   20. RESPONSIVE — SMALL PHONE (≤480px)
   ================================================================ */

@media (max-width: 480px) {

  .container { padding: 0 18px; }

  .hero-cta-row { flex-direction: column; }
  .btn--hero-primary,
  .btn--hero-ghost { width: 100%; justify-content: center; }

  .hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; }

  .hero-trust-row  { gap: 8px; }
  .trust-pill      { font-size: 12px; }

  .rating-display { flex-direction: column; text-align: center; padding: 20px; }

  .radio-row { flex-direction: column; gap: 12px; }

  .footer-badge-row { flex-direction: column; }

}
