/* ===== ZESTEREX – Professional MEP Drawings ===== */
/* Design system: zesterex_xyz-design.md            */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@400;600;700&display=swap");

/* ─── Design Tokens ─────────────────────────────── */
:root {
  /* Colors */
  --primary: #4c91a7;
  --secondary: #2c2c2c;
  --tertiary: #fefefe;
  --neutral: #ffffff;
  --surface: #ffffff;
  --on-surface: #2c2c2c;
  --muted: #e5e7eb;
  --accent-soft: #dceff4;
  --overlay: #4c91a7cc;
  --text-inverse: #ffffff;
  --error: #d64545;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 90px;

  /* Radii */
  --r-none: 0px;
  --r-sm: 3px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;
}

/* ─── Reset ─────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--on-surface);
  background: var(--neutral);
  overflow-x: hidden;
}

/* ─── Page Shell ─────────────────────────────────── */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* ─── Navbar ─────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--muted);
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar-logo img {
  height: 44px;
  display: block;
}
/* Mobile hamburger button */
.navbar-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 22px;
  color: var(--on-surface);
  padding: 8px;
  margin-left: 8px;
  cursor: pointer;
}

.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.navbar-nav > li {
  position: relative;
}

.navbar-nav > li > a {
  display: block;
  padding: 8px 14px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--on-surface);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s;
}

.navbar-nav > li > a:hover {
  color: var(--primary);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--muted);
  border-top: 2px solid var(--primary);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: 0 6px 24px rgba(44, 44, 44, 0.1);
  list-style: none;
  z-index: 100;
  padding: 6px 0;
}

.navbar-nav > li:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--on-surface);
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}

.dropdown-menu li a:hover {
  background: var(--accent-soft);
  color: var(--primary);
}

/* ─── Buttons ────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--tertiary);
  padding: 15px 23px;
  height: 46px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  border-radius: var(--r-sm);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.18s,
    transform 0.18s;
  white-space: nowrap;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text-inverse);
  padding: 15px 23px;
  height: 46px;
  border-radius: var(--r-sm);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition:
    border-color 0.18s,
    background 0.18s;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ─── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: var(--secondary);
  overflow: hidden;
}

/* The map image fills the right half as a background wash */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}

/* Override: image on right side, overlay only over it */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* The teal overlay goes over the whole hero, but we want the left text clean */
.hero::after {
  background: linear-gradient(
    100deg,
    rgba(76, 145, 167, 0.92) 52%,
    rgba(76, 145, 167, 0.55) 100%
  );
}

.hero-text > p:first-child {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.hero-text h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 65px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--text-inverse);
  margin-bottom: var(--space-md);
}

.hero-text h1 span {
  color: var(--accent-soft);
}

.hero-text p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-md);
}

.hero-phone {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-md);
}
.hero-phone a {
  color: var(--tertiary);
  font-weight: 700;
  text-decoration: none;
}

.hero-btns {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
}

.hero-map-container {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-map-container img {
  width: 100%;
  display: block;
}

/* ─── Section Header ─────────────────────────────── */
.section-header {
  text-align: center;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
}

.section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3vw, 39px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--on-surface);
  margin-bottom: 12px;
}

.section-header p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 24px;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ─── Cards Section ──────────────────────────────── */
.cards-section {
  background: #f9fafb;
  padding: var(--space-md) var(--space-lg) var(--space-xl);
}

.cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.card {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border: 1px solid var(--muted);
  transition:
    box-shadow 0.22s,
    transform 0.22s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(76, 145, 167, 0.12);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 1.5rem;
}

.card h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--on-surface);
  margin-bottom: var(--space-xs);
}

.card p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #6b7280;
  margin-bottom: var(--space-sm);
}

.card .btn-learn {
  display: inline-flex;
  align-items: center;
  padding: 15px 23px;
  height: 46px;
  background: var(--primary);
  color: var(--tertiary);
  border-radius: var(--r-sm);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.18s;
}
.card .btn-learn:hover {
  opacity: 0.88;
}

/* ─── About Split ────────────────────────────────── */
.about-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-split img {
  width: 100%;
  border-radius: var(--r-md);
}

.about-split h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--on-surface);
}

.about-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 30px);
  font-weight: 400;
  color: var(--on-surface);
  margin-bottom: var(--space-sm);
}

.about-text p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  margin-bottom: var(--space-sm);
}

/* ─── Full Width Image ───────────────────────────── */
.full-img-section {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}
.full-img-section img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Services Grid ──────────────────────────────── */
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--muted);
  transition:
    box-shadow 0.22s,
    transform 0.22s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(76, 145, 167, 0.16);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 44, 44, 0.88) 0%,
    transparent 55%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
  transition: background 0.25s;
}

.service-card:hover .overlay {
  background: var(--overlay);
  align-items: center;
  justify-content: center;
}

.service-card .overlay span {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-inverse);
  letter-spacing: 0.02em;
}

/* ─── Collaboration Section ──────────────────────── */
.collab-section {
  background: var(--primary);
  padding: var(--space-xl) var(--space-lg);
}

.collab-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.collab-inner h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3vw, 39px);
  font-weight: 400;
  color: var(--text-inverse);
  margin-bottom: var(--space-sm);
}

.collab-inner p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 780px;
  margin: 0 auto;
}

.collab-tools {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.tool-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text-inverse);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--r-full);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

/* ─── How-to-Work Steps ──────────────────────────── */
.work-steps {
  background: #f9fafb;
  padding: var(--space-xl) var(--space-lg);
}

.work-steps-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.steps-img {
  text-align: center;
}
.steps-img img {
  max-width: 100%;
  border-radius: var(--r-md);
}

/* ─── Prices Section ─────────────────────────────── */
.prices-section {
  padding: var(--space-xl) var(--space-lg);
  background: var(--surface);
}

.prices-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.price-card {
  border: 1px solid var(--muted);
  border-radius: var(--r-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition:
    box-shadow 0.22s,
    border-color 0.22s;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
}

.price-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(76, 145, 167, 0.12);
}

.price-card h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: var(--space-xs);
}

.price-card .price {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.price-card .price span {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
}

.price-card ul {
  list-style: none;
  margin: var(--space-sm) 0;
  text-align: left;
}

.price-card ul li {
  padding: 6px 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #6b7280;
  border-bottom: 1px solid var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-card ul li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card .btn-price {
  display: inline-flex;
  align-items: center;
  padding: 15px 23px;
  height: 46px;
  background: var(--secondary);
  color: var(--neutral);
  border-radius: var(--r-sm);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  margin-top: var(--space-sm);
  transition: background 0.18s;
}
.price-card .btn-price:hover {
  background: var(--primary);
}

/* ─── Contact Info Strip ─────────────────────────── */
.contact-strip {
  background: var(--secondary);
  padding: var(--space-lg);
}

.contact-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact-item .icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item .icon i {
  color: var(--neutral);
}

.contact-item .info {
  flex: 1;
}
.contact-item .info .label {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-soft);
  text-transform: uppercase;
}
.contact-item .info .value {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: var(--text-inverse);
  margin-top: 2px;
}
.contact-item .info a {
  color: var(--text-inverse);
  text-decoration: none;
}

/* ─── Contact Section (Contact Page) ────────────── */
.contact-section {
  padding: var(--space-xl) var(--space-lg);
  background: #f9fafb;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid var(--muted);
  border-radius: var(--r-sm);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--on-surface);
  background: var(--surface);
  outline: none;
  transition: border-color 0.18s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

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

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-info-list li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact-info-list .ico {
  width: 40px;
  height: 40px;
  background: var(--accent-soft);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-list .ico i {
  color: #6b7280;
}

.btn-primary i {
  color: var(--neutral);
  margin-right: 5px;
}

.contact-info-list .ci-text .ci-label {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary);
  text-transform: uppercase;
}

.contact-info-list .ci-text .ci-val {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: var(--on-surface);
  margin-top: 2px;
}

/* ─── Footer ─────────────────────────────────────── */
footer {
  background: var(--secondary);
  padding: var(--space-xl) var(--space-lg) var(--space-md);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 40px;
  filter: brightness(10);
  margin-bottom: var(--space-sm);
  display: block;
}

.footer-brand p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-soft);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s;
}
.footer-col ul li a:hover {
  color: var(--text-inverse);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── Breadcrumb ─────────────────────────────────── */
.breadcrumb {
  background: #f9fafb;
  padding: 12px var(--space-lg);
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #6b7280;
  border-bottom: 1px solid var(--muted);
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* ─── Inner Page Hero ────────────────────────────── */
.inner-hero {
  background: var(--primary);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.inner-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3vw, 50px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-inverse);
  margin-bottom: 12px;
}

.inner-hero p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Service Content ────────────────────────────── */
.service-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.service-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 30px);
  font-weight: 400;
  color: var(--on-surface);
  margin: var(--space-lg) 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--muted);
}

.service-content h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin: var(--space-sm) 0 8px;
}

.service-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  margin-bottom: 12px;
}

.service-content ul {
  margin: 8px 0 var(--space-sm) var(--space-sm);
}

.service-content ul li {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #6b7280;
  margin-bottom: 6px;
}

/* ─── Team ───────────────────────────────────────── */
.team-section {
  padding: var(--space-xl) var(--space-lg);
}

.team-intro {
  max-width: 1100px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.team-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-lg);
}

.team-grid.single {
  grid-template-columns: 1fr;
  max-width: 320px;
}
.team-grid.double {
  grid-template-columns: repeat(2, 1fr);
  max-width: 680px;
}
.team-grid.triple {
  grid-template-columns: repeat(3, 1fr);
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  max-width: 240px;
  border-radius: var(--r-md);
  border: 1px solid var(--muted);
  margin-bottom: var(--space-sm);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.team-member h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--on-surface);
}

.team-member p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: var(--primary);
  margin-top: 4px;
}

/* ─── Sample Plans / Tabs ────────────────────────── */
.sample-tabs {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px var(--space-md);
  border: 1px solid var(--muted);
  border-radius: var(--r-sm);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  color: var(--on-surface);
  transition:
    background 0.18s,
    border-color 0.18s,
    color 0.18s;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-inverse);
}

/* ─── About Page ─────────────────────────────────── */
.about-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.about-page-text {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  margin-bottom: var(--space-sm);
}

.vision-mission-img img {
  width: 100%;
  border-radius: var(--r-md);
  margin-top: var(--space-sm);
}

/* ─── Plans Page ─────────────────────────────────── */
.plans-section {
  padding: var(--space-xl) var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}

.plan-block {
  margin-bottom: var(--space-xl);
}

.plan-block h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 30px);
  font-weight: 400;
  color: var(--on-surface);
  margin-bottom: var(--space-sm);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.plan-block img {
  width: 100%;
  border-radius: var(--r-md);
  border: 1px solid var(--muted);
}

/* ─── Flex Utility ───────────────────────────────── */
.flex-container {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.flex-item {
  flex: 1;
  min-width: 300px;
}

.flex-item img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: var(--r-md);
}

/* ─── Chips ──────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  background: var(--accent-soft);
  color: var(--primary);
  border-radius: var(--r-full);
  padding: 8px 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

/* ─── Headings used directly in HTML ────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .navbar {
    padding: 0 var(--space-sm);
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--surface);
    display: none;
    flex-direction: column;
    padding: 12px 16px 20px;
    gap: 6px;
    border-bottom: 1px solid var(--muted);
  }
  .navbar-nav.open {
    display: flex;
  }
  .navbar-nav > li > a {
    padding: 12px 8px;
    width: 100%;
    text-align: center;
  }
  .navbar-nav > li > .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    border-radius: var(--r-md);
    margin-top: 6px;
  }
  .navbar-nav > li.open > .dropdown-menu {
    display: block;
  }
  .hero-content {
    grid-template-columns: 1fr;
    padding: var(--space-lg) var(--space-sm);
  }
  .hero-map-container {
    display: none;
  }
  .about-split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .contact-strip-inner {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 var(--space-sm) var(--space-lg);
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .section-header {
    padding: var(--space-lg) var(--space-sm) var(--space-md);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .team-grid.triple {
    grid-template-columns: 1fr;
  }
  .team-grid.double {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: var(--space-lg) var(--space-sm);
  }
}
