/*
Theme Name: River Valley Property Services
Theme URI: https://rivervalleypropertyservices.com
Author: River Valley Property Services
Description: Custom theme for River Valley Property Services - Lawn Care, Landscaping, Irrigation, Junk Removal & Property Clean Up
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: river-valley
*/

:root {
  --green-dark: #1f4d3a;
  --green-mid: #2d6b52;
  --green-light: #5d8aa8;
  --green-pale: #eaf1f6;
  --accent: #5d8aa8;
  --accent-dark: #4a7490;
  --white: #ffffff;
  --off-white: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text: #1f2937;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  background: var(--white);
}

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

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

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-800);
}

.section-title span { color: var(--green-mid); }

.section-intro {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  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(245,166,35,0.4);
}

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

.btn-green {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,122,79,0.4);
}

/* ── TOP BAR ── */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.topbar a:hover { color: var(--accent); }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { opacity: 0.7; flex-shrink: 0; }

/* ── HEADER ── */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo-img {
  height: 52px;
  width: auto;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--green-dark); background: var(--green-pale); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { font-weight: 700; color: var(--green-dark); font-size: 0.95rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  color: var(--gray-800);
}

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--green-dark); }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #102a20 0%, #1f4d3a 50%, #2d6b52 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(77,175,74,0.15) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(245,166,35,0.1) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 0;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--gray-200);
}
.services-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid var(--gray-200);
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  border-right: 1px solid var(--gray-200);
  text-align: center;
  transition: background var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.strip-item:hover { background: var(--green-pale); }
.strip-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  transition: all var(--transition);
}
.strip-item:hover .strip-icon {
  background: var(--green-mid);
  color: var(--white);
}
.strip-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.3;
}

/* ── WHY US ── */
.why-us {
  background: var(--off-white);
  padding: 96px 0;
}
.why-features-full {
  margin-top: 56px;
}
.why-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.why-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--green-light);
}
.why-feature-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.why-feature h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--gray-800); }
.why-feature p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.55; }

.why-image-wrap { position: relative; }
.why-image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 40px;
}
.why-image-placeholder svg { opacity: 0.5; }
.why-image-placeholder p { font-size: 0.85rem; }
.why-badge-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-badge-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}
.why-badge-num { font-size: 1.5rem; font-weight: 900; color: var(--green-dark); line-height: 1; }
.why-badge-text { font-size: 0.75rem; color: var(--gray-600); }

/* ── SERVICES ── */
.services {
  padding: 96px 0;
  background: var(--white);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-img svg { opacity: 0.55; }
.service-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
}
.service-title { font-size: 1.2rem; font-weight: 800; color: var(--gray-800); margin-bottom: 10px; }
.service-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; flex: 1; }
.service-list { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-footer {
  padding: 0 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* Color-coded service headers */
.service-img.lawn { background: linear-gradient(135deg, #1f4d3a, #2d6b52); }
.service-img.landscape { background: linear-gradient(135deg, #163828, #1f4d3a); }
.service-img.irrigation { background: linear-gradient(135deg, #1a3a4d, #2d5f7a); }
.service-img.junk { background: linear-gradient(135deg, #4d2e1a, #7a4f2d); }
.service-img.cleanup { background: linear-gradient(135deg, #2e2e1a, #5c5c2d); }

/* ── PROCESS ── */
.process {
  padding: 96px 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 50%, rgba(77,175,74,0.12) 0%, transparent 60%);
}
.process .section-label { color: var(--accent); }
.process .section-title { color: var(--white); }
.process .section-intro { color: rgba(255,255,255,0.65); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: rgba(255,255,255,0.15);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.08);
}
.process-step h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 96px 0; background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: #fbbf24; font-size: 1rem; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-text::before { content: '\201C'; color: var(--green-light); font-size: 1.5rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--green-dark);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--gray-800); }
.author-location { font-size: 0.78rem; color: var(--gray-400); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 72px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--white); }
.cta-text p { color: rgba(255,255,255,0.85); margin-top: 8px; font-size: 1rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--accent-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ── CONTACT ── */
.contact { padding: 96px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}
.contact-card h4 { font-weight: 700; color: var(--gray-800); margin-bottom: 4px; font-size: 0.9rem; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }
.contact-card a:hover { color: var(--green-mid); }
.service-areas { margin-top: 4px; }
.service-areas h4 { font-weight: 700; color: var(--gray-800); font-size: 0.9rem; margin-bottom: 10px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(45,122,79,0.2);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
}
.contact-form-wrap h3 { font-size: 1.4rem; font-weight: 800; color: var(--gray-800); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,122,79,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group 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='%239ca3af' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--gray-400); margin-top: 12px; }

/* ── FOOTER ── */
.site-footer { background: var(--gray-800); color: rgba(255,255,255,0.8); }
.footer-main { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {}
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-link:hover { background: var(--green-mid); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-contact-item svg { margin-top: 2px; flex-shrink: 0; opacity: 0.7; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  color: var(--white);
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.phone { background: var(--green-mid); }
.float-btn.chat { background: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-features { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .topbar-left { display: none; }
  .hero-stats { gap: 24px; }
  .services-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .services-strip-inner .strip-item:nth-child(4),
  .services-strip-inner .strip-item:nth-child(5) { border-top: 1px solid var(--gray-200); }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .why-features { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .services-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
