/* ============================================================
   Branch Construction — Main Stylesheet
   Colors: Navy #1B2A52 | Steel Blue #7BAFD4 | Gold #C4A24A
   Fonts: Montserrat (headings) | Inter (body)
   ============================================================ */

/* ── 1. Variables & Reset ──────────────────────────────────── */
:root {
  --navy:        #1B2A52;
  --navy-dark:   #0E1A35;
  --navy-light:  #243568;
  --blue:        #7BAFD4;
  --blue-light:  #A8CFEA;
  --gold:        #C4A24A;
  --gold-dark:   #A88533;
  --white:       #FFFFFF;
  --off-white:   #F6F8FB;
  --gray-100:    #EDF0F5;
  --gray-200:    #D4DAE8;
  --gray-500:    #7A849A;
  --gray-700:    #3D4A63;
  --text:        #1A2236;

  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius:     6px;
  --radius-lg:  12px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.18);

  --transition: 0.3s ease;
  --max-w:      1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

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

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

.section {
  padding: 96px 0;
}

/* ── 3. Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }

p { color: var(--gray-700); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header .section-title {
  margin-bottom: 20px;
}

.section-header.left {
  text-align: left;
  margin: 0 0 56px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
}

/* ── 4. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--lg  { padding: 17px 36px; font-size: .9rem; }
.btn--sm  { padding: 10px 20px; font-size: .8rem; }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,162,74,.35);
}

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

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

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── 5. Header / Navigation ────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-700);
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 10px; right: 10px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--navy);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 6. Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 26, 53, 0.88) 0%,
    rgba(27, 42, 82, 0.75) 60%,
    rgba(27, 42, 82, 0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 24px;
}

.hero__eyebrow {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.hero__headline {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -.02em;
}

.hero__headline em {
  font-style: normal;
  color: var(--blue-light);
}

.hero__sub {
  color: rgba(255,255,255,.82);
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}

.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%   { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* ── 7. Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,26,53,.9) 0%, rgba(27,42,82,.8) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__content .section-label {
  display: block;
  margin-bottom: 16px;
}

.page-hero__content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero__content p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb i { color: rgba(255,255,255,.4); font-size: .65rem; }

/* ── 8. Stats Bar ──────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-item__number {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-item__suffix {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

.stat-item__label {
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  margin-top: 8px;
}

/* ── 9. Services Cards ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,42,82,.5) 0%, transparent 60%);
}

.service-card__body {
  padding: 40px;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.service-card__body h3 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.service-card__body p {
  margin-bottom: 20px;
  line-height: 1.75;
}

.service-card__list {
  margin-bottom: 28px;
}

.service-card__list li {
  color: var(--gray-700);
  font-size: .9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── 10. About Snapshot ────────────────────────────────────── */
.about-snap {
  background: var(--off-white);
}

.about-snap__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-snap__image {
  position: relative;
}

.about-snap__image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-snap__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-snap__badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.about-snap__badge-txt {
  display: block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-top: 6px;
  line-height: 1.5;
}

.about-snap__content .section-title {
  margin-bottom: 20px;
}

.about-snap__content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-snap__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 40px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
}

.pillar i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── 11. Why Branch ────────────────────────────────────────── */
.why-branch {
  background: var(--navy);
}

.why-branch .section-title {
  color: var(--white);
}

.why-branch .section-desc {
  color: rgba(255,255,255,.65);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(196,162,74,.4);
  transform: translateY(-4px);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(196,162,74,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.why-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.why-card p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  line-height: 1.75;
}

/* ── 12. Projects Preview ──────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.project-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-card__img {
  height: 240px;
  overflow: hidden;
}

.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.project-card:hover .project-card__img img {
  transform: scale(1.06);
}

.project-card__info {
  padding: 28px;
}

.project-card__type {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,162,74,.12);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.project-card__info h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.project-card__info p {
  font-size: .875rem;
  line-height: 1.65;
}

.projects-preview__cta {
  text-align: center;
}

/* ── 13. Projects Full Grid ────────────────────────────────── */
.projects-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── 14. Testimonials ──────────────────────────────────────── */
.testimonials {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.testimonial-card__stars {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gray-200);
  position: absolute;
  top: -24px;
  left: -8px;
  line-height: 1;
}

.testimonial-card__author strong {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-card__author span {
  font-size: .8rem;
  color: var(--gray-500);
}

/* ── 15. CTA Band ──────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,26,53,.92), rgba(27,42,82,.85));
}

.cta-band__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-band__content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta-band__content p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 44px;
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── 16. Footer ────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 24px 48px;
}

.footer__logo {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer__brand p {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  transition: background var(--transition), color var(--transition);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer h4 {
  color: var(--white);
  font-size: .75rem;
  letter-spacing: .12em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__nav ul,
.footer__services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav li a,
.footer__services li a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer__nav li a:hover,
.footer__services li a:hover {
  color: var(--gold);
}

.footer__contact address p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}

.footer__contact address i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: .9rem;
}

.footer__contact address a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer__contact address a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px;
  text-align: center;
}

.footer__bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ── 17. About Page ────────────────────────────────────────── */
.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-grid.reverse { direction: rtl; }
.story-grid.reverse > * { direction: ltr; }

.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.story-content p {
  margin-bottom: 16px;
  line-height: 1.85;
}

.leader-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.leader-card__photo {
  height: 320px;
  overflow: hidden;
}

.leader-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.leader-card__body {
  padding: 32px;
}

.leader-card__body h3 {
  margin-bottom: 4px;
}

.leader-card__body .title {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.leader-card__body p {
  font-size: .9rem;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(27,42,82,.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.value-card h3 { margin-bottom: 12px; }

/* ── 18. Services Page ─────────────────────────────────────── */
.service-detail {
  padding: 96px 0;
}

.service-detail:nth-child(even) {
  background: var(--off-white);
}

.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.service-detail__inner.reverse { direction: rtl; }
.service-detail__inner.reverse > * { direction: ltr; }

.service-detail__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.service-detail__content p {
  margin-bottom: 16px;
  line-height: 1.85;
}

.service-detail__features {
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.feature-item i {
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}

.process-section {
  background: var(--navy);
  padding: 96px 0;
}

.process-section .section-title { color: var(--white); }
.process-section .section-desc { color: rgba(255,255,255,.65); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 2px;
  background: rgba(255,255,255,.15);
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-step__num {
  width: 72px;
  height: 72px;
  background: rgba(196,162,74,.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.process-step p {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  line-height: 1.65;
}

/* ── 19. Contact Page ──────────────────────────────────────── */
.contact-section {
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.contact-info > p {
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-detail__icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-detail__text a,
.contact-detail__text span {
  font-size: .9rem;
  color: var(--gray-700);
  transition: color var(--transition);
}

.contact-detail__text a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--gray-500);
  font-size: .9rem;
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,82,.1);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A5568' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 17px;
}

.form-note {
  font-size: .78rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 12px;
}

/* ── 20. Scroll Animations ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .8s ease forwards;
}

.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── 21. Media Queries ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .process-steps::before { display: none; }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .services-grid,
  .story-grid,
  .service-detail__inner,
  .about-snap__inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .story-grid.reverse,
  .service-detail__inner.reverse {
    direction: ltr;
  }
  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .testimonials-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-snap__badge {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav.open {
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__link {
    padding: 14px 12px;
    font-size: .85rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav__link::after { display: none; }

  .nav__cta {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  .hamburger { display: flex; }

  .hero__content { padding: 60px 24px; }

  .projects-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 32px 24px; }

  .footer__inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 32px;
  }

  .service-detail__features { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .about-snap__pillars { grid-template-columns: 1fr; }
  .cta-band__actions { flex-direction: column; align-items: center; }
}
