/* ==============================================================
   GP Irrigation — Main Stylesheet
   Fonts: Work Sans (body) + Poppins (headings) via Google Fonts
   Icons: Iconify-Icon web component
   ============================================================== */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Work+Sans:wght@300;400;500;600&family=Source+Sans+Pro:wght@400;600&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --brand-blue:    #354E81; /* Primary Navy */
  --brand-accent:  #47ACD1; /* Sky Blue */
  --brand-blue-dk: #1E2F4C; /* Darker Navy / Text Primary */
  --dark:          #1E2F4C;
  --dark-med:      #2d2d2d;
  --mid-gray:      #666666;
  --light-gray:    #f4f6f8;
  --white:         #ffffff;
  --border:        #e0e0e0;

  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Work Sans', sans-serif;
  --font-alt:     'Source Sans Pro', sans-serif;

  --container-w:   1200px;
  --header-h:      90px;
  --radius:        12px;
  --radius-sm:     6px;
  --shadow:        0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover:  0 8px 32px rgba(0,0,0,0.15);
  --transition:    0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 18px; } /* As per branding JSON body size */

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad  { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 6vw, 3.75rem); } /* 3.75rem = 60px @ 16px base, but 3.33rem @ 18px base is 60px */
h2 { font-size: clamp(1.5rem, 4vw, 1.777rem); } /* 1.777rem @ 18px base = 32px */
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-blue   { color: var(--brand-blue); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-accent);
  color: var(--white); /* Updated to white as per request */
  border-color: var(--brand-accent);
}
.btn-primary:hover {
  background: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue); /* No contrasting border on hover */
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--white);
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
  border-radius: 0px; /* As per branding JSON secondary button */
}

.btn-outline {
  background: transparent;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}
.btn-outline:hover {
  background: var(--brand-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Iconify-Icon ─────────────────────────────────────────── */
iconify-icon {
  font-size: 24px;
  color: var(--brand-blue);
  transition: color var(--transition), transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.site-header.scrolled .header-top {
  display: none;
}

.header-top {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.header-top .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.header-cta  { justify-self: start; }
.header-logo { justify-self: center; }
.header-logo img {
  height: 83px;
  width: auto;
}
.header-phone {
  justify-self: end;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 1rem;
  white-space: nowrap;
}
.header-phone a { color: inherit; }
.header-phone a:hover { text-decoration: underline; }

/* Hide mobile-only content on desktop */
.nav-mobile-cta,
.nav-mobile-social,
.header-whatsapp-mobile {
  display: none;
}

/* ── Navigation Bar ───────────────────────────────────────── */
.site-nav {
  background: var(--dark);
  padding: 0;
}
.site-nav .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 20px;
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--brand-blue);
  transition: all var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}
.site-nav a:hover::after,
.site-nav a.active::after {
  left: 0; right: 0;
}

/* ── Mobile Hamburger ─────────────────────────────────────── */
.hamburger {
  display: none;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  color: var(--brand-blue-dk);
  font-size: 2.2rem;
  line-height: 1;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  z-index: 1200;
}
.hamburger:hover {
  transform: scale(1.1);
}
.hamburger[aria-expanded="true"] {
  color: var(--brand-accent);
}

/* ── Mobile Call Button (sticky) ──────────────────────────── */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--white);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,115,230,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mobile-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0,115,230,0.5);
}
.mobile-call-btn iconify-icon {
  color: var(--white);
  font-size: 26px;
}

/* ── HERO SECTION ─────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(rgba(30, 47, 76, 0.7), rgba(30, 47, 76, 0.7)), 
              url('../assets/images/IMG-20240425-WA0008-c241024c-640w.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 100px;
  text-align: center;
  color: var(--white);
  min-height: 500px;
  display: flex;
  align-items: center;
}
.hero .container {
  width: 100%;
}
.hero h1 {
  max-width: 850px;
  margin: 0 auto 24px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 650px;
  margin: 0 auto 40px;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Override outline button in hero for better visibility */
.hero .btn-outline {
  color: var(--white);
  border-color: var(--white);
}
.hero .btn-outline:hover {
  background: var(--white);
  color: var(--brand-blue);
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,115,230,0.25), rgba(0,0,0,0.5));
}
.page-hero img.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero .breadcrumb {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.8); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-top: 10px;
}

/* ── ACCORDION ─────────────────────────────────────────────── */
.accordion-section { background: var(--light-gray); }
.accordion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.accordion-image {
  display: flex;
  justify-content: center;
}
.accordion-image img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.accordion { width: 100%; }
.accordion-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.accordion-item:first-child { border-top: 1px solid var(--border); }

.accordion-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition);
}
.accordion-trigger:hover { color: var(--brand-blue); }

.accordion-trigger .acc-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-trigger .acc-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--brand-blue);
}
.accordion-trigger .acc-arrow {
  margin-left: auto;
  color: var(--mid-gray);
  transition: transform var(--transition);
}

.accordion-item.open .accordion-trigger .acc-arrow {
  transform: rotate(180deg);
}
.accordion-item.open .accordion-trigger {
  color: var(--brand-blue);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.3s ease;
}
.accordion-item.open .accordion-body {
  max-height: 300px;
}
.accordion-body-inner {
  padding: 0 0 18px 54px;
  color: var(--mid-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── SERVICES GALLERY (cards) ─────────────────────────────── */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-card-body {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-card-body p {
  color: var(--mid-gray);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 16px;
}
.service-card-body .btn {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.82rem;
}

/* ── PHOTO GALLERY GRID ───────────────────────────────────── */
.gallery-section { background: var(--dark); padding: 70px 0; }
.gallery-section h2 { color: var(--white); text-align: center; margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item.hidden { display: none; }

.gallery-toggle-wrap {
  text-align: center;
  margin-top: 28px;
}
.gallery-toggle {
  background: none;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 11px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}
.gallery-toggle:hover {
  background: var(--white);
  color: var(--dark);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonials-grid-wrap {
  background: var(--brand-blue-dk);
  padding: 80px 0;
  margin-top: 48px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--brand-blue-dk);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  position: relative;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  color: var(--brand-accent);
  font-size: 1.25rem;
}
.testimonial-text {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 500;
  flex: 1;
}
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}
.testimonial-user-icon {
  font-size: 40px;
  color: var(--brand-accent);
  opacity: 0.8;
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.form-section { background: var(--white); }
.form-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--light-gray);
  border-radius: 12px;
  padding: 40px 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--brand-blue-dk); /* Added per request */
}
.form-container h2 { margin-bottom: 28px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-block {
  padding-top: 16px;
}
.contact-info-block h2 { margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info-item iconify-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-info-item p { margin: 0; color: var(--mid-gray); }
.contact-info-item a { color: var(--brand-blue); font-weight: 600; }
.contact-info-item a:hover { text-decoration: underline; }

.hours-block { margin-bottom: 24px; }
.hours-block h4 { margin-bottom: 10px; font-size: 1rem; }
.hours-table { width: 100%; font-size: 0.9rem; color: var(--mid-gray); }
.hours-table td:last-child { text-align: right; font-weight: 500; }

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
}
.social-link:hover iconify-icon { color: var(--white); }

/* Shared form styles */
.contact-form { width: 100%; }
.contact-form-inner {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--brand-blue-dk); /* Added per request */
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 0px; /* As per branding JSON */
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: transparent; /* As per branding JSON */
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(53, 78, 129, 0.15);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-success,
.form-error {
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 500;
  display: none;
  margin-top: 12px;
}
.form-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ── INTRO SECTION (borehole + water page) ────────────────── */
.intro-section { background: var(--white); padding: 70px 0; }
.intro-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.intro-text h2 { margin-bottom: 20px; }
.intro-text p  { color: var(--mid-gray); margin-bottom: 14px; }

.form-box {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--brand-blue-dk); /* Added per request */
}
.form-box .form-box-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  color: var(--brand-blue);
}
.form-box h3 { margin-bottom: 20px; }

/* ── HOW WE WORK ──────────────────────────────────────────── */
.how-section { background: var(--white); }
.how-steps { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.how-step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.how-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-blue);
  justify-self: center;
  flex-shrink: 0;
}
.how-step-desc {
  color: var(--mid-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: var(--brand-accent);
  padding: 80px 0;
  color: var(--white);
}
.cta-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-banner-text h3 { color: var(--white); font-size: 1.75rem; margin-bottom: 8px; font-weight: 700; }
.cta-banner-text p  { color: var(--white); margin: 0; font-size: 1.1rem; }
.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-phone {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  font-size: 1.1rem;
}
.cta-phone a { color: inherit; }
.cta-banner .btn-primary {
  background: var(--brand-blue-dk);
  border-color: var(--brand-blue-dk);
  color: var(--white);
  padding: 16px 36px;
}
.cta-banner .btn-primary:hover {
  background: var(--white);
  color: var(--brand-blue-dk);
  border-color: var(--white);
}

/* ── SECTION (borehole gallery split) ────────────────────── */
.split-section { padding: 70px 0; }
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.split-gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}
.split-text h2 { margin-bottom: 16px; }
.split-text p  { color: var(--mid-gray); margin-bottom: 20px; }

/* ── ABOUT PAGE ────────────────────────────────────────────── */
.about-hero-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-hero-text h1 { margin-bottom: 16px; }
.about-hero-text p  { color: var(--mid-gray); font-size: 1.05rem; }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.mission-card {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 28px 24px;
  border-top: 4px solid var(--brand-blue);
}
.mission-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--brand-blue); }
.mission-card p  { color: var(--mid-gray); font-size: 0.9rem; margin: 0; }

.partner-section { background: var(--light-gray); padding: 80px 0; text-align: center; }
.partner-section h2 { margin-bottom: 16px; }
.partner-section > .container > p {
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--mid-gray);
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0;
}
.about-gallery img {
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer-top-cta {
  background: var(--brand-accent);
  border-top: none;
  padding: 48px 0;
  color: var(--white);
}
.footer-top-cta .container {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
}
.footer-top-cta h3 {
  font-size: 1.75rem;
  color: var(--white);
  font-weight: 700;
}
.footer-top-cta .btn-primary {
  background: var(--brand-blue-dk);
  border-color: var(--brand-blue-dk);
  color: var(--white);
  padding: 16px 36px;
}
.footer-top-cta .btn-primary:hover {
  background: var(--white);
  color: var(--brand-blue-dk);
  border-color: var(--white);
}
.footer-top-cta .footer-cta-phone {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  font-size: 1.1rem;
}
.footer-top-cta .footer-cta-phone a { color: inherit; }

.site-footer {
  background: var(--white);
  padding: 64px 0 0;
  color: var(--mid-gray);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: var(--mid-gray);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--brand-blue); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  align-items: flex-start;
  color: var(--mid-gray);
}
.footer-contact-item iconify-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; color: var(--brand-accent); }
.footer-contact-item a { color: var(--brand-blue); font-weight: 600; }
.footer-contact-item a:hover { text-decoration: underline; }

.footer-hours-table { font-size: 0.95rem; width: 100%; color: var(--mid-gray); }
.footer-hours-table td { padding: 4px 0; }
.footer-hours-table td:last-child { text-align: right; font-weight: 500; }

.footer-logo img { height: 60px; width: auto; }

.footer-bottom {
  background: var(--brand-blue-dk);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  text-decoration: underline;
}
.footer-bottom a:hover { color: var(--brand-accent); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── THANK YOU PAGE ───────────────────────────────────────── */
.thankyou-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.thankyou-page .card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 56px 48px;
  max-width: 540px;
  box-shadow: var(--shadow);
}
.thankyou-page iconify-icon { font-size: 64px; margin-bottom: 20px; color: #28a745; }
.thankyou-page h1 { margin-bottom: 16px; }
.thankyou-page p  { color: var(--mid-gray); margin-bottom: 28px; }

/* ── PRIVACY PAGE ──────────────────────────────────────────── */
.privacy-page { padding: 80px 0; }
.privacy-page h1 { margin-bottom: 32px; }
.privacy-page h2 { font-size: 1.2rem; margin: 32px 0 12px; }
.privacy-page p  { color: var(--mid-gray); margin-bottom: 14px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE STYLES
   ══════════════════════════════════════════════════════════ */

/* ── Tablet (≤1024px) ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid        { grid-template-columns: repeat(3, 1fr); }
  .footer-grid         { grid-template-columns: repeat(2, 1fr); }
  .accordion-grid      { grid-template-columns: 1fr; }
  .accordion-image     { display: none; }
  .mission-grid        { grid-template-columns: repeat(2, 1fr); }
  .intro-layout        { grid-template-columns: 1fr; gap: 40px; }
  .footer-top-cta .container { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile (≤768px) ──────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --header-h: 110px; }
  .section-pad { padding: 56px 0; }

  .header-top .container {
    display: grid;
    grid-template-columns: 70px 1fr 70px;
    align-items: center;
    gap: 0;
  }
  .header-cta   { display: none; }
  .header-logo  { grid-column: 2; display: flex; justify-content: center; align-items: center; margin: 0; padding: 0; }
  .header-logo img { height: 100px; width: auto; max-width: 100%; display: block; }
  .header-phone { display: none; }
  
  .header-whatsapp-mobile {
    display: flex;
    grid-column: 1;
    justify-self: center; /* Center-align icon in its 70px column */
    font-size: 2.5rem; /* Large enough to be roughly 70px with padding/containment */
    color: #25D366; /* WhatsApp Brand Color */
    align-items: center;
  }
  .header-whatsapp-mobile iconify-icon {
    font-size: 44px; /* Explicit size for the icon itself if needed */
  }

  .hamburger {
    display: flex;
    grid-column: 3;
    justify-self: center; /* Center-align hamburger in its 70px column */
    z-index: 1200; /* Ensure it stays above the menu when open */
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 2.5rem; /* Large enough for 70px column visibility */
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--white);
    z-index: 1100;
    flex-direction: column;
    padding: 40px 24px;
    overflow-y: auto;
  }
  .site-nav.open { display: flex; }
  
  .site-nav .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 0;
    height: auto;
    min-height: 100%;
    margin: 0 auto;
  }

  /* Mobile Content Elements */
  .nav-mobile-logo { display: block; margin-bottom: 20px; }
  .nav-mobile-logo img { height: 80px; width: auto; }
  
  .site-nav a {
    padding: 10px 0;
    border-bottom: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-blue-dk);
    text-align: center;
  }
  .site-nav a.active { color: var(--brand-accent); }
  
  .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: 20px;
  }
  .nav-mobile-cta .btn { width: 100%; max-width: 280px; }
  .nav-mobile-call {
    font-weight: 700;
    color: var(--brand-blue-dk);
    text-decoration: none;
    font-size: 1.1rem;
  }

  .nav-mobile-social {
    display: flex;
    gap: 24px;
    margin-top: 40px;
  }
  .nav-mobile-social a {
    font-size: 2rem;
    color: var(--brand-blue-dk);
    padding: 0;
  }
  .nav-mobile-social a:hover { color: var(--brand-accent); }

  /* Body Lock */
  body.nav-open { overflow: hidden; }

  /* Hamburger adjustment when menu open */
  .hamburger { z-index: 1200; position: fixed; right: 24px; top: 24px; }
  .hamburger.open span { background: var(--brand-blue-dk); }

  .header-phone { display: none; }
  .mobile-call-btn { display: flex; }

  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr; }
  .mission-grid      { grid-template-columns: 1fr; }
  .contact-layout    { grid-template-columns: 1fr; }
  .split-layout      { grid-template-columns: 1fr; }
  .split-gallery     { grid-template-columns: repeat(2, 1fr); }
  .about-gallery     { grid-template-columns: repeat(2, 1fr); }

  .form-container  { padding: 24px 20px; }
  .contact-form-inner { padding: 24px 20px; }
  .form-row        { grid-template-columns: 1fr; }

  .cta-banner .container { flex-direction: column; text-align: center; }
  .footer-top-cta .container { grid-template-columns: 1fr; text-align: center; }

  .how-step { grid-template-columns: 1fr; text-align: center; gap: 8px; }
  .how-step-dot { justify-self: center; }
  .how-step-desc { text-align: left; }

  .footer-bottom .container { justify-content: center; text-align: center; }

  .page-hero { padding: 44px 0 36px; }

  .intro-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ── 404 ERROR PAGE ───────────────────────────────────────── */
.error-section {
  padding: 120px 0;
  text-align: center;
  background: var(--light-gray);
  min-height: calc(100vh - var(--header-h) - 400px);
  display: flex;
  align-items: center;
}
.error-content {
  max-width: 600px;
  margin: 0 auto;
}
.error-404 {
  font-size: 8rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.15;
}
.error-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--brand-blue-dk);
  font-family: var(--font-heading);
}
.error-text {
  color: var(--mid-gray);
  margin-bottom: 32px;
  font-size: 1.1rem;
}
