/* =============================================
   WATER LINE REPAIR PRESCOTT AZ — STYLESHEET
   ============================================= */

:root {
  --brown-dark: #1c1208;
  --brown-mid: #2e1f0e;
  --rust: #c0420e;
  --rust-hover: #a33609;
  --sand: #e8a44a;
  --pipe-blue: #2a6496;
  --pipe-blue-light: #3a7cb8;
  --white: #ffffff;
  --off-white: #f7f4f0;
  --gray-light: #e8e2d8;
  --gray: #8a7f72;
  --text: #1c1208;
  --text-light: #5a4f42;
  --topbar-height: 40px;
  --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

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

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

/* ---- TOP BAR ---- */
.topbar {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

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

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--sand);
}

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.topbar-phone:hover { color: var(--sand); }

.topbar-phone svg {
  width: 14px;
  height: 14px;
  fill: var(--rust);
}

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  height: var(--header-height);
  border-bottom: 2px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(28,18,8,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; display: block; }
.footer-logo-img {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  background: var(--white);
  padding: 5px 10px;
  border-radius: 6px;
}

.main-nav { margin-left: auto; }

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-radius: 6px;
  display: block;
  transition: background 0.2s, color 0.2s;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  background: var(--off-white);
  color: var(--rust);
}

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(28,18,8,0.12);
  min-width: 240px;
  padding: 8px 0;
  z-index: 200;
}

.has-dropdown .dropdown.open { display: block; }

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}

.dropdown li a:hover {
  background: var(--off-white);
  color: var(--rust);
}

.header-cta {
  background: var(--rust);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.header-cta:hover {
  background: var(--rust-hover);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.btn-primary {
  background: var(--rust);
  color: var(--white);
  border-color: var(--rust);
}

.btn-primary:hover {
  background: var(--rust-hover);
  border-color: var(--rust-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,66,14,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--rust);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-large { padding: 16px 36px; font-size: 18px; border-radius: 10px; }

.pulse { animation: pulse 2.5s infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,66,14,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(192,66,14,0); }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(28,18,8,0.97) 0%, rgba(46,31,14,0.88) 55%, rgba(192,66,14,0.2) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23c0420e' stroke-width='0.4' opacity='0.15'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3Ccircle cx='40' cy='40' r='15'/%3E%3Cline x1='10' y1='40' x2='70' y2='40'/%3E%3Cline x1='40' y1='10' x2='40' y2='70'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,164,74,0.15);
  border: 1px solid rgba(232,164,74,0.4);
  color: var(--sand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

/* ---- URGENCY STRIP ---- */
.urgency-strip {
  background: #fff8f0;
  border-top: 3px solid var(--rust);
  padding: 14px 0;
  text-align: center;
  font-size: 15px;
  color: var(--text);
}

.urgency-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.urgency-dot {
  width: 10px;
  height: 10px;
  background: var(--rust);
  border-radius: 50%;
  animation: blink 1.2s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.urgency-link {
  color: var(--rust);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 12px;
  line-height: 1.15;
}

.section-header p {
  font-size: 17px;
  color: var(--text-light);
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 32px 24px;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--rust);
  box-shadow: 0 12px 40px rgba(192,66,14,0.1);
  transform: translateY(-4px);
}

.service-icon { font-size: 36px; margin-bottom: 16px; }

.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card h3 a {
  color: var(--brown-dark);
  transition: color 0.2s;
}

.service-card h3 a:hover { color: var(--rust); }

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--rust);
  display: block;
}

/* ---- INFO SECTION ---- */
.info-section { background: var(--white); }

.two-col-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.info-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.info-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

.feature-list li::before {
  content: '✓';
  color: var(--rust);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 16px 20px;
  border-left: 4px solid var(--rust);
}

.info-stat-icon { font-size: 26px; flex-shrink: 0; }

.info-stat-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 2px;
}

.info-stat-item span { font-size: 13px; color: var(--gray); }

/* ---- WHY US ---- */
.why-us {
  background: var(--brown-dark);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}

.why-content p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.why-list {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
}

.check { color: var(--sand); font-weight: 900; font-size: 14px; flex-shrink: 0; }

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span { font-size: 1.4rem; color: rgba(255,255,255,0.45); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 600; }

/* ---- PROCESS ---- */
.process-section { background: var(--off-white); }

.process-steps {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 0 12px;
}

.step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 10px;
}

.process-step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.process-step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.process-arrow {
  font-size: 2rem;
  color: var(--rust);
  opacity: 0.35;
  align-self: center;
  padding: 0 8px;
  flex-shrink: 0;
}

/* ---- TIMELINE ---- */
.timeline-section { background: var(--white); }

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.timeline-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 28px 24px;
  border-top: 4px solid var(--pipe-blue);
}

.timeline-card-mid { border-top-color: var(--sand); }
.timeline-card-severe { border-top-color: var(--rust); }

.timeline-time {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pipe-blue);
  margin-bottom: 16px;
}

.timeline-card-mid .timeline-time { color: #b07010; }
.timeline-card-severe .timeline-time { color: var(--rust); }

.timeline-list { display: flex; flex-direction: column; gap: 10px; }

.timeline-list li {
  font-size: 14px;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.timeline-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--pipe-blue);
  font-weight: 900;
}

.timeline-card-mid .timeline-list li::before { color: var(--sand); }
.timeline-card-severe .timeline-list li::before { color: var(--rust); }

.timeline-cta { text-align: center; }

.timeline-cta p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--off-white); }

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars { color: #d4821a; font-size: 18px; letter-spacing: 2px; }

.testimonial-card > p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--brown-dark);
}

.testimonial-author span { font-size: 13px; color: var(--gray); }

/* ---- AREAS ---- */
.areas-section { background: var(--white); }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.areas-grid span {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-dark);
}

/* ---- FAQ ---- */
.faq-section { background: var(--off-white); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--brown-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--rust);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-question.open::after { transform: rotate(45deg); }
.faq-question:hover { background: var(--off-white); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-answer.open { display: block; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--rust) 0%, var(--brown-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

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

.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }

.footer-phone {
  display: inline-block;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  transition: color 0.2s;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

/* ---- MOBILE STICKY CTA ---- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 12px 16px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--rust);
  color: var(--white);
  padding: 16px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.2s;
}

.mobile-call-btn svg { width: 22px; height: 22px; fill: currentColor; }
.mobile-call-btn:hover { background: var(--rust-hover); }

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  padding: 64px 0 48px;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 24px;
}

/* ---- CONTENT SECTIONS ---- */
.content-section { padding: 72px 0; }
.content-section.bg-alt { background: var(--off-white); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.two-col p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-icon-block {
  background: var(--off-white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 110px;
  min-height: 280px;
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-detail-item { display: flex; align-items: flex-start; gap: 14px; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.contact-detail-item h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-detail-item p { margin: 0; font-size: 16px; color: var(--text); }
.contact-detail-item a { color: var(--rust); font-weight: 700; font-size: 20px; }

.contact-cta-box {
  background: var(--brown-dark);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
  text-align: center;
}

.contact-cta-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-cta-box p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }

.phone-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  text-decoration: none;
  transition: color 0.2s;
}

.phone-big:hover { color: var(--sand); }
.phone-big svg { width: 36px; height: 36px; fill: var(--rust); }

/* ---- ABOUT VALUES ---- */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.value-icon { font-size: 40px; margin-bottom: 14px; }

.value-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.value-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --topbar-height: 36px; --header-height: 64px; }

  .topbar-item { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-phone { margin-left: 0; }

  .main-nav {
    display: none;
    position: fixed;
    top: calc(var(--topbar-height) + var(--header-height));
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 16px 0;
  }

  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a { padding: 14px 24px; border-radius: 0; }
  .has-dropdown .dropdown { display: none !important; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { min-height: 85vh; }
  .hero-content { padding: 60px 24px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 16px; }
  .hero-cta-group { flex-direction: column; }
  .hero-trust { gap: 12px; font-size: 12px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .two-col-home { grid-template-columns: 1fr; gap: 40px; }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { display: none; }
  .process-step { max-width: 100%; width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner > :first-child { grid-column: 1; }
  .content-icon-block { min-height: 180px; font-size: 80px; }
  .contact-cta-box { padding: 28px 20px; }
  .phone-big { font-size: 1.9rem; }

  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 80px; }
  .section { padding: 56px 0; }
}
