/* ===============================
   GOOGLE FONTS
=================================*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ===============================
   CSS VARIABLES
=================================*/
:root {
  --teal:       #2CA4A4;
  --teal-dark:  #1f7e7e;
  --teal-light: #e8f7f7;
  --navy:       #0f2035;
  --navy-mid:   #1a3350;
  --text:       #2d2d2d;
  --muted:      #5a6a7a;
  --bg:         #f9fafb;
  --white:      #ffffff;
  --border:     #e2e8f0;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.13);
  --radius:     12px;
  --radius-pill:50px;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', sans-serif;
}

/* ===============================
   RESET & BASE
=================================*/
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===============================
   UTILITY
=================================*/
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 5px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 18px;
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44,164,164,0.30);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}

/* ===============================
   HEADER / NAV
=================================*/
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--teal); }

nav {
  margin-left: auto;
}

nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}

nav ul li a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--teal);
  background: var(--teal-light);
}

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-radius: var(--radius-pill) !important;
  padding: 9px 22px !important;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
}

/* mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-toggle:hover { background: var(--teal-light); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
/* Animated X when open */
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===============================
   PAGE HERO (inner pages)
=================================*/
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a4a4a 100%);
  color: var(--white);
  padding: 90px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(44,164,164,0.08);
  top: -150px; right: -100px;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(44,164,164,0.06);
  bottom: -80px; left: -60px;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.page-hero .breadcrumb a { color: var(--teal); }

/* ===============================
   HOME — HERO BANNER
=================================*/
.hero-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #174040 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

/* decorative circles */
.hero-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,164,164,0.12) 0%, transparent 70%);
  top: -100px; right: -150px;
  pointer-events: none;
}
.hero-banner::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,164,164,0.09) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(44,164,164,0.18);
  border: 1px solid rgba(44,164,164,0.35);
  color: #7de2e2;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-size: clamp(38px, 5.5vw, 62px);
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-content h1 em {
  color: var(--teal);
  font-style: normal;
}

.hero-content p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-tagline {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 28px);
  color: var(--teal);
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.10);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}
.stat-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-top: 4px;
  display: block;
}

/* ===============================
   HOME — ABOUT STRIP
=================================*/
.home-about {
  padding: 100px 24px;
}

.about-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--navy);
  margin-bottom: 20px;
}
.about-text p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 16px;
}
.about-text .btn { margin-top: 10px; }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--teal);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

/* ===============================
   HOME — SERVICES PREVIEW
=================================*/
.home-services {
  background: var(--bg);
  padding: 100px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--navy);
  margin-bottom: 14px;
}
.section-header p {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

.services-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 46px; height: 46px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card-body h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===============================
   HOME — MISSION
=================================*/
.mission-section {
  padding: 100px 24px;
}

.mission-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.mission-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--navy);
  margin-bottom: 20px;
}
.mission-text p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 28px;
}

.mission-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mission-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg);
  padding: 18px 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
}
.mission-card-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.mission-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 3px;
}
.mission-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.mission-image-wrap {
  position: relative;
}
.mission-image-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.mission-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--teal);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  width: 190px;
  text-align: center;
  box-shadow: var(--shadow-md);
  font-family: var(--font-head);
  line-height: 1.4;
}

/* ===============================
   ABOUT PAGE
=================================*/
.about-story {
  padding: 100px 24px;
}
.about-story-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-story-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--navy);
  margin-bottom: 18px;
}
.about-story-text p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-story-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Values */
.values-section {
  background: var(--bg);
  padding: 100px 24px;
}
.values-grid {
  max-width: 1160px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.value-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Team */
.team-section {
  padding: 100px 24px;
}
.team-grid {
  max-width: 1160px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.team-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}
.team-card-body { padding: 24px 20px; }
.team-card-body h3 { font-size: 19px; color: var(--navy); margin-bottom: 5px; }
.team-card-body span {
  display: block;
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.team-card-body p { color: var(--muted); font-size: 14px; }

/* Why Us */
.why-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 24px;
  text-align: center;
}
.why-section .section-tag { background: rgba(44,164,164,0.25); color: #7de2e2; }
.why-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--white);
  margin-bottom: 50px;
}
.why-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  backdrop-filter: blur(4px);
}
.why-card-icon {
  font-size: 26px;
  flex-shrink: 0;
}
.why-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 6px;
}
.why-card p { color: rgba(255,255,255,0.60); font-size: 14px; }

/* ===============================
   SERVICES PAGE
=================================*/
.services-full {
  padding: 100px 24px;
}
.services-full-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.service-detail-content .service-icon {
  width: 54px; height: 54px;
  font-size: 26px;
}
.service-detail-content h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--navy);
  margin-bottom: 16px;
}
.service-detail-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.feature-list {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.feature-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Process Section */
.process-section {
  background: var(--bg);
  padding: 100px 24px;
}
.process-steps {
  max-width: 900px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 0 0 40px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 54px; height: 54px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-head);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--bg);
}
.step-body h3 { font-size: 20px; color: var(--navy); margin-bottom: 8px; margin-top: 12px; }
.step-body p { color: var(--muted); font-size: 15px; }

/* ===============================
   CONTACT PAGE
=================================*/
.contact-section {
  padding: 100px 24px;
}
.contact-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--navy);
  margin-bottom: 14px;
}
.contact-info > p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 36px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg);
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44,164,164,0.08);
}
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.contact-card a, .contact-card p {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
}
.contact-card a:hover { color: var(--teal); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-wrap > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44,164,164,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit { width: 100%; padding: 14px; font-size: 16px; border: none; }

/* Map */
.map-section {
  background: var(--bg);
  padding: 80px 24px;
}
.map-section .container { max-width: 1160px; }
.map-section h2 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 6px;
}
.map-section > .container > p {
  color: var(--muted);
  margin-bottom: 32px;
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-frame iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
}

/* ===============================
   CTA BANNER
=================================*/
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  max-width: 540px;
  margin: 0 auto 32px;
}

/* ===============================
   FOOTER
=================================*/
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-brand .nav-logo {
  color: var(--white);
  font-size: 22px;
  display: block;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
}
.footer-social:hover { background: var(--teal); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--teal); }

.footer-bottom {
  max-width: 1160px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.40); }
.footer-bottom a:hover { color: var(--teal); }


/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 900px) {
  .about-inner,
  .mission-inner,
  .about-story-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .service-detail { grid-template-columns: 1fr; gap: 30px; }
  .service-detail.reverse { direction: ltr; }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid,
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }

  .mission-badge { position: static; margin-top: 16px; width: 100%; }

  .about-img-wrap img,
  .about-story-img img,
  .mission-image-wrap img { height: 280px; }
}


@media (max-width: 768px) {
  /* Show hamburger button */
  .nav-toggle { display: flex; }

  /* Reset desktop margin-left so nav doesn't push oddly */
  nav { margin-left: 0; }

  /* Hide desktop nav links by default */
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--teal);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    padding: 12px 16px 20px;
    gap: 4px;
    z-index: 9999;
    margin-left: 0;
  }

  /* Show nav when open class applied */
  nav ul.open { display: flex; }

  /* All mobile nav links: clearly visible dark text on white */
  nav ul li a {
    color: var(--navy) !important;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 18px;
    border-radius: 8px;
    display: block;
    width: 100%;
    background: transparent !important;
    transition: background 0.2s, color 0.2s;
  }
  nav ul li a:hover,
  nav ul li a.active {
    background: var(--teal-light) !important;
    color: var(--teal-dark) !important;
  }

  /* Contact Us pill — teal bg with white text */
  nav ul li a.nav-cta {
    background: var(--teal) !important;
    color: var(--white) !important;
    text-align: center;
    border-radius: var(--radius-pill) !important;
    margin-top: 6px;
  }
  nav ul li a.nav-cta:hover {
    background: var(--teal-dark) !important;
    color: var(--white) !important;
  }
}

@media (max-width: 600px) {
  .values-grid,
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .contact-form-wrap { padding: 28px 20px; }
}