/* ============================================================
   AVOCADO PAINTING — Main Stylesheet
   Design tokens: Avocado green + sky blue + crisp white
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  /* Brand Colors */
  --color-avocado-dark:   #2d5a1b;   /* deep avocado green */
  --color-avocado:        #4a8c2a;   /* mid avocado green */
  --color-avocado-light:  #7ec850;   /* light avocado green */
  --color-avocado-pale:   #d4edba;   /* very light green tint */
  --color-avocado-cream:  #f0f8e8;   /* near-white green tint */
  --color-blue:           #3aabdc;   /* sky / brush blue */
  --color-blue-dark:      #1e7faa;   /* deeper blue */
  --color-blue-light:     #b8e4f5;   /* pale blue tint */
  --color-white:          #ffffff;
  --color-off-white:      #f8faf5;
  --color-charcoal:       #1a2e0e;
  --color-text:           #2c3e1a;
  --color-text-muted:     #5a7040;
  --color-border:         #d0e8b8;

  /* Typography */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(45, 90, 27, 0.08);
  --shadow-md:  0 8px 32px rgba(45, 90, 27, 0.12);
  --shadow-lg:  0 20px 60px rgba(45, 90, 27, 0.18);
  --shadow-blue: 0 8px 32px rgba(58, 171, 220, 0.25);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--color-charcoal);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.75; color: var(--color-text-muted); }

/* ── Utility Classes ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-pad { padding: var(--space-2xl) 0; }
.section-pad-sm { padding: var(--space-xl) 0; }

.text-center { text-align: center; }
.text-white { color: var(--color-white) !important; }
.text-green { color: var(--color-avocado-dark); }
.text-blue { color: var(--color-blue); }

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
  background: var(--color-blue-light);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.tag-green {
  color: var(--color-avocado-dark);
  background: var(--color-avocado-pale);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-avocado);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(74, 140, 42, 0.35);
}
.btn-primary:hover {
  background: var(--color-avocado-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74, 140, 42, 0.45);
}

.btn-blue {
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  background: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(58, 171, 220, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-avocado-dark);
  border-color: var(--color-white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-charcoal);
  border: 2px solid var(--color-charcoal);
}
.btn-outline-dark:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.btn-outline-green {
  background: transparent;
  color: var(--color-avocado);
  border: 2px solid var(--color-avocado);
}
.btn-outline-green:hover {
  background: var(--color-avocado);
  color: var(--color-white);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }

/* ── Navigation ── */
.navbar {
  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);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 88px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-blue);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--color-avocado); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--color-avocado); }
.nav-links a.active::after { transform: scaleX(1); background: var(--color-avocado); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-phone {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-avocado-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-phone svg { color: var(--color-blue); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  transition: var(--transition);
  border-radius: 2px;
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 999;
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}

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

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: var(--space-sm); width: 100%; justify-content: center; }

/* ── Hero Section — True Split Layout ── */
.hero {
  display: flex;
  min-height: 100vh;
  padding-top: 90px;
  overflow: hidden;
  background: #ffffff;
}

/* Left panel: pure white, holds all text content */
.hero-left {
  flex: 0 0 48%;
  display: flex;
  align-items: center;
  background: #ffffff;
  z-index: 2;
  padding: var(--space-2xl) var(--space-xl) var(--space-2xl) 6%;
}

.hero-left-inner {
  max-width: 500px;
  width: 100%;
}

/* Right panel: photo fills entirely, roller centered */
.hero-right {
  flex: 0 0 52%;
  position: relative;
  overflow: hidden;
}

/* Very light white overlay — just 15% to slightly soften */
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  z-index: 1;
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Floating estimate card — hidden */
.hero-card {
  display: none;
}

/* Legacy */
.hero-text { max-width: 520px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero-eyebrow-line {
  width: 40px;
  height: 3px;
  background: var(--color-blue);
  border-radius: 2px;
}

.hero-eyebrow span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-avocado-dark);
}

.hero h1 {
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
  text-shadow: none;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-avocado);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-trust-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-avocado);
  line-height: 1;
}

.hero-trust-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
}

.hero-trust-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

/* Hero Card (right side) */
.hero-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--color-charcoal);
}

.hero-card p {
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-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(--color-avocado);
  box-shadow: 0 0 0 3px rgba(74, 140, 42, 0.12);
}

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

.form-submit { width: 100%; justify-content: center; margin-top: var(--space-sm); }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--color-avocado-dark);
  padding: var(--space-md) 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-white);
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg { color: var(--color-avocado-light); }

.stat-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-avocado-light);
  line-height: 1;
}

.stat-text span {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stats-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

.stats-pipe {
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1;
  padding: 0 var(--space-lg);
}

/* ── Why Us Section ── */
.why-us {
  background: var(--color-white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.why-us-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-us-image:hover img { transform: scale(1.04); }

.why-us-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.why-us-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--color-avocado-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us-badge-icon svg { color: var(--color-avocado); }

.why-us-badge strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-avocado-dark);
  line-height: 1;
}

.why-us-badge span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.why-us-content { padding-left: var(--space-md); }

.why-us-content h2 { margin-bottom: var(--space-sm); }
.why-us-content > p { margin-bottom: var(--space-lg); font-size: 1.05rem; }

.feature-list { display: flex; flex-direction: column; gap: var(--space-md); }

.feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-avocado-pale);
}

.feature-icon.blue { background: var(--color-blue-light); }
.feature-icon svg { color: var(--color-avocado); }
.feature-icon.blue svg { color: var(--color-blue-dark); }

.feature-text h4 { margin-bottom: 0.25rem; color: var(--color-charcoal); }
.feature-text p { font-size: 0.9rem; margin: 0; }

/* ── Services Section ── */
.services {
  background: var(--color-off-white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.section-header h2 { margin-bottom: var(--space-sm); }
.section-header p { font-size: 1.05rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-border);
}

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

.service-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

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

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

.service-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,50,10,0.5) 0%, transparent 60%);
}

.service-card-body {
  padding: var(--space-md);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--color-avocado-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.service-card-icon svg { color: var(--color-avocado); }

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.service-card p {
  font-size: 0.88rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-avocado);
  transition: gap var(--transition), color var(--transition);
}

.service-card-link:hover { gap: 0.7rem; color: var(--color-avocado-dark); }

/* ── Process Section ── */
.process {
  background: var(--color-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--color-avocado-pale), var(--color-blue-light));
  z-index: 0;
}

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

.process-step-num {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--color-avocado-pale);
  border: 3px solid var(--color-avocado-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-avocado-dark);
  transition: var(--transition);
}

.process-step:hover .process-step-num {
  background: var(--color-avocado);
  color: var(--color-white);
  border-color: var(--color-avocado);
  transform: scale(1.08);
}

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

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-avocado-dark) 0%, #1a4a0a 60%, var(--color-blue-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(58,171,220,0.08);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta-text h2 { color: var(--color-white); margin-bottom: 0.5rem; }
.cta-text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ── Service Areas ── */
.service-areas {
  background: var(--color-avocado-cream);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.areas-text h2 { margin-bottom: var(--space-sm); }
.areas-text > p { margin-bottom: var(--space-lg); font-size: 1.05rem; }

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.area-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-avocado);
  flex-shrink: 0;
}

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

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

/* ── Contact Page ── */
.contact-hero {
  background: linear-gradient(135deg, var(--color-avocado-dark) 0%, #1a4a0a 100%);
  padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
  text-align: center;
}

.contact-hero h1 { color: var(--color-white); margin-bottom: var(--space-sm); }
.contact-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 540px; margin: 0 auto; }

.contact-section {
  background: var(--color-off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info h2 { margin-bottom: var(--space-sm); }
.contact-info > p { margin-bottom: var(--space-lg); }

.contact-detail-list { display: flex; flex-direction: column; gap: var(--space-md); }

.contact-detail {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--color-avocado-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { color: var(--color-avocado); }

.contact-detail-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

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

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

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.contact-form-card h3 { margin-bottom: 0.4rem; }
.contact-form-card > p { margin-bottom: var(--space-lg); font-size: 0.9rem; }

/* ── Services Page ── */
.services-hero {
  background: linear-gradient(135deg, var(--color-avocado-dark) 0%, #1a4a0a 100%);
  padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
  text-align: center;
}

.services-hero h1 { color: var(--color-white); margin-bottom: var(--space-sm); }
.services-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.services-full {
  background: var(--color-white);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-detail-image:hover img { transform: scale(1.04); }

.service-detail-content { padding: var(--space-md); }
.service-detail-content h2 { margin-bottom: var(--space-sm); }
.service-detail-content > p { margin-bottom: var(--space-md); font-size: 1.05rem; }

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--space-lg);
}

.service-bullet {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

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

/* ── Footer ── */
.footer {
  background: #ffffff;
  color: var(--color-text);
  border-top: 3px solid var(--color-avocado-light);
}

.footer-main {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
}

.footer-brand img { height: 70px; margin-bottom: var(--space-md); filter: none; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: var(--space-md); color: var(--color-text-muted); }

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--color-avocado-pale);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-social a:hover { background: var(--color-avocado); }
.footer-social a:hover svg { color: #fff; }
.footer-social svg { color: var(--color-avocado-dark); width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-avocado-dark);
  margin-bottom: var(--space-md);
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-avocado); }

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg { color: var(--color-blue); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.5; }
.footer-contact-item a { font-size: 0.88rem; color: var(--color-text-muted); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--color-blue); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) 0;
  background: #f8faf6;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p { font-size: 0.8rem; color: var(--color-text-muted); margin: 0; }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up {
  opacity: 1;
  animation: fadeInUp 0.7s ease forwards;
}

.animate-fade-up.delay-1 { animation-delay: 0.1s; }
.animate-fade-up.delay-2 { animation-delay: 0.2s; }
.animate-fade-up.delay-3 { animation-delay: 0.3s; }
.animate-fade-up.delay-4 { animation-delay: 0.4s; }

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { flex-direction: column; }
  .hero-left { flex: none; width: 100%; padding: var(--space-xl) var(--space-md); }
  .hero-left-inner { margin: 0 auto; padding-right: 0; }
  .hero-right { flex: none; width: 100%; height: 50vh; min-height: 320px; }
  .hero-card { position: static; margin: var(--space-md); display: none; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-content { padding-left: 0; }
  .why-us-image { aspect-ratio: 16/9; max-height: 400px; }
  .services-grid { 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; gap: var(--space-lg); }
  .areas-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-left { padding: var(--space-lg) var(--space-md); }
  .hero-right { height: 40vh; min-height: 260px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-wrap: wrap; gap: var(--space-sm); }
  .stats-inner { flex-direction: column; gap: var(--space-sm); }
  .stats-divider { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .section-pad { padding: var(--space-xl) 0; }
  .hero { padding-top: 90px; }
  .hero-right { height: 35vh; min-height: 220px; }
}

/* ── Page-specific active nav ── */
.nav-links a[data-page="home"].active,
.nav-links a[data-page="services"].active,
.nav-links a[data-page="contact"].active {
  color: var(--color-avocado);
}

/* ── Brush stroke decorative element ── */
.brush-stroke {
  display: inline-block;
  position: relative;
}

.brush-stroke::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' fill='none'%3E%3Cpath d='M2 8 C40 4, 80 10, 120 6 C160 2, 190 8, 198 6' stroke='%233aabdc' stroke-width='4' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}

/* ── Testimonials ── */
.testimonials {
  background: var(--color-avocado-cream);
}

.testimonials-note {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--space-lg);
}

.testimonials-note h2 { margin-bottom: var(--space-sm); }
.testimonials-note p { font-size: 1.05rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-sm);
}

.testimonial-stars svg { color: #f59e0b; }

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: var(--space-md);
  padding: 0;
  border: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-avocado-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-avocado-dark);
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

.testimonial-author-info span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── Success message ── */
.form-success {
  display: none;
  background: var(--color-avocado-pale);
  border: 1.5px solid var(--color-avocado-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  color: var(--color-avocado-dark);
  font-weight: 600;
  margin-top: var(--space-sm);
}

.form-success.show { display: block; }

/* ── Floating Call Button (Mobile) ── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: var(--color-avocado);
  color: var(--color-white);
  border-radius: var(--radius-full);
  padding: 0.9rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 32px rgba(74, 140, 42, 0.45);
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(74, 140, 42, 0.45); }
  50% { box-shadow: 0 8px 40px rgba(74, 140, 42, 0.7); }
}

.float-cta:hover {
  background: var(--color-avocado-dark);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .float-cta { display: flex; }
}

/* ── Hero section: ensure full viewport height on mobile ── */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }
  .hero-content {
    padding: var(--space-xl) var(--space-sm);
    padding-top: calc(80px + var(--space-lg));
  }
}

/* ── Improve stats bar on mobile ── */
@media (max-width: 480px) {
  .stats-inner {
    text-align: center;
    gap: var(--space-md);
  }
  .stat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ── Service areas list improvement ── */
.area-item {
  padding: 0.4rem 0;
}

/* ── Process step hover improvement ── */
.process-step:hover h4 {
  color: var(--color-avocado);
}

/* ── Nav active state for services page ── */
.nav-links a.active::after {
  background: var(--color-avocado);
}

/* ── Smooth image loading ── */
img {
  transition: opacity 0.3s ease;
}

/* ── Contact form improvements ── */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  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='%235a7040' stroke-width='2.5' 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 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ── Footer logo: full color, no filter ── */
.footer-brand img {
  filter: none;
  opacity: 1;
}

/* ── Print styles ── */
@media print {
  .navbar, .float-cta, .cta-banner { display: none; }
  body { font-size: 12pt; }
}

/* ── Promise / Trust Section ── */
.promise-section {
  background: var(--color-off-white);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.promise-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-avocado-light);
}

.promise-card--cta {
  background: linear-gradient(135deg, var(--color-avocado-cream) 0%, #e8f5d4 100%);
  border-color: var(--color-avocado-light);
}

.promise-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-avocado-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-avocado-dark);
}

.promise-icon--blue {
  background: var(--color-blue-light);
  color: var(--color-blue-dark);
}

.promise-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--color-charcoal);
}

.promise-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Why Avocado Brand Section ── */
.why-avocado-section {
  background: linear-gradient(135deg, var(--color-avocado-pale) 0%, #e8f5e0 100%);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.why-avocado-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-md);
}

.why-avocado-emoji {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  display: block;
  line-height: 1;
}

.why-avocado-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--color-avocado-dark);
  margin-bottom: var(--space-md);
}

.why-avocado-inner p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}
