:root {
  --navy-deep: #0f182b;
  --navy-dark: #053138;
  --teal: #094349;
  --navy-mid: #112146;
  --black: #000000;
  --white: #ffffff;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-soft: rgba(255, 255, 255, 0.75);
  --border: rgba(201, 169, 110, 0.18);
  --border-strong: rgba(201, 169, 110, 0.35);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 46px;
  height: 76px;
  background: rgba(15, 24, 43, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-cta {
  background: var(--teal);
  border: 1px solid var(--border-strong);
  color: var(--gold-light) !important;
  padding: 9px 22px;
  border-radius: 3px;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
}
.nav-cta:hover {
  background: var(--navy-dark) !important;
}

/* ── SHARED LAYOUT ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 96px 0;
}
.section-sm {
  padding: 64px 0;
}

/* ── TYPOGRAPHY ── */
.label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.display-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--white);
}
.display-heading em {
  font-style: italic;
  color: var(--gold);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
}
.section-heading em {
  font-style: italic;
  color: var(--gold);
}
.body-text {
  color: var(--text-soft);
  line-height: 1.75;
  font-weight: 300;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 30px 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--teal);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold-light);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--gold);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--gold-light);
}
.btn-outline:hover {
  background: rgba(201, 169, 110, 0.06);
  border-color: var(--gold);
}

/* ── CARD ── */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 32px;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.card:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.05);
}

/* ── GRIDS ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── DECORATIVE ── */
.section-rule {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.section-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── PAGE BACKGROUND (inner pages) ── */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 80% 10%, rgba(9, 67, 73, 0.28) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 10% 85%, rgba(17, 33, 70, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(5, 49, 56, 0.12) 0%, transparent 60%), var(--navy-deep);
}
.page-bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.022;
  background-image: linear-gradient(rgba(201, 169, 110, 0.9) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 169, 110, 0.9) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── SECTION TINTS (inner pages) ── */
.section-tint-a {
  background: rgba(9, 67, 73, 0.07);
}
.section-tint-b {
  background: rgba(17, 33, 70, 0.08);
}

/* ── PAGE PROGRESS BAR ── */
.page-progress {
  width: 100%;
  height: 2px;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.page-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 60%, var(--gold) 80%, transparent 100%);
  opacity: 0.55;
  animation: pageBarShimmer 3s ease-in-out infinite;
}
@keyframes pageBarShimmer {
  0% {
    transform: translateX(-100%);
    opacity: 0.3;
  }
  40% {
    opacity: 0.65;
  }
  100% {
    transform: translateX(100%);
    opacity: 0.3;
  }
}

/* ── INNER PAGE: section-sm nav offset ── */
body > .section-sm:first-of-type {
  padding-top: calc(76px + 48px);
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100svh - 76px);
  margin-top: 76px;
  min-height: 560px;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.slide-bg-1::before {
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(9, 67, 73, 0.45) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 15% 80%, rgba(5, 49, 56, 0.35) 0%, transparent 50%);
}
.slide-bg-2::before {
  background: radial-gradient(ellipse 70% 70% at 20% 40%, rgba(17, 33, 70, 0.55) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 85% 70%, rgba(9, 67, 73, 0.3) 0%, transparent 55%);
}
.slide-bg-3::before {
  background: radial-gradient(ellipse 55% 80% at 50% 25%, rgba(5, 49, 56, 0.5) 0%, transparent 65%), radial-gradient(ellipse 60% 50% at 10% 90%, rgba(17, 33, 70, 0.35) 0%, transparent 50%);
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(rgba(201, 169, 110, 0.8) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 169, 110, 0.8) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-slide > .container {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 80%;
  margin: 0 auto;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  align-self: flex-start;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.65);
  }
}

.hero-content .display-heading {
  font-size: clamp(32px, 4.5vw, 62px);
  line-height: 1.1;
  margin-bottom: 0;
  text-align: center;
}
.hero-content .divider {
  margin: 40px 0;
  flex-shrink: 0;
}
.hero-content .body-text {
  font-size: clamp(14px, 1.2vw, 16px);
  max-width: 640px;
  margin-bottom: 0;
}
.hero-btns {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ── SLIDER CONTROLS ── */
.slider-controls {
  position: absolute;
  bottom: 32px;
  left: 10%;
  right: 10%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.3);
  border: 1px solid rgba(201, 169, 110, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--gold);
  border-color: var(--gold);
}
.slider-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold-light);
  font-size: 13px;
  background: rgba(15, 24, 43, 0.55);
  backdrop-filter: blur(8px);
  transition: all 0.2s;
  user-select: none;
  flex-shrink: 0;
}
.slider-arrow:hover {
  background: rgba(9, 67, 73, 0.75);
  border-color: var(--gold);
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  width: 0%;
  transition: width linear;
  z-index: 10;
  opacity: 0.65;
}

/* ── ABOUT PAGE ── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.mission-card {
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(9, 67, 73, 0.25) 0%, rgba(5, 49, 56, 0.15) 100%);
  border: 1px solid var(--border);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.mission-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 50%;
}

/* ── TEAM PAGE ── */
.team-member {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.team-member:hover {
  border-color: var(--border-strong);
}
.member-photo {
  height: 240px;
  background: linear-gradient(160deg, var(--teal) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.member-photo .initials {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.4);
}
.member-info {
  padding: 24px;
}
.member-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}
.member-designation {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.member-meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.member-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}
.member-meta-item strong {
  color: var(--text-soft);
  font-weight: 400;
}

/* ── SERVICES PAGE ── */
.service-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.service-tab-btn {
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: -1px;
  font-family: var(--font-body);
}
.service-tab-btn:hover {
  color: var(--white);
}
.service-tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.service-panel {
  display: none;
}
.service-panel.active {
  display: block;
}
.service-grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.service-grid-item:hover {
  border-color: var(--border-strong);
  background: rgba(9, 67, 73, 0.12);
}
.service-grid-item .sgi-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.22);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.service-grid-item .sgi-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  padding-top: 4px;
}

/* ── CLIENTS PAGE ── */
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.client-logo-cell {
  background: rgba(15, 24, 43, 0.8);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.client-logo-cell:hover {
  background: rgba(9, 67, 73, 0.3);
  color: var(--gold-light);
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
.contact-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-control:focus {
  border-color: var(--border-strong);
  background-color: var(--navy-deep);
}
.form-control::placeholder {
  color: var(--text-muted);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.map-placeholder {
  height: 280px;
  background: linear-gradient(160deg, rgba(9, 67, 73, 0.4) 0%, rgba(5, 49, 56, 0.3) 100%);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 169, 110, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 169, 110, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-text {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ── BLOG / ARCHIVE ── */
.blog-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.blog-card:hover {
  border-color: var(--border-strong);
}
.blog-thumb {
  height: 180px;
  background: linear-gradient(160deg, rgba(9, 67, 73, 0.5) 0%, rgba(17, 33, 70, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(15, 24, 43, 0.85);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid var(--border-strong);
}
.blog-body {
  padding: 24px;
}
.blog-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 12px;
}
.blog-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.know-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
}
.know-more:hover {
  gap: 14px;
}
.know-more::after {
  content: "→";
}

/* ── HOME BLOG CARDS ── */
.home-blog-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition:
    border-color 0.25s,
    transform 0.25s;
  display: flex;
  flex-direction: column;
}
.home-blog-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.home-blog-thumb {
  height: 160px;
  background: linear-gradient(160deg, rgba(9, 67, 73, 0.55) 0%, rgba(17, 33, 70, 0.55) 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 0 16px 16px;
}
.home-blog-thumb .blog-category {
  position: static;
  display: inline-block;
}
.home-blog-body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-blog-body .blog-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.home-blog-body .blog-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 10px;
}
.home-blog-body .blog-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.home-blog-body .know-more {
  margin-top: 14px;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-heading {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text-soft);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.2s;
}

/* ════════════════════════════════════════════════════════
   HAMBURGER BUTTON
   ════════════════════════════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  padding: 8px;
  background: transparent;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — NAV: compress 901–1280px (desktop squeeze)
   ════════════════════════════════════════════════════════ */
@media (max-width: 1280px) and (min-width: 901px) {
  .nav {
    padding: 0 28px;
  }
  .nav-links {
    gap: 22px;
  }
  .nav-links a {
    font-size: 11.5px;
    letter-spacing: 0.04em;
  }
  .nav-cta {
    padding: 8px 16px !important;
    font-size: 11px !important;
    letter-spacing: 0.05em !important;
  }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE NAV DRAWER (≤900px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav {
    padding: 0 24px;
    height: 64px;
  }
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 16, 32, 0.98);
    backdrop-filter: blur(20px);
    padding: 32px 28px 48px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    border-top: 1px solid var(--border);
  }
  .nav-links.open {
    transform: translateX(0);
    height: 100vh;
  }

  /* All nav items get a bottom separator line */
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  /* ...except the Contact Us button — remove its separator */
  .nav-links li:has(.nav-cta) {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 14px;
    letter-spacing: 0.08em;
  }
  .nav-cta {
    margin-top: 20px;
    display: inline-block !important;
    width: auto !important;
    padding: 12px 28px !important;
  }

  /* Inner page hero offset for 64px nav */
  body > .section-sm:first-of-type {
    padding-top: calc(64px + 40px);
  }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — HERO (≤1024px: still 76px nav)
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-slider {
    height: calc(100svh - 76px);
    min-height: 500px;
  }
  .hero-slide > .container {
    width: 88%;
    max-width: 88%;
  }
  .slider-controls {
    left: 6%;
    right: 6%;
  }
  .hero-content {
    padding: 40px 0 100px;
  }
  .hero-content .display-heading {
    font-size: clamp(30px, 4vw, 52px);
  }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — TABLET / MOBILE (≤768px: 64px nav active)
   ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero */
  .hero-slider {
    height: calc(100svh - 64px);
    margin-top: 64px;
    min-height: 480px;
  }
  .hero-slide > .container {
    width: 92%;
    max-width: 92%;
    align-items: center;
    padding-top: 0;
  }
  .hero-content {
    padding: 24px 0 110px;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero-badge {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 20px;
    align-self: center;
  }
  .hero-content .display-heading {
    font-size: clamp(26px, 6.5vw, 40px);
    text-align: center;
  }
  .hero-content .divider {
    margin: 16px auto;
  }
  .hero-content .body-text {
    font-size: 14px;
    max-width: 100%;
    text-align: center;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
    align-items: center;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    padding: 13px 24px;
  }
  .slider-controls {
    left: 4%;
    right: 4%;
    bottom: 22px;
    gap: 12px;
  }
  .slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  /* Container */
  .container,
  .container-wide {
    padding: 0 20px;
  }

  /* Sections */
  .section {
    padding: 56px 0;
  }
  .section-sm {
    padding: 40px 0;
    padding-top: calc(64px + 32px);
  }

  /* Typography */
  .display-heading {
    font-size: clamp(28px, 7vw, 40px);
  }
  .section-heading {
    font-size: clamp(22px, 5vw, 34px);
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mission-card {
    padding: 32px 24px;
  }

  /* Services */
  .service-tabs {
    gap: 0;
  }
  .service-tab-btn {
    padding: 12px 20px;
    font-size: 11px;
  }

  /* Clients */
  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .map-placeholder {
    height: 220px;
  }

  /* Blog */
  .blog-thumb {
    height: 140px;
  }
  .blog-body {
    padding: 20px;
  }
  .blog-title {
    font-size: 18px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  /* Touch targets */
  .btn {
    min-height: 48px;
  }
  .form-control,
  select.form-control {
    min-height: 48px;
  }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE PORTRAIT (≤480px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  body {
    overflow-x: hidden;
  }
  .nav {
    padding: 0 16px;
  }
  .container,
  .container-wide {
    padding: 0 16px;
  }

  .hero-slider {
    height: calc(100svh - 64px);
    margin-top: 64px;
    min-height: 440px;
  }
  .hero-slide > .container {
    width: 94%;
    max-width: 94%;
  }
  .hero-content {
    padding: 20px 0 100px;
  }
  .hero-content .display-heading {
    font-size: clamp(24px, 8vw, 36px);
  }

  .display-heading {
    font-size: clamp(24px, 8vw, 32px);
  }
  .card {
    padding: 24px 20px;
  }
  .client-logo-cell {
    height: 80px;
    font-size: 14px;
  }
  .form-name-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — SMALL TWEAKS
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-intro-grid {
    gap: 48px;
  }
  .contact-grid {
    gap: 40px;
  }
  .service-grid-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
@media (max-width: 600px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .member-photo {
    height: 200px;
  }
  .service-grid-list {
    grid-template-columns: 1fr;
  }
  .service-grid-item {
    padding: 18px 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer {
    padding: 48px 0 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-bottom div {
    flex-wrap: wrap;
    justify-content: center;
  }
}
