/* ═══════════════════════════════════════════════════════════════════════
   Ocean Borewells — Design System
   A modern, minimal, premium CSS design system.
   Mobile-first. No frameworks. Pure CSS custom properties.
   ═══════════════════════════════════════════════════════════════════════ */

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

/* ─── Design Tokens ──────────────────────────────────────────────────── */
:root {
  /* Colors */
  --color-navy:        #0B1D3A;
  --color-navy-light:  #142A4F;
  --color-navy-mid:    #1C3660;
  --color-teal:        #1A7A6D;
  --color-teal-hover:  #15655A;
  --color-teal-light:  #E6F5F3;
  --color-offwhite:    #F7F8FA;
  --color-white:       #FFFFFF;
  --color-charcoal:    #1A1A2E;
  --color-text:        #2D3748;
  --color-text-light:  #64748B;
  --color-text-muted:  #94A3B8;
  --color-border:      #E2E8F0;
  --color-border-dark: #CBD5E1;
  --color-success:     #16A34A;
  --color-error:       #DC2626;
  --color-overlay:     rgba(11, 29, 58, 0.6);

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.875rem;   /* 14px */
  --text-base:  1rem;       /* 16px */
  --text-lg:    1.125rem;   /* 18px */
  --text-xl:    1.25rem;    /* 20px */
  --text-2xl:   1.5rem;     /* 24px */
  --text-3xl:   1.875rem;   /* 30px */
  --text-4xl:   2.25rem;    /* 36px */
  --text-5xl:   3rem;       /* 48px */
  --text-6xl:   3.75rem;    /* 60px */
  --leading-tight:  1.2;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Spacing */
  --space-1:  0.25rem;   /* 4px */
  --space-2:  0.5rem;    /* 8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;

  /* Borders */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 24px rgba(0,0,0,0.1);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.12);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-Index */
  --z-dropdown:  100;
  --z-sticky:    200;
  --z-overlay:   300;
  --z-modal:     400;
  --z-mobile-cta: 500;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--color-teal-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-charcoal);
}


/* ─── Typography ─────────────────────────────────────────────────────── */
.h1, h1 { font-size: var(--text-3xl); margin-bottom: var(--space-6); }
.h2, h2 { font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.h3, h3 { font-size: var(--text-xl);  margin-bottom: var(--space-3); }
.h4, h4 { font-size: var(--text-lg);  margin-bottom: var(--space-2); }

@media (min-width: 768px) {
  .h1, h1 { font-size: var(--text-4xl); }
  .h2, h2 { font-size: var(--text-3xl); }
  .h3, h3 { font-size: var(--text-2xl); }
}

@media (min-width: 1024px) {
  .h1, h1 { font-size: var(--text-5xl); }
  .h2, h2 { font-size: var(--text-4xl); }
}

.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-muted { color: var(--color-text-light); }
.text-center { text-align: center; }
.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }


/* ─── Layout ─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }
}

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

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--color-white);
}

.section--navy .text-muted {
  color: var(--color-text-muted);
}

.section--offwhite {
  background-color: var(--color-offwhite);
}

.section--teal-light {
  background-color: var(--color-teal-light);
}

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }


/* ─── Section Header ────────────────────────────────────────────────── */
.section-header {
  max-width: 640px;
  margin-bottom: var(--space-12);
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-teal);
  margin-bottom: var(--space-3);
}

.section--navy .section-label {
  color: var(--color-teal-light);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
}

.section--navy .section-header p {
  color: rgba(255,255,255,0.7);
}


/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background-color: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

.btn--primary:hover {
  background-color: var(--color-teal-hover);
  border-color: var(--color-teal-hover);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn--secondary:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn--white:hover {
  background-color: var(--color-offwhite);
  border-color: var(--color-offwhite);
  color: var(--color-navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.3);
}

.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--color-white);
}

.btn--whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  border-color: #25D366;
}

.btn--whatsapp:hover {
  background-color: #20BD5A;
  border-color: #20BD5A;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}


/* ─── Header ─────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background-color: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-navy);
  flex-shrink: 0;
}

.logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.footer-brand .logo-img {
  background-color: var(--color-white);
  border-radius: var(--radius-full);
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-text {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-text span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-1);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--color-teal);
  background-color: var(--color-teal-light);
}

/* Header Actions & CTA */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

@media (min-width: 1024px) {
  .header-actions {
    gap: var(--space-4);
  }
}

.btn-header-quote {
  display: none;
}

@media (min-width: 1024px) {
  .btn-header-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--color-teal) 0%, #146358 100%);
    color: #ffffff !important;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 700;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(26, 122, 109, 0.25);
    transition: all var(--transition-base);
    white-space: nowrap;
  }

  .btn-header-quote:hover {
    background: linear-gradient(135deg, var(--color-teal-hover) 0%, #0e4b42 100%);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 122, 109, 0.35);
  }

  .btn-header-quote svg {
    transition: transform var(--transition-fast);
  }

  .btn-header-quote:hover svg {
    transform: translateX(2px);
  }
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  transition: all var(--transition-fast);
}

.nav-toggle:hover {
  background-color: var(--color-offwhite);
  border-color: var(--color-border-dark);
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle-icon {
  position: relative;
  width: 20px;
  height: 14px;
}

.nav-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle-icon span:nth-child(1) { top: 0; }
.nav-toggle-icon span:nth-child(2) { top: 6px; }
.nav-toggle-icon span:nth-child(3) { top: 12px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

/* Mobile Nav Drawer */
.nav-mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 72px);
  height: calc(100dvh - 72px);
  background-color: var(--color-white);
  padding: var(--space-4) var(--space-5) var(--space-8);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.nav-mobile.is-open {
  transform: translateX(0);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
}

.nav-mobile-links a {
  display: block;
  padding: 13px 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-mobile-links a:hover,
.nav-mobile-links a.active {
  color: var(--color-teal);
  transform: translateX(4px);
}

/* Mobile Drawer Footer CTA */
.nav-mobile-footer {
  margin-top: var(--space-6);
  padding-top: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.btn-mobile-quote {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: 14px var(--space-5);
  background: linear-gradient(135deg, var(--color-teal) 0%, #135E54 100%);
  color: #ffffff !important;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(26, 122, 109, 0.35);
  transition: all var(--transition-base);
}

.btn-mobile-quote:hover,
.btn-mobile-quote:active {
  background: linear-gradient(135deg, var(--color-teal-hover) 0%, #0d463e 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 122, 109, 0.45);
  color: #ffffff !important;
}

.btn-mobile-quote svg {
  transition: transform var(--transition-fast);
}

.btn-mobile-quote:hover svg {
  transform: translateX(3px);
}

.nav-mobile-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-offwhite);
  padding: 11px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.nav-mobile-call-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
}

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

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}


/* ─── Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(72px + var(--space-12));
  padding-bottom: var(--space-12);
  overflow: hidden;
}

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

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 29, 58, 0.92) 0%,
    rgba(11, 29, 58, 0.75) 50%,
    rgba(11, 29, 58, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--color-teal);
  fill: var(--color-teal);
}

.hero h1 {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: var(--text-5xl);
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: var(--text-6xl);
  }
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 560px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: var(--text-xl);
  }
}

.hero .btn-group {
  margin-bottom: var(--space-8);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}


/* ─── Service Cards ──────────────────────────────────────────────────── */
.service-card {
  padding: var(--space-8);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.service-card:hover {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-teal-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
  color: var(--color-teal);
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.service-card p {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-teal);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card-link svg {
  transform: translateX(3px);
}


/* ─── Process / How It Works ─────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  counter-reset: process-step;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  position: relative;
  counter-increment: process-step;
}

.process-step-number {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-teal);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--space-3);
}

.section--navy .process-step-number {
  color: var(--color-white);
  opacity: 0.15;
}

.process-step h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
}

.section--navy .process-step p {
  color: rgba(255,255,255,0.6);
}

/* Connecting line for desktop */
@media (min-width: 1024px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    right: calc(-1 * var(--space-4));
    width: calc(var(--space-8));
    height: 2px;
    background-color: var(--color-border);
  }

  .section--navy .process-step:not(:last-child)::after {
    background-color: rgba(255,255,255,0.1);
  }
}


/* ─── Trust / Why Us ─────────────────────────────────────────────────── */
.trust-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6);
}

.trust-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-teal-light);
  border-radius: var(--radius-md);
  color: var(--color-teal);
}

.trust-card-icon svg {
  width: 22px;
  height: 22px;
}

.trust-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.trust-card p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
}


/* ─── FAQ Accordion ──────────────────────────────────────────────────── */
.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-5) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-charcoal);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

@media (min-width: 768px) {
  .faq-question {
    font-size: var(--text-lg);
  }
}

.faq-question:hover {
  color: var(--color-teal);
}

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: var(--space-5);
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
}


/* ─── Project Cards ──────────────────────────────────────────────────── */
.project-card {
  background-color: var(--color-white);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 
    0 1px 3px rgba(11, 29, 58, 0.04),
    0 6px 16px -2px rgba(11, 29, 58, 0.06),
    0 12px 28px -4px rgba(11, 29, 58, 0.04);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 122, 109, 0.3);
  box-shadow: 
    0 4px 6px -1px rgba(11, 29, 58, 0.05),
    0 12px 24px -2px rgba(11, 29, 58, 0.08),
    0 24px 48px -4px rgba(11, 29, 58, 0.1);
}

.project-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background-color: var(--color-offwhite);
  display: block;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-card-image {
  transform: scale(1.03);
}

.project-card-body {
  padding: var(--space-5);
}

.project-card-tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-teal);
  background-color: var(--color-teal-light);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.project-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.project-card p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.project-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.project-card-meta svg {
  width: 14px;
  height: 14px;
}

.project-card-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}


/* ─── Contact / CTA Section ──────────────────────────────────────────── */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-lg);
  max-width: 560px;
  margin: 0 auto var(--space-8);
  line-height: var(--leading-relaxed);
}

.cta-section .btn-group {
  justify-content: center;
}


/* ─── Contact Form ───────────────────────────────────────────────────── */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(26, 122, 109, 0.1);
}

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

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  padding-right: var(--space-10);
}

.form-error {
  font-size: var(--text-sm);
  color: var(--color-error);
  margin-top: var(--space-1);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-status {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-top: var(--space-4);
  display: none;
}

.form-status--success {
  display: block;
  background-color: #F0FDF4;
  color: var(--color-success);
  border: 1px solid #BBF7D0;
}

.form-status--error {
  display: block;
  background-color: #FEF2F2;
  color: var(--color-error);
  border: 1px solid #FECACA;
}


/* ─── Contact Info ───────────────────────────────────────────────────── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) 0;
}

.contact-info-item:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-teal-light);
  border-radius: var(--radius-md);
  color: var(--color-teal);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contact-info-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-charcoal);
}

.contact-info-value a {
  color: var(--color-charcoal);
}

.contact-info-value a:hover {
  color: var(--color-teal);
}

/* ─── Contact Page Social Section ────────────────────────────────────── */
.contact-social-section {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.contact-social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

@media (min-width: 480px) {
  .contact-social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-social-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px var(--space-4);
  background-color: var(--color-offwhite);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.contact-social-card:hover {
  background-color: var(--color-white);
  border-color: var(--color-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-social-card .social-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.social-icon-box--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon-box--facebook {
  background-color: #1877F2;
}

.social-icon-box--google {
  background-color: #4285F4;
}


/* ─── Footer ─────────────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--color-navy);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo-text {
  color: var(--color-white);
}

.footer-brand .logo-text span {
  color: rgba(255,255,255,0.5);
}

.footer-brand p {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  max-width: 320px;
}

/* ─── Footer Social Links ────────────────────────────────────────────── */
.footer-social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-base);
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-2px);
  color: var(--color-white);
}

.social-link--instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(214, 36, 159, 0.4);
}

.social-link--facebook:hover {
  background-color: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.4);
}

.social-link--whatsapp:hover {
  background-color: #25D366;
  border-color: #25D366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.social-link--google:hover {
  background-color: #4285F4;
  border-color: #4285F4;
  box-shadow: 0 4px 14px rgba(66, 133, 244, 0.4);
}

.footer-heading {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.footer-links a {
  display: block;
  padding: var(--space-1) 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-sm);
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
}

.footer-legal a:hover {
  color: var(--color-white);
}


/* ─── Mobile CTA Bar ────────────────────────────────────────────────── */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-mobile-cta);
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-4);
  display: flex;
  gap: var(--space-3);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  transform: translateY(0);
  transition: transform var(--transition-base);
}

.mobile-cta.is-hidden {
  transform: translateY(100%);
}

@media (min-width: 1024px) {
  .mobile-cta {
    display: none;
  }
}

.mobile-cta .btn {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
}

/* Add bottom padding to body to account for mobile CTA */
@media (max-width: 1023px) {
  body {
    padding-bottom: 68px;
  }
}


/* ─── Breadcrumbs ────────────────────────────────────────────────────── */
.breadcrumb {
  padding: var(--space-4) 0;
  margin-top: 72px;
  background-color: var(--color-offwhite);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.breadcrumb-list a {
  color: var(--color-text-light);
}

.breadcrumb-list a:hover {
  color: var(--color-teal);
}

.breadcrumb-separator {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.breadcrumb-current {
  color: var(--color-charcoal);
  font-weight: 500;
}


/* ─── Page Hero (Inner Pages) ────────────────────────────────────────── */
.page-hero {
  padding-top: calc(72px + var(--space-16));
  padding-bottom: var(--space-12);
  background-color: var(--color-navy);
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: calc(72px + var(--space-20));
    padding-bottom: var(--space-16);
  }
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-lg);
  max-width: 640px;
  line-height: var(--leading-relaxed);
}


/* ─── Blog Cards ─────────────────────────────────────────────────────── */
.blog-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.blog-card-body {
  padding: var(--space-6);
}

.blog-card-date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}

.blog-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.blog-card h3 a {
  color: var(--color-charcoal);
}

.blog-card h3 a:hover {
  color: var(--color-teal);
}

.blog-card p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
}


/* ─── Location Page ──────────────────────────────────────────────────── */
.location-areas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.location-tag {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  background-color: var(--color-offwhite);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.location-tag:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  background-color: var(--color-teal-light);
}


/* ─── Gallery Grid ───────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}


/* ─── Content Prose ──────────────────────────────────────────────────── */
.prose {
  max-width: var(--container-narrow);
}

.prose p {
  margin-bottom: var(--space-5);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
}

.prose h2 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.prose h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.prose ul,
.prose ol {
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
}

.prose ul {
  list-style-type: disc;
}

.prose ol {
  list-style-type: decimal;
}

.prose li {
  margin-bottom: var(--space-2);
  line-height: var(--leading-relaxed);
}

.prose strong {
  font-weight: 600;
  color: var(--color-charcoal);
}

.prose a {
  color: var(--color-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ─── Two-Column Layout ─────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: start;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.two-col--sticky-right {
  align-items: start;
}

@media (min-width: 768px) {
  .two-col--sticky-right > *:last-child {
    position: sticky;
    top: calc(72px + var(--space-6));
  }
}


/* ─── Scroll Animations ─────────────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll[data-delay="1"] { transition-delay: 100ms; }
.animate-on-scroll[data-delay="2"] { transition-delay: 200ms; }
.animate-on-scroll[data-delay="3"] { transition-delay: 300ms; }
.animate-on-scroll[data-delay="4"] { transition-delay: 400ms; }


/* ─── Utility Classes ────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.mt-0  { margin-top: 0; }
.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-0  { margin-bottom: 0; }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.pt-0  { padding-top: 0; }
.pb-0  { padding-bottom: 0; }

.hidden { display: none !important; }

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}
