/* ============================================================
   HOVARO ENERGY SOLUTIONS — Stylesheet v2
   Theme:    Light & Premium
   Accent:   Sky Blue · Logo Green · Logo Red
   Font:     Montserrat (400 / 500 / 600 / 700 / 800 / 900)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

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

:root {
  /* Backgrounds */
  --bg:          #FFFFFF;
  --surface:     #F4F8F5;
  --surface-2:   #EAF0EC;
  --surface-3:   #DDE7E1;
  --surface-dark:#0D1F2D;   /* footer */

  /* Brand colours */
  --blue:        #28326e;   /* Sky blue — primary */
  --blue-dark:   #0E6EAD;
  --blue-light:  #5BB8FF;
  --blue-dim:    rgba(21,137,212,0.09);
  --blue-dim2:   rgba(21,137,212,0.15);

  --green:       #1B9E52;   /* Logo green */
  --green-dark:  #156E39;
  --green-dim:   rgba(27,158,82,0.1);

  --red:         #D42B2B;   /* Logo red */
  --red-dim:     rgba(212,43,43,0.08);

  /* Text */
  --text:        #0D1C14;
  --text-muted:  #1b8a3c;
  --text-faint:  #9DB0A5;
  --text-on-dark:#E8F0EB;

  /* Borders */
  --border:      rgba(21,137,212,0.18);
  --border-sub:  rgba(13,28,20,0.08);
  --border-dark: rgba(255,255,255,0.08);

  --radius:      6px;
  --radius-lg:   14px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow:      0 4px 24px rgba(13,28,20,0.08);
  --shadow-lg:   0 12px 48px rgba(13,28,20,0.12);
  --shadow-blue: 0 8px 30px rgba(21,137,212,0.3);
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.display-xl {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.display-lg {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.display-sm {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  line-height: 1.2;
}
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.quote-text {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--text-muted);
}
.body-lg { font-size: 1.05rem; line-height: 1.8; font-weight: 400; }
.body-sm { font-size: 0.875rem; color: var(--text-muted); }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.section     { padding: clamp(4rem, 10vw, 8rem) 0; }
.section-sm  { padding: clamp(2.5rem, 6vw, 5rem) 0; }

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

.flex             { display: flex; }
.flex-col         { flex-direction: column; }
.items-center     { align-items: center; }
.justify-between  { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 12px rgba(21,137,212,0.2);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-sub);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  padding: 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  gap: 0.4rem;
}
.btn-ghost .arrow { transition: transform var(--transition); display: inline-block; }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn svg { width: 16px; height: 16px; }

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-sub);
  padding: 0.9rem 0;
  box-shadow: 0 2px 16px rgba(13,28,20,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px;         /* Controls logo height in nav */
  width: auto;          /* Maintains aspect ratio */
  display: block;
  object-fit: contain;
  transition: opacity var(--transition);
}
.nav-logo-img:hover { opacity: 0.85; }

/* Slightly smaller on mobile */
@media (max-width: 768px) {
  .nav-logo-img { height: 36px; }
}

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  transition: right var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-cta { margin-left: 1rem; }

/* Mobile menu */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px; z-index: 1100;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); transition: var(--transition); transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.nav-mobile.open { opacity: 1; pointer-events: all; display: flex; }
.nav-mobile a {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--text-muted); transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--blue); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #EBF6FF 0%, #F4F8F5 40%, #FFFDF5 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 25%, rgba(21,137,212,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 75%, rgba(27,158,82,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 90% 80%, rgba(212,43,43,0.05) 0%, transparent 50%);
}
/* Decorative sun orb */
.hero-orb {
  position: absolute;
  top: 6%; right: 10%;
  width: clamp(200px, 28vw, 380px);
  height: clamp(200px, 28vw, 380px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 133, 0.63) 0%, rgba(211, 219, 95, 0.24) 45%, transparent 70%);
  animation: pulse-orb 6s ease-in-out infinite;
}
.hero-orb::after {
  content: '';
  position: absolute; inset: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 216, 10, 0.979) 0%, rgba(194, 192, 94, 0.699) 60%, transparent 80%);
  animation: pulse-orb 6s ease-in-out infinite reverse;
}
@keyframes pulse-orb {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.75; transform: scale(1.05); }
}

/* Subtle grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(21,137,212,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,137,212,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

/* Red decorative accent stripe */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--red), transparent 60%);
}

.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 2px;
  background: var(--green); border-radius: 1px;
}
.hero-headline { margin-bottom: 1.5rem; color: var(--text); }
.hero-headline em { color: var(--blue); font-style: normal; }
.hero-subtext {
  max-width: 520px; font-size: 1rem; font-weight: 500;
  color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }

/* Red badge on hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red-dim);
  border: 1px solid rgba(212,43,43,0.2);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
  width: fit-content;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-scroll {
  position: absolute; bottom: 2rem; right: clamp(1.25rem, 5vw, 3rem);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-faint); font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; writing-mode: vertical-rl; z-index: 2;
}
.hero-scroll::before {
  content: ''; display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--text-faint));
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.5); opacity: 0.3; }
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--text);
  border-top: none;
  border-bottom: none;
  padding: 2rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  padding: 0.5rem 2rem; text-align: center; position: relative;
}
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--blue-light);
  line-height: 1; margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── SERVICES OVERVIEW ────────────────────────────────────── */
.services-overview { background: var(--bg); }
.section-header { margin-bottom: 3.5rem; }
.section-header-flex {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem;
}

.service-card {
  background: var(--bg);
  border: 1.5px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px;
  background: var(--blue-dim);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1.1rem; color: var(--text);
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; flex: 1; }

/* ── SPLIT SECTIONS ───────────────────────────────────────── */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px; overflow: hidden;
}
.split-image { position: relative; overflow: hidden; min-height: 400px; }
.split-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.split-section:hover .split-image img { transform: scale(1.03); }
.split-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.split-image-overlay.right {
  background: linear-gradient(to left, var(--surface), transparent);
}
.split-content {
  background: var(--bg);
  padding: clamp(2.5rem, 5vw, 5rem);
  display: flex; flex-direction: column; justify-content: center; gap: 2rem;
}
.split-content.dark { background: var(--surface); }

.benefits-list { display: flex; flex-direction: column; gap: 1rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.benefit-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); margin-top: 0.55rem; flex-shrink: 0;
}
.benefit-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.9rem; margin-bottom: 0.15rem;
}
.benefit-item p { font-size: 0.83rem; color: var(--text-muted); }

/* ── PROCESS STEPS ────────────────────────────────────────── */
.process-section { background: var(--surface); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 3rem; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 2.5rem;
  left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 1px;
  background: linear-gradient(90deg, var(--blue-dim), var(--border), var(--blue-dim));
}
.step-item {
  padding: 0 1.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 0.9rem; color: var(--blue);
  position: relative; z-index: 1;
  box-shadow: 0 0 0 4px var(--blue-dim);
}
.step-item h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; }
.step-item p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { background: var(--bg); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.testimonial-card {
  background: var(--bg);
  border: 1.5px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars { display: flex; gap: 3px; color: #F59E0B; font-size: 0.85rem; }
.testimonial-text {
  font-family: 'Montserrat', sans-serif;
  font-style: italic; font-size: 0.95rem;
  line-height: 1.7; color: var(--text); flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-dim);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 0.82rem; color: var(--blue); flex-shrink: 0;
}
.testimonial-name  { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.875rem; }
.testimonial-role  { font-size: 0.72rem; color: var(--text-muted); }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: var(--blue);
  border-top: none; border-bottom: none;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
}
/* Green accent stripe on CTA */
.cta-banner::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), transparent 50%, var(--red) 100%);
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 640px; margin: 0 auto;
}
.cta-inner .eyebrow {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem; display: block;
}
.cta-inner .display-lg { color: #fff; margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1rem; }
.cta-actions {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1rem;
}
.cta-banner .btn-primary {
  background: #fff; color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner .btn-primary:hover {
  background: var(--surface); color: var(--blue-dark);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.cta-banner .btn-outline {
  color: #fff; border-color: rgba(255,255,255,0.4);
}
.cta-banner .btn-outline:hover {
  border-color: #fff; color: #fff; background: rgba(255,255,255,0.1);
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-section { background: var(--surface); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--blue-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.2rem;
}
.contact-detail-value { font-weight: 600; font-size: 0.95rem; }

.form-card {
  background: var(--bg);
  border: 1.5px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1.5px solid var(--border-sub);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem; font-weight: 500;
  transition: border-color var(--transition);
  outline: none; width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-dim);
  background: var(--bg);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); font-weight: 400; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--bg); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--surface-dark);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--green), var(--blue), var(--red)) 1;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo-img {
  height: 48px;       /* Controls logo height in footer */
  width: auto;
  display: block;
  object-fit: contain;
  /* Invert to white so the logo is visible on the dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-tagline {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  line-height: 1.65; max-width: 240px;
}
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); transition: var(--transition);
}
.social-btn:hover {
  background: var(--blue-dim2); border-color: var(--blue);
  color: var(--blue-light);
}
.social-btn svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.5); transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.25); font-weight: 500; }
.footer-copy a { color: rgba(255,255,255,0.4); }
.footer-badge {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 0.4rem; font-weight: 600;
}
.footer-badge::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px var(--green);
}

/* ── WHATSAPP FAB ─────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  display: flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: #fff; border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition); white-space: nowrap;
  overflow: hidden; max-width: 54px;
}
.whatsapp-fab:hover { max-width: 220px; box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-fab svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-fab span { opacity: 0; transition: opacity var(--transition); white-space: nowrap; }
.whatsapp-fab:hover span { opacity: 1; }

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, #EBF6FF 0%, #F4F8F5 60%, #FFFDF5 100%);
  border-bottom: 1px solid var(--border-sub);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(21,137,212,0.08) 0%, transparent 60%);
}
/* Green left border on inner pages */
.page-hero::after {
  content: ''; position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--green), var(--blue) 60%, transparent);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 0.75rem; display: block; }

.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500; color: var(--text-muted); margin-top: 1rem;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: var(--text-faint); }

/* ── VALUES GRID ──────────────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.value-card {
  padding: 2rem;
  border: 1.5px solid var(--border-sub);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.value-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.value-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.value-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ── STORY SECTION ────────────────────────────────────────── */
.story-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.story-image {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
  border: 1.5px solid var(--border-sub);
  box-shadow: var(--shadow-lg);
}
.story-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.story-image:hover img { transform: scale(1.03); }
.story-content { display: flex; flex-direction: column; gap: 1.5rem; }
.story-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }

/* ── SERVICE DETAIL CARDS ─────────────────────────────────── */
.service-detail-card {
  background: var(--bg);
  border: 1.5px solid var(--border-sub);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.service-detail-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.service-detail-img { height: 200px; overflow: hidden; background: var(--surface-2); }
.service-detail-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-detail-card:hover .service-detail-img img { transform: scale(1.05); }
.service-detail-body { padding: 1.75rem; }
.service-detail-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1.1rem; margin-bottom: 0.75rem;
}
.service-detail-body p {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 1.25rem;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── UTILITY ──────────────────────────────────────────────── */
.text-blue   { color: var(--blue); }
.text-green  { color: var(--green); }
.text-red    { color: var(--red); }
.text-gold   { color: var(--white); }   /* legacy alias → blue */
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.divider { height: 1px; background: var(--border-sub); margin: 3rem 0; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:last-child { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 250px; display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .story-section { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .steps-grid  { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── FORM SPINNER ─────────────────────────────────────────── */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
