/* ==========================================================================
   Rideout Plumbing - Charlotte, NC
   Brand Colors from rideoutplumbing.com
   ========================================================================== */

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

:root {
  --navy: #224867;
  --navy-deep: #0B223E;
  --copper: #5897de;
  --copper-light: #7db3e8;
  --copper-dark: #21759b;
  --cream: #eef3f8;
  --cream-light: #f5f8fc;
  --slate: #2d3951;
  --text-dark: #1A1A1A;
  --text-muted: #4a5a6a;
  --text-light: #c8d8e8;
  --white: #FFFFFF;
  --border: rgba(34, 72, 103, 0.12);
  --shadow: 0 4px 24px rgba(34, 72, 103, 0.08);
  --shadow-lg: 0 12px 48px rgba(34, 72, 103, 0.12);
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream-light);
  -webkit-font-smoothing: antialiased;
  padding-top: 167px; /* fixed header: logo banner ~109px + nav row ~58px */
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--copper); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--copper-dark); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 2px;
}
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4 {
  font-family: 'Archivo Black', sans-serif;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p { margin-bottom: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Skip Link */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--copper); color: var(--white);
  padding: 12px 24px; z-index: 9999;
  font-weight: 700; border-radius: var(--radius);
}
.skip-link:focus { top: 16px; color: var(--white); }

/* ===== LOGO BANNER ===== */
.logo-banner-row {
  background: var(--navy-deep);
  width: 100%;
  text-align: center;
  padding: 14px 24px 12px;
  border-bottom: 3px solid var(--copper);
}
.logo-banner-row a { display: inline-block; }
.site-logo {
  height: 80px;
  width: auto;
  max-width: 450px;
  display: inline-block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4));
}

/* ===== HEADER (Floating Nav) ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy-deep);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

/* Nav float row wraps the pill */
.nav-float-row {
  padding: 8px 24px;
  background: rgba(11, 34, 62, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header-inner {
  max-width: 900px; margin: 0 auto;
  padding: 8px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(88, 151, 222, 0.22);
  border-radius: 100px;
}
.main-nav ul { display: flex; gap: 2px; align-items: center; }
.main-nav a {
  display: block; padding: 7px 16px;
  color: var(--text-light); font-weight: 500; font-size: 0.95rem;
  border-radius: 50px; transition: all var(--transition);
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  color: var(--white); background: rgba(88, 151, 222, 0.18);
}
.main-nav a[aria-current="page"] { color: var(--copper-light); }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--copper); color: var(--white);
  padding: 8px 18px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem; border: none;
  transition: all var(--transition); white-space: nowrap;
}
.header-cta:hover { background: var(--copper-dark); color: var(--white); transform: translateY(-1px); }
.header-cta:focus-visible { color: var(--white); }
.mobile-toggle {
  display: none; background: none;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px; padding: 7px; color: var(--white);
}
.mobile-toggle svg { display: block; width: 22px; height: 22px; }

/* ===== HERO ===== */
.hero {
  position: relative; background: var(--navy); color: var(--white);
  overflow: hidden; min-height: 540px; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, var(--navy-deep) 0%, rgba(15,30,40,0.7) 50%, transparent 100%),
              linear-gradient(to top, var(--navy-deep) 0%, transparent 50%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
/* Hero Logo (large featured logo at top of hero) */
.hero-logo-wrap {
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease-out both;
}
.hero-logo-wrap img {
  height: 100px; width: auto;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}

.hero-content {
  position: relative; z-index: 3; max-width: 680px; padding: 56px 0 72px;
}
.hero-tagline {
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
  color: var(--copper-light); text-transform: uppercase;
  letter-spacing: 0.15em; margin-bottom: 12px;
  animation: fadeUp 0.7s ease-out;
}
.hero h1 { color: var(--white); margin-bottom: 20px; animation: fadeUp 0.7s ease-out 0.1s both; }
.hero p {
  font-size: 1.1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 32px;
  animation: fadeUp 0.7s ease-out 0.2s both;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.7s ease-out 0.3s both;
}
.hero-badges {
  display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.7s ease-out 0.4s both;
}
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600; color: var(--text-light);
}
.hero-badge-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(88,151,222,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--copper-light);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-weight: 700; font-size: 1rem;
  border-radius: var(--radius); border: 2px solid transparent;
  transition: all var(--transition); text-align: center; justify-content: center;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary { background: var(--copper); color: var(--white); border-color: var(--copper); }
.btn-primary:hover { background: var(--copper-dark); border-color: var(--copper-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--copper); color: var(--copper-light); }
.btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--white); }
.btn-emergency { background: #C0392B; color: var(--white); border-color: #C0392B; }
.btn-emergency:hover { background: #A03020; border-color: #A03020; color: var(--white); }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--navy); color: var(--text-light); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; margin-top: 12px; }
.section-dark .section-header p { color: var(--text-light); }
.section-label {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--copper); margin-bottom: 8px;
  display: block;
}
.section-divider {
  width: 60px; height: 4px; background: var(--copper);
  margin: 12px auto 0; border-radius: 2px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white); border-bottom: 1px solid var(--border); padding: 28px 0;
}
.trust-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.8rem; color: var(--navy); line-height: 1.2;
}
.trust-label { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }

/* ===== WHAT TO EXPECT ===== */
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.expect-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.expect-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--copper);
  transform: scaleX(0); transition: transform var(--transition);
}
.expect-card:hover::after { transform: scaleX(1); }
.expect-card:hover { box-shadow: var(--shadow-lg); }
.expect-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.3rem; color: var(--white);
}
.expect-card h3 { margin-bottom: 8px; }
.expect-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
  transition: all var(--transition); display: flex; align-items: flex-start; gap: 14px;
}
.service-card:hover { border-color: var(--copper); box-shadow: var(--shadow); transform: translateY(-2px); }
.service-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(88,151,222,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--copper); font-size: 1rem;
}
.service-card h3 { margin-bottom: 4px; font-size: 1rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }

/* Service categories (services page) */
.service-category { margin-bottom: 48px; }
.service-category h3 {
  font-size: 1.4rem; margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 3px solid var(--copper); display: inline-block;
}
.service-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px;
}
.service-list-item {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); transition: all var(--transition);
}
.service-list-item:hover { border-color: var(--copper); box-shadow: var(--shadow); }
.service-list-item .check { color: var(--copper); font-size: 1.1rem; flex-shrink: 0; }
.service-list-item span { font-weight: 500; }

/* ===== ABOUT GRID ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--text-muted); font-size: 1.05rem; }
.about-image {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.about-image img { width: 100%; height: auto; }
.about-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--copper);
}
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px;
}
.highlight-item {
  background: var(--cream); padding: 16px; border-radius: var(--radius);
  text-align: center; border-left: 4px solid var(--copper);
}
.highlight-item strong {
  display: block; font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem; color: var(--navy);
}
.highlight-item span { font-size: 0.85rem; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px 24px; position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-family: 'Archivo Black', sans-serif;
  font-size: 3.5rem; color: var(--copper); opacity: 0.4;
  position: absolute; top: 8px; left: 16px; line-height: 1;
}
.testimonial-card p {
  font-style: italic; font-size: 0.95rem; line-height: 1.7;
  color: var(--text-light); margin-bottom: 20px;
  position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 36px; height: 36px; background: var(--copper); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: var(--white);
}
.author-name { font-weight: 700; color: var(--copper-light); font-size: 0.9rem; }
.testimonial-stars { color: var(--copper-light); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 4px; }

/* Single testimonial variant */
.testimonial-section {
  background: var(--navy); color: var(--white); padding: 64px 24px; text-align: center;
}
.testimonial-quote {
  max-width: 700px; margin: 0 auto;
  font-size: 1.3rem; font-style: italic; line-height: 1.8;
  font-family: 'DM Sans', sans-serif;
}
.testimonial-quote::before {
  content: '\201C'; font-family: 'Archivo Black', sans-serif;
  font-size: 3rem; display: block; color: var(--copper); line-height: 1; margin-bottom: 8px;
}
.testimonial-attribution {
  margin-top: 20px; font-weight: 700; color: var(--copper-light); font-size: 1rem;
}
.testimonial-section .testimonial-stars {
  margin-top: 8px; font-size: 1.1rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--copper-dark) 0%, var(--copper) 50%, var(--copper-light) 100%);
  color: var(--white); text-align: center; padding: 56px 24px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px
  );
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 24px; }
.cta-banner .btn { background: var(--white); color: var(--copper-dark); border-color: var(--white); }
.cta-banner .btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white); padding: 56px 24px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(88,151,222,0.06);
}
.page-header h1 { color: var(--white); margin-bottom: 8px; }
.page-header p { color: var(--text-light); font-size: 1.1rem; }
.breadcrumb { margin-top: 12px; font-size: 0.85rem; color: var(--text-light); opacity: 0.7; }
.breadcrumb a { color: var(--copper-light); }
.breadcrumb a:hover { color: var(--white); }

/* ===== TEAM ===== */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; max-width: 700px; margin: 0 auto;
}
.team-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition);
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card img {
  width: 180px; height: 180px; object-fit: cover; border-radius: 50%;
  margin: 28px auto 0; border: 4px solid var(--cream);
}
.team-info { padding: 20px 24px 28px; }
.team-info h3 { margin-bottom: 4px; }
.team-info p { color: var(--copper); font-weight: 600; margin-bottom: 0; font-size: 0.9rem; }

/* Credentials */
.credentials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px;
}
.credential-item {
  display: flex; align-items: center; gap: 14px; padding: 20px 24px;
  background: var(--cream); border-radius: var(--radius);
  border-left: 4px solid var(--copper);
}
.credential-icon { font-size: 1.5rem; color: var(--copper); flex-shrink: 0; }
.credential-item span { font-weight: 600; color: var(--navy); }

/* Veteran Badge */
.veteran-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); padding: 10px 20px;
  border-radius: var(--radius); margin-top: 16px; font-size: 0.95rem;
}
.veteran-badge img { height: 30px; width: auto; }

/* Service Areas */
.service-areas-wrap { columns: 3; column-gap: 32px; }
.service-areas-wrap li {
  padding: 6px 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem; color: var(--text-muted); break-inside: avoid;
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 40px 32px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; font-size: 1.4rem; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-detail-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(88,151,222,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--copper-light); font-size: 1rem;
}
.contact-detail h4 {
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  color: var(--copper-light); margin-bottom: 4px; font-size: 0.9rem;
}
.contact-detail p { color: var(--text-light); margin-bottom: 0; font-size: 0.95rem; }
.contact-detail a { color: var(--white); font-weight: 600; }
.contact-detail a:hover { color: var(--copper-light); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 32px; box-shadow: var(--shadow);
}
.contact-form-wrap h2 { margin-bottom: 8px; font-size: 1.4rem; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-weight: 600; margin-bottom: 6px;
  font-size: 0.9rem; color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius);
  background: var(--cream-light); color: var(--text-dark);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--copper); outline: none; background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #C0392B;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-deep); color: var(--text-light); padding-top: 56px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .tagline {
  font-style: italic; color: var(--copper-light);
  margin-bottom: 16px; font-size: 1.05rem;
}
.footer-brand p { margin-bottom: 6px; font-size: 0.9rem; opacity: 0.7; }
.footer-brand a { color: var(--text-light); }
.footer-brand a:hover { color: var(--copper-light); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.06);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-light); transition: all var(--transition); font-size: 1rem;
}
.footer-social a:hover { background: var(--copper); color: var(--white); }
.footer-col h4 {
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-weight: 700; margin-bottom: 16px; font-size: 0.95rem;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-light); opacity: 0.7; font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-col a:hover { opacity: 1; color: var(--copper-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
  text-align: center; font-size: 0.8rem; color: var(--text-light); opacity: 0.5;
}
.footer-bottom p { margin-bottom: 2px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .mobile-toggle { display: block; }
  .header-inner { border-radius: 16px; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-deep);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    padding: 16px 16px 20px;
    border-bottom: 3px solid var(--copper);
  }
  .main-nav.active { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 12px 20px; font-size: 1.05rem; border-radius: 8px; }
  .header-cta { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .expect-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-areas-wrap { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  body { padding-top: 160px; }
  .hero { min-height: 400px; }
  .hero-content { padding: 36px 0 56px; }
  .section { padding: 56px 0; }
  .about-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .service-areas-wrap { columns: 1; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { gap: 16px; }
  .contact-info-card { padding: 28px 20px; }
  .contact-form-wrap { padding: 28px 20px; }
}
