/* ============================================================
   GentleHandsCare.us — Stylesheet
   Warm, compassionate, healthcare-focused design
   ============================================================ */

/* ===================== CSS VARIABLES ===================== */
:root {
  --primary: #2A9D8F;
  --primary-dark: #238277;
  --primary-light: #3DB8A9;
  --primary-pale: #E8F6F4;
  --accent: #E76F51;
  --accent-dark: #D45A3E;
  --accent-light: #F4845F;
  --cream: #FDF8F4;
  --cream-dark: #F5EDE5;
  --white: #ffffff;
  --text: #3D3D3D;
  --text-light: #6B7280;
  --text-lighter: #9CA3AF;
  --heading: #264653;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --shadow-sm: 0 1px 3px rgba(42, 157, 143, 0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(42, 157, 143, 0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(42, 157, 143, 0.1), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 50px rgba(42, 157, 143, 0.12), 0 8px 20px rgba(0,0,0,0.06);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Lato', sans-serif;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.25;
  font-weight: 800;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--primary-dark); }

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-white { color: var(--white) !important; }
.text-white-soft { color: rgba(255,255,255,0.85) !important; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 157, 143, 0.3);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 111, 81, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--heading);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--heading);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full { width: 100%; }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--heading);
}

.logo-care {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--primary-pale);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--heading);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.header-phone:hover { color: var(--primary); }

.btn-header {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--heading);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38, 70, 83, 0.82) 0%, rgba(42, 157, 143, 0.65) 50%, rgba(38, 70, 83, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 120px;
}

.hero-text {
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
}

.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1.1;
}

.hero-stat-label {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 4px;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--cream);
  padding: 50px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.trust-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--heading);
}

.trust-text span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===================== SECTIONS COMMON ===================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-tag-light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.section-desc {
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-top: 12px;
}

/* ===================== SERVICES ===================== */
.services {
  padding: 100px 0;
  background: var(--cream);
}

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

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

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

.service-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.service-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: 50%;
  margin-bottom: 16px;
}

.service-body h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.service-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

.service-features {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-heading);
}

.service-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--primary-pale);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232A9D8F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ===================== BY THE NUMBERS ===================== */
.by-numbers {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.by-numbers-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #264653 0%, #2A9D8F 50%, #238277 100%);
  z-index: 0;
}

.by-numbers-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.by-numbers .container {
  position: relative;
  z-index: 1;
}

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

.number-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.number-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.number-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.number-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

/* ===================== ABOUT ===================== */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 20px;
  left: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 24px rgba(231, 111, 81, 0.3);
}

.about-exp-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
}

.about-exp-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.3;
  margin-top: 4px;
}

.about-content .section-tag { margin-bottom: 12px; }

.about-content h2 { margin-bottom: 20px; }

.about-lead {
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 400;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 32px;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-highlight svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.about-highlight strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--heading);
}

.about-highlight span {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ===================== PROCESS ===================== */
.process {
  padding: 100px 0;
  background: var(--cream);
}

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

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  max-width: 280px;
}

.process-step-number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.process-step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
  border: 3px solid var(--primary-pale);
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

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

.process-connector {
  display: flex;
  align-items: center;
  margin-top: 72px;
  flex-shrink: 0;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38, 70, 83, 0.9) 0%, rgba(42, 157, 143, 0.85) 100%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.cta-banner-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-banner-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-trust-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

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

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar span {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--heading);
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===================== SERVICE AREA ===================== */
.service-area {
  padding: 100px 0;
  background: var(--cream);
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.service-area-content h2 {
  margin-bottom: 16px;
}

.service-area-content > p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 28px;
}

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

.area-columns h4 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1rem;
}

.area-columns li {
  font-size: 0.92rem;
  color: var(--text-light);
  padding: 4px 0;
  position: relative;
  padding-left: 16px;
}

.area-columns li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 11px;
}

.area-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

.service-area-map iframe {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ===================== CONTACT ===================== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group:last-child:not(.form-row .form-group) {
  margin-bottom: 24px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--heading);
  margin-bottom: 6px;
}

.required { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-lighter);
}

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

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

.form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 14px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  margin-bottom: 20px;
}

.form-success h3 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1.6rem;
}

.form-success p {
  color: var(--text-light);
  font-size: 1rem;
}

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

.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  margin-bottom: 24px;
  font-size: 1.25rem;
}

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

.contact-detail:last-child { margin-bottom: 0; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--heading);
  margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-detail a:hover { color: var(--primary); }

.contact-emergency {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #FEF3F0, #FDE8E2);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(231, 111, 81, 0.15);
}

.contact-emergency strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 4px;
}

.contact-emergency p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.contact-emergency a {
  color: var(--accent);
  font-weight: 700;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--heading);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-care { color: var(--primary-light); }

.footer-about p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary-light);
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
}
.footer-contact a:hover { color: var(--white); }

.footer-contact span {
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ===================== SCROLL ANIMATIONS ===================== */
.reveal-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-fade.revealed,
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    gap: 40px;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 24px;
  }

  .process-connector {
    display: none;
  }

  .process-step {
    flex: 0 0 calc(50% - 12px);
    max-width: none;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .service-area-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-secondary {
    right: 20px;
    bottom: -20px;
    width: 180px;
  }

  .about-img-secondary img {
    height: 200px;
  }

  .about-experience-badge {
    left: 10px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .header-inner {
    height: 70px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    padding: 90px 24px 40px;
    transition: right var(--transition);
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }

  .nav-link {
    display: block;
    padding: 14px 18px;
    font-size: 1.05rem;
    border-radius: var(--radius);
  }

  .header-actions {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-content {
    padding: 120px 0 100px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-num {
    font-size: 1.8rem;
  }

  .trust-items {
    gap: 20px;
  }

  .trust-item {
    flex: 0 0 calc(50% - 10px);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .number-value {
    font-size: 2.2rem;
  }

  .process-step {
    flex: 0 0 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    max-width: none;
  }

  .area-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-about {
    grid-column: auto;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .cta-banner {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .trust-item {
    flex: 0 0 100%;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .area-columns {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 20px;
  }

  .cta-banner-btns {
    flex-direction: column;
  }

  .cta-banner-btns .btn {
    width: 100%;
  }

  .cta-trust-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

/* ===================== MOBILE MENU OVERLAY ===================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38, 70, 83, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}
