/* ============================================================
   Greenwave Lawn & Pool Care LLC — styles.css
   Brand Colors: Aqua, Green, White, Deep Navy
   Edit CSS variables below to change brand colors site-wide
   ============================================================ */

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

/* Logo image (real PNG) */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo-img-footer {
  height: 80px;
  width: auto;
  display: block;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.logo-tagline {
  font-size: 0.68rem;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  font-weight: 500;
  line-height: 1.2;
}
.logo-text {
  display: flex;
  flex-direction: column;
}

/* ── CSS Variables ── */
:root {
  --aqua:       #00C6CF;
  --aqua-light: #e0fafb;
  --aqua-dark:  #009aa3;
  --green:      #3aaa35;
  --green-dark: #2a8226;
  --green-light:#e8f7e7;
  --navy:       #0d1f35;
  --navy-mid:   #162d4a;
  --charcoal:   #22303f;
  --white:      #ffffff;
  --off-white:  #f4f9f9;
  --text-dark:  #1a2535;
  --text-mid:   #4a5e72;
  --text-light: #8fa0b2;
  --radius:     14px;
  --radius-lg:  22px;
  --shadow:     0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.13);
  --transition: 0.26s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(58,170,53,0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,170,53,0.4);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-aqua {
  background: var(--aqua);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,198,207,0.3);
}
.btn-aqua:hover {
  background: var(--aqua-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,198,207,0.4);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

/* ── Section Label ── */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aqua-dark);
  background: var(--aqua-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label.green {
  color: var(--green-dark);
  background: var(--green-light);
}
.section-label.white {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 48px;
}
.text-center { text-align: center; }

/* ══════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green), var(--aqua));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-tagline {
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--green-dark);
  background: var(--green-light);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-link {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.phone-link:hover { color: var(--green-dark); }
.phone-link span { font-size: 1.1rem; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* Hero background — real photo */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(135deg, 
      rgba(13,31,53,0.82) 0%, 
      rgba(22,45,74,0.60) 45%, 
      rgba(0,60,40,0.40) 100%),
    url('hero.png');
  background-size: cover;
  background-position: center 30%;
}

/* Decorative pool ripple circles */
.hero-circles {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.12;
  pointer-events: none;
}
.hero-circles circle {
  fill: none;
  stroke: var(--aqua);
  stroke-width: 1.5;
}

/* Decorative grass wave at bottom */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,198,207,0.15);
  border: 1px solid rgba(0,198,207,0.35);
  color: var(--aqua);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--aqua);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--white);
  max-width: 750px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  color: var(--aqua);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.75;
  animation: fadeUp 0.7s 0.2s ease both;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  animation: fadeUp 0.7s 0.45s ease both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  font-weight: 400;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar {
  background: var(--off-white);
  padding: 28px 0;
  border-bottom: 1px solid #e2edf0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 36px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
}
.trust-item .trust-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.trust-divider {
  width: 1px;
  height: 28px;
  background: #cde0e4;
}

/* ══════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════ */
.services-section {
  padding: 96px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid #e4eef1;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--aqua));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--green-light), var(--aqua-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px;
  transition: transform var(--transition);
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
}
.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   LAWN CARE SECTION
══════════════════════════════════════════ */
.lawn-section {
  padding: 96px 0;
  background: var(--off-white);
}
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
/* Placeholder image box — replace with <img> tag */
.img-placeholder {
  width: 100%;
  padding-bottom: 72%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.img-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.img-placeholder.lawn-ph .img-placeholder-inner {
  background: linear-gradient(135deg, #d4edd4, #a8d5a2, #7abf70);
  color: var(--green-dark);
}
.img-placeholder.pool-ph .img-placeholder-inner {
  background: linear-gradient(135deg, #b2edf2, #6fd6e0, #00b8c8);
  color: #004f5e;
}
.img-placeholder-inner .ph-icon {
  font-size: 3.5rem;
  opacity: 0.7;
}
.img-placeholder-inner .ph-text {
  text-align: center;
  line-height: 1.5;
  opacity: 0.8;
}

/* Image badge overlay */
.img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.img-badge span { font-size: 1.4rem; }

.split-content .section-label { margin-bottom: 12px; }
.split-content h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.split-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.feature-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.check-icon {
  width: 22px;
  height: 22px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon.aqua {
  background: var(--aqua-light);
  color: var(--aqua-dark);
}

/* ══════════════════════════════════════════
   POOL SECTION
══════════════════════════════════════════ */
.pool-section {
  padding: 96px 0;
  background: var(--white);
}

/* ══════════════════════════════════════════
   PACKAGES SECTION
══════════════════════════════════════════ */
.packages-section {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.packages-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,198,207,0.12) 0%, transparent 70%);
}
.packages-section .section-title { color: var(--white); }
.packages-section .section-sub { color: rgba(255,255,255,0.65); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.package-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.package-card.featured {
  background: rgba(0,198,207,0.12);
  border-color: var(--aqua);
}
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--aqua);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.package-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.package-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.package-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 14px;
}
.package-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}
.package-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.package-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(58,170,53,0.25);
  color: #7de07a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
.about-section {
  padding: 96px 0;
  background: var(--off-white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  padding-bottom: 115%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-photo-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #c8e6c9, #80cbc4, #0097a7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #004d5e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-photo-inner .ph-icon { font-size: 4rem; opacity: 0.6; }

/* Replace above with:
.about-photo { background: none; }
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
*/

.about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 220px;
}
.about-accent-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.about-accent-text {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.4;
  font-weight: 500;
}
.about-accent-text strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.about-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-mid);
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.about-value {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-value h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-value p {
  font-size: 0.83rem;
  color: var(--text-mid);
  margin: 0;
}

/* ══════════════════════════════════════════
   SERVICE AREAS SECTION
══════════════════════════════════════════ */
.areas-section {
  padding: 80px 0;
  background: var(--white);
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}
.area-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1.5px solid #d6eaed;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--transition);
}
.area-pill:hover {
  background: var(--aqua-light);
  border-color: var(--aqua);
  color: var(--aqua-dark);
  transform: translateY(-2px);
}
.area-pill::before {
  content: '📍';
  font-size: 0.85rem;
}

/* ══════════════════════════════════════════
   CTA / CONTACT SECTION
══════════════════════════════════════════ */
.contact-section {
  padding: 96px 0;
  background: var(--off-white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-left p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.contact-phone-big {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  transition: background var(--transition);
  text-decoration: none;
}
.contact-phone-big:hover { background: var(--green-dark); }
.contact-phone-big .ph-circle {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-phone-big .ph-info { display: flex; flex-direction: column; }
.contact-phone-big .ph-label { font-size: 0.75rem; opacity: 0.65; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-phone-big .ph-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  font-weight: 500;
}
.contact-info-item span { font-size: 1.2rem; }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dce8ec;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(0,198,207,0.12);
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a5e72' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border-radius: 10px;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.45); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 18px;
  max-width: 280px;
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--aqua);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 20px;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--white); }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--aqua); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--aqua); }
.footer-bottom a:hover { color: var(--white); }

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Mobile nav open state — toggled via JS */
  .nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 999;
    gap: 4px;
  }
  .nav-open .nav-links a { 
    padding: 12px 16px; 
    display: block; 
    border-radius: 10px; 
  }

  .hero h1 { font-size: 2.3rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .trust-divider { display: none; }

  .split-layout,
  .split-layout.reverse { 
    grid-template-columns: 1fr; 
    direction: ltr; 
    gap: 36px;
  }
  .split-layout.reverse > * { direction: ltr; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-accent-card { display: none; }
  .about-values { grid-template-columns: 1fr; }

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

  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-form { padding: 28px 22px; }

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

  .header-cta .btn { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

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