/* ============================================================
   Utah County Concrete Pro — Main Stylesheet
   ============================================================ */

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

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

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: #1c1c1c;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---------- CSS Variables ---------- */
:root {
  --white:   #ffffff;
  --gray-bg: #f4f4f4;
  --charcoal:#1c1c1c;
  --blue:    #2563a8;
  --blue-dk: #1a4a80;
  --tan:     #c8b89a;
  --tan-dk:  #b0a080;
  --border:  #e0e0e0;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
  --radius:  8px;
  --transition: 0.25s ease;
  --max-w:   1200px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1c1c1c;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 700; }
p  { margin-bottom: 1rem; color: #444; }
p:last-child { margin-bottom: 0; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 5rem 0; }
.section--gray { background: var(--gray-bg); }
.section--blue { background: var(--blue); color: var(--white); }
.section--blue h2, .section--blue h3 { color: var(--white); }
.section--blue p { color: rgba(255,255,255,0.85); }

.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.section--blue .section-label { color: var(--tan); }
.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0.75rem auto 0;
}
.section--blue .section-subtitle { color: rgba(255,255,255,0.8); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-dk); }

.btn--outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--blue); }

.btn--tan { background: var(--tan); color: var(--charcoal); }
.btn--tan:hover { background: var(--tan-dk); }

.btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.logo-name span { color: var(--blue); }
.logo-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tan-dk);
}

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); background: rgba(37,99,168,0.07); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-phone {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.header-phone svg { flex-shrink: 0; }
.header-phone:hover { color: var(--blue-dk); }

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

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.75rem 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.8rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #444;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--blue); background: var(--gray-bg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a2535;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.38;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,184,154,0.18);
  border: 1px solid rgba(200,184,154,0.45);
  color: var(--tan);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero h1 span { color: var(--tan); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-trust-item svg { color: var(--tan); flex-shrink: 0; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--blue);
  padding: 1.1rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-item svg { color: var(--tan); flex-shrink: 0; }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  cursor: default;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--blue);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(37,99,168,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--blue);
}
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.service-card p { font-size: 0.92rem; margin-bottom: 1rem; }
.service-card a { color: var(--blue); font-weight: 700; font-size: 0.88rem; }
.service-card a:hover { text-decoration: underline; }

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.step-num {
  width: 64px;
  height: 64px;
  background: var(--tan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(200,184,154,0.4);
}
.step-card h3 { margin-bottom: 0.6rem; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--tan);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); }
.stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: #444;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; }
.reviewer-location { font-size: 0.8rem; color: #888; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ---------- Service Detail Sections ---------- */
.service-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail-img {
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
  background: #ddd;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-body h2 { margin-bottom: 1rem; }
.service-detail-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  color: #444;
}
.service-detail-body ul li { margin-bottom: 0.4rem; font-size: 0.95rem; }

/* ---------- About Page ---------- */
.about-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2d2d2d 100%);
  padding: 5rem 0;
  color: var(--white);
}
.about-hero h1 { color: var(--white); }
.about-hero p { color: rgba(255,255,255,0.82); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(37,99,168,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--blue);
}

/* ---------- FAQ Page ---------- */
.faq-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  padding: 4.5rem 0;
  color: var(--white);
  text-align: center;
}
.faq-hero h1 { color: var(--white); }
.faq-hero p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0.75rem auto 0; }

.faq-list { max-width: 820px; margin: 3rem auto 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: inherit;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-bg); }
.faq-question.active { background: var(--gray-bg); color: var(--blue); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--blue);
}
.faq-question.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 600px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.96rem;
  color: #444;
  line-height: 1.75;
}
.faq-answer-inner p { margin-bottom: 0.6rem; }

/* ---------- Contact Page ---------- */
.contact-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #333 100%);
  padding: 4.5rem 0;
  color: var(--white);
}
.contact-hero h1 { color: var(--white); }
.contact-hero p { color: rgba(255,255,255,0.82); }

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h2 { margin-bottom: 1.5rem; font-size: 1.5rem; }

/* Form */
.form-group { margin-bottom: 1.25rem; }
label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,168,0.12);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
textarea { resize: vertical; min-height: 120px; }
.honeypot { display: none !important; }

.form-submit-btn { width: 100%; margin-top: 0.5rem; }

.form-message {
  display: none;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
}
.form-message.success { display: block; background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-message.error   { display: block; background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; }

/* Contact Info */
.contact-info h3 { margin-bottom: 1.25rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(37,99,168,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-text strong { display: block; font-size: 0.85rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.contact-info-text a { color: var(--blue); font-weight: 700; font-size: 1.05rem; }
.contact-info-text a:hover { text-decoration: underline; }

.service-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.area-chip {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
}

.map-wrap {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-name { color: var(--white); font-size: 1.2rem; }
.footer-brand .logo-name span { color: var(--tan); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-top: 0.75rem; line-height: 1.65; }
.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--tan);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 0.85rem;
}
.footer-phone-link:hover { color: var(--white); }

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.55rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--tan); }
.footer-col ul li { margin-bottom: 0.35rem; font-size: 0.88rem; color: rgba(255,255,255,0.6); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--tan); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #1a2535 0%, var(--blue-dk) 100%);
  padding: 4rem 0;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 600px; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--tan); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Area Served Section ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.area-card:hover { border-color: var(--blue); box-shadow: 0 2px 8px rgba(37,99,168,0.12); }
.area-card svg { color: var(--blue); flex-shrink: 0; }

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--charcoal);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--tan);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-item span { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-inner.reverse { direction: ltr; }
  .service-detail-img { height: 260px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .main-nav, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .header-phone { font-size: 0.92rem; }
  .hero { min-height: 520px; }
  .hero-content { padding: 3.5rem 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .trust-bar-inner { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-trust { flex-direction: column; gap: 0.6rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
