/* =========================================
   DonVos Home Services - Main Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #00745A;
  --primary-light: #008f6e;
  --accent: #F7C948;
  --accent-dark: #d4a82a;
  --accent-light: #fdf7e3;
  --white: #ffffff;
  --light: #f5f7fa;
  --border: #e5e7eb;
  --text: #1a1a2e;
  --text-secondary: #6b7280;
  --success: #16a34a;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-secondary); line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent-light);
  padding: 0.3em 0.9em;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* =========================================
   LAYOUT UTILITIES
   ========================================= */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-light { background: var(--light); }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-dark .section-label { background: rgba(255,255,255,0.15); color: var(--white); }

.section-yellow {
  background: #F7C948;
  color: var(--primary);
}
.section-yellow h2,
.section-yellow h3,
.section-yellow h4 {
  color: var(--primary);
}
.section-yellow p {
  color: rgba(0,0,0,0.75);
}
.section-yellow .section-label {
  background: rgba(0,0,0,0.12);
  color: var(--primary);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75em 1.75em;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247,201,72,0.45);
}

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

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

.btn-lg {
  padding: 1em 2.25em;
  font-size: 1.05rem;
}

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

/* =========================================
   HEADER / NAV
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  display: flex;
  align-items: center;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { color: white; width: 22px; height: 22px; }

.logo span { color: var(--accent); }

.logo-img {
  height: 65px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 65px;
  width: auto;
  display: block;
}

.main-nav { display: flex; align-items: center; gap: 0.25rem; }

.main-nav a {
  padding: 0.5em 0.85em;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: var(--accent-light);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  transition: color var(--transition);
}
.phone-link:hover { color: var(--accent); }
.phone-link svg { width: 18px; height: 18px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--primary);
}
.hamburger svg { display: block; width: 24px; height: 24px; }

.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 999;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 0.65em 0.75em;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent);
  background: var(--accent-light);
}

.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,116,90,0.65) 0%, rgba(0,116,90,0.65) 25%, rgba(0,116,90,0.65) 50%);  
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--white);
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

.hero-badge svg { width: 18px; height: 18px; color: var(--accent); }

/* Page hero (smaller, for inner pages) */
.page-hero {
  background: var(--primary);
  padding: 4rem 0 3rem;
  color: var(--white);
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 640px; }

.before-after-section { padding-top: 0; }

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.before-after-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.before-after-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.before-after-item figcaption {
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 0;
  color: var(--text-primary);
  background: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-carousel-section {
  background: #111;
  padding: 40px 0 0;
}

.gallery-carousel {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.carousel-track-wrapper {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 50%;
  min-width: 50%;
}

.carousel-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  z-index: 2;
}

.carousel-btn:hover { background: rgba(255,255,255,0.25); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  background: #111;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.carousel-dot.active { background: var(--accent); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 14px; height: 14px; }

/* =========================================
   SERVICE CARDS
   ========================================= */

.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--light);
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.05); }

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light), #e8edf3);
  color: var(--text-secondary);
  font-size: 0.8rem;
  gap: 0.5rem;
  text-align: center;
  padding: 1rem;
}
.img-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }

.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon svg { width: 26px; height: 26px; color: var(--accent); }

.service-card h3 { margin-bottom: 0.6rem; color: var(--primary); }
.service-card p { flex: 1; margin-bottom: 1.25rem; }
.service-card .btn { align-self: flex-start; }

/* =========================================
   WHY CHOOSE US
   ========================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  flex-direction: column;
}

.why-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 24px; height: 24px; color: var(--accent); }

.why-item h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.why-item p { font-size: 0.9rem; }

/* =========================================
   SERVICE AREA
   ========================================= */

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5em 1.1em;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: all var(--transition);
}

.area-tag:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}

.area-tag svg { width: 14px; height: 14px; color: var(--accent); }

.area-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

/* =========================================
   TESTIMONIALS
   ========================================= */

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.stars svg { width: 18px; height: 18px; color: #f59e0b; fill: #f59e0b; }

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.25rem;
  color: var(--text);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-info strong { display: block; font-size: 0.95rem; color: var(--primary); }
.author-info span { font-size: 0.82rem; color: var(--text-secondary); }

/* =========================================
   CTA BANNER
   ========================================= */

.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* =========================================
   SERVICE PAGE SPECIFIC
   ========================================= */

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.service-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.check-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.check-icon svg { width: 16px; height: 16px; color: var(--accent); }

.service-item h4 { margin-bottom: 0.2rem; font-size: 0.95rem; }
.service-item p { font-size: 0.85rem; }

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--accent);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(247,201,72,0.4);
}

.process-step h4 { margin-bottom: 0.4rem; }
.process-step p { font-size: 0.88rem; }

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--light); }

.faq-item.open .faq-question { background: var(--accent-light); color: var(--accent-dark); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Feature split section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content { display: flex; flex-direction: column; gap: 1.25rem; }

.split-content p { color: var(--text-secondary); }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.25rem 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F7C948' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
  background:#00745A;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
   color: rgba(255,255,255,0.88);
}

/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 22px; height: 22px; color: var(--accent); }

.contact-card strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary); margin-bottom: 0.25rem; }
.contact-card a, .contact-card span { font-size: 1.05rem; font-weight: 600; color: var(--primary); }
.contact-card a:hover { color: var(--accent); }

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form-wrapper h3 { margin-bottom: 0.4rem; }
.contact-form-wrapper > p { font-size: 0.93rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7em 1em;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(247,201,72,0.2);
}

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

.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 18px; padding-right: 2.5rem; }

.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 0.9em; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success svg { width: 56px; height: 56px; color: var(--success); margin: 0 auto 1rem; }
.form-success h4 { color: var(--success); font-size: 1.3rem; margin-bottom: 0.5rem; }

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.65);
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo span { color: var(--accent); }

.footer-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-phone svg { width: 18px; height: 18px; color: var(--accent); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255,255,255,0.12);
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }

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

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

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

  .section { padding: 3.5rem 0; }
  .grid-2, .split-section, .contact-grid, .services-list { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-3 a { display: block; height: 100%; }
  .form-row { grid-template-columns: 1fr; }

  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  .phone-link { font-size: 0.78rem; gap: 0.25rem; }
  .phone-link svg { width: 14px; height: 14px; }
  .logo-img { height: 48px; }
  .service-cards { grid-template-columns: 1fr; }

  .hero { min-height: 520px; }
  .hero-badges { gap: 1rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: fit-content; }

  .carousel-slide img { height: 220px; }
  .carousel-btn { width: 36px; font-size: 1.1rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrapper { padding: 1.5rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .area-tags { gap: 0.5rem; }
}
