:root {
  --brand-navy: #123b7a;
  --brand-navy-deep: #0d2c59;
  --brand-blue: #2f66b0;
  --brand-gold: #d4a33b;
  --brand-red: #b6453a;
  --ink: #142746;
  --ink-soft: #49607f;
  --text-muted: #6f8098;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: #ffffff;
  --surface-soft: #f4f7fa;
  --line: rgba(20, 39, 70, 0.1);
  --success: #2e8c61;
  --shadow-lg: 0 14px 36px rgba(17, 36, 67, 0.08);
  --shadow-md: 0 8px 22px rgba(17, 36, 67, 0.06);
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #f6f8fb;
}

body::before {
  content: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.section-space {
  padding: 6rem 0;
}

.section-space-sm {
  padding: 4.5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(18, 59, 122, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-red));
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.4rem;
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.display-title {
  margin: 1rem 0 1rem;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.display-title {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  max-width: 12ch;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.section-heading p,
.lead-copy {
  max-width: 40rem;
  font-size: 1.04rem;
  color: var(--text-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-navy);
  font-weight: 700;
}

.text-link:hover {
  color: var(--brand-red);
}

.btn-brand,
.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.btn-brand {
  border: 0;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--brand-navy) 0%,
    var(--brand-blue) 100%
  );
  box-shadow: 0 16px 34px rgba(18, 59, 122, 0.22);
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(18, 59, 122, 0.16);
}

.btn-outline-brand {
  border: 1px solid rgba(18, 59, 122, 0.16);
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline-brand:hover {
  color: var(--brand-navy);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 36, 67, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.site-header.is-scrolled .header-shell {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 20px rgba(19, 39, 70, 0.08);
}

.topbar {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.topbar .topbar-shell {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(20, 39, 70, 0.08);
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.topbar-item i {
  color: var(--brand-red);
  transition: transform 0.2s ease;
}

.topbar-item:hover {
  transform: translateY(-1px);
}

.topbar-item:hover i {
  transform: scale(1.04);
}

.header-shell {
  margin-top: 0.6rem;
  border: 1px solid rgba(20, 39, 70, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.navbar {
  padding: 0.9rem 1.1rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.brand-lockup img {
  width: auto;
  height: 58px;
}

.brand-copy strong {
  display: block;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-copy span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar-nav {
  align-items: center;
  gap: 0.3rem;
}

.nav-link {
  position: relative;
  padding: 0.65rem 0.95rem !important;
  color: var(--ink) !important;
  font-weight: 700;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-red));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--brand-navy) !important;
}

.nav-link:hover {
  transform: none;
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.hero-section {
  padding: 4.2rem 0 3.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-copy .lead-copy {
  font-size: 1.08rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.1rem;
}

.metric-card {
  padding: 1.2rem 1.15rem;
  border: 1px solid rgba(18, 59, 122, 0.1);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17, 36, 67, 0.08);
}

.metric-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand-navy);
  font-size: 1.4rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.metric-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-stage {
  position: relative;
}

.hero-visual {
  position: relative;
  padding: 0;
  border: 1px solid rgba(18, 59, 122, 0.08);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.hero-visual::before {
  content: none;
}

.hero-visual img {
  min-height: 480px;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
}

.floating-card,
.floating-chip {
  display: none;
}

.floating-card {
  max-width: 18rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
}

.floating-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brand-navy);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.floating-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.floating-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: var(--brand-navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.floating-chip i {
  color: var(--brand-red);
}

.content-panel,
.service-card,
.process-card,
.testimonial-card,
.location-card,
.contact-card,
.gallery-card,
.detail-card,
.cta-banner,
.stat-band {
  border: 1px solid rgba(18, 59, 122, 0.08);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.content-panel {
  padding: 2rem;
}

.highlight-list,
.service-points,
.coverage-list,
.contact-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-list li,
.service-points li,
.coverage-list li,
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

.highlight-list i,
.service-points i,
.coverage-list i,
.contact-list i {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--brand-navy);
  background: linear-gradient(
    135deg,
    rgba(212, 163, 59, 0.28),
    rgba(47, 102, 176, 0.12)
  );
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 2rem 0;
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid rgba(18, 59, 122, 0.04);
  z-index: -1;
}

.service-card,
.process-card,
.testimonial-card,
.location-card,
.contact-card,
.detail-card {
  height: 100%;
  padding: 2rem;
}

.service-card {
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card::after {
  content: none;
}

.service-card:hover,
.gallery-card:hover,
.location-card:hover,
.testimonial-card:hover,
.detail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17, 36, 67, 0.09);
  border-color: rgba(18, 59, 122, 0.14);
}

.service-icon,
.detail-icon {
  width: 3.6rem;
  height: 3.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  border-radius: 18px;
  color: #fff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
  box-shadow: 0 14px 26px rgba(18, 59, 122, 0.22);
  transition: transform 0.25s ease;
}

.service-card:hover .service-icon,
.detail-card:hover .detail-icon {
  transform: scale(1.04);
}

.service-card h3,
.process-card h3,
.testimonial-card h3,
.location-card h3,
.contact-card h3,
.detail-card h3,
.cta-banner h3,
.footer-brand h3 {
  margin: 0 0 0.9rem;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.72rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(18, 59, 122, 0.06);
  color: var(--brand-navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-number {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  color: var(--brand-navy);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    rgba(212, 163, 59, 0.45),
    rgba(47, 102, 176, 0.16)
  );
}

.quote-mark {
  color: var(--brand-gold);
  font-size: 2rem;
}

.testimonial-meta {
  margin-top: 1.4rem;
  color: var(--brand-navy);
  font-weight: 800;
}

.testimonial-meta span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.stat-band {
  padding: 1.35rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-item {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.stat-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand-navy);
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.stat-item span {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.split-visual {
  position: relative;
  min-height: 100%;
}

.photo-stack {
  display: grid;
  gap: 1rem;
}

.photo-stack-main,
.photo-stack-secondary {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.photo-stack-main img {
  min-height: 420px;
  object-fit: cover;
}

.photo-stack-secondary {
  width: min(78%, 22rem);
  margin-left: auto;
  margin-top: -4.5rem;
  border: 8px solid rgba(255, 255, 255, 0.86);
}

.photo-stack-secondary img {
  min-height: 200px;
  object-fit: cover;
}

.page-hero {
  padding: 4.2rem 0 2.4rem;
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  padding: 3rem;
  border: 1px solid rgba(18, 59, 122, 0.08);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.page-hero-card::after {
  content: none;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-navy);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.page-hero-meta span:hover {
  transform: translateY(-1px);
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.2rem;
}

.gallery-card {
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.gallery-card.large {
  grid-column: span 7;
}

.gallery-card.medium {
  grid-column: span 5;
}

.gallery-card.standard {
  grid-column: span 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-card-content {
  padding: 1.35rem 1.4rem 1.5rem;
}

.gallery-card-content h3 {
  margin-bottom: 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.location-map {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  min-height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(18, 59, 122, 0.98),
    rgba(13, 44, 89, 0.98)
  );
  box-shadow: var(--shadow-lg);
}

.location-map::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-lg) - 8px);
}

.location-map h3,
.location-map p,
.location-map .coverage-list li {
  color: #fff;
}

.location-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.location-dot i {
  color: var(--brand-gold);
}

.contact-card.emphasis {
  background: linear-gradient(
    180deg,
    rgba(18, 59, 122, 0.96),
    rgba(13, 44, 89, 0.98)
  );
}

.contact-card.emphasis,
.contact-card.emphasis p,
.contact-card.emphasis a,
.contact-card.emphasis .contact-list li {
  color: #fff;
}

.contact-card.emphasis .contact-list i {
  color: var(--brand-gold);
  background: rgba(255, 255, 255, 0.12);
}

.contact-card.emphasis h3 {
  color: #fff;
}

.contact-card .small-note {
  color: rgba(255, 255, 255, 0.76);
}

.form-label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 3.4rem;
  border: 1px solid rgba(18, 59, 122, 0.12);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  padding-inline: 1rem;
}

textarea.form-control {
  min-height: 9.5rem;
  resize: vertical;
  padding-top: 0.95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(18, 59, 122, 0.32);
  box-shadow: 0 0 0 0.25rem rgba(47, 102, 176, 0.12);
}

.form-feedback {
  min-height: 1.5rem;
  margin-top: 0.85rem;
  color: var(--success);
  font-size: 0.95rem;
  font-weight: 700;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.cta-banner::before {
  content: none;
}

.footer-shell {
  padding: 2.5rem 0 1.5rem;
}

.site-footer {
  padding-bottom: 2rem;
}

.footer-panel {
  padding: 2rem;
  border: 1px solid rgba(18, 59, 122, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(15, 38, 72, 1), rgba(13, 44, 89, 1));
  box-shadow: var(--shadow-lg);
}

.footer-brand img {
  width: auto;
  height: 60px;
  margin-bottom: 1rem;
}

.footer-brand h3,
.footer-brand p,
.footer-links a,
.footer-copy {
  color: #fff;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

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

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.86);
  transition: transform 0.2s ease;
}

.footer-contact-list i {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.footer-contact-list strong {
  display: block;
  color: #fff;
  font-weight: 800;
}

.footer-contact-list a,
.footer-contact-list span {
  color: rgba(255, 255, 255, 0.86);
}

.footer-contact-list a:hover {
  color: var(--brand-gold);
}

.footer-contact-list li:hover {
  transform: translateX(2px);
}

.footer-contact-list li:hover i {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.18);
}

.footer-copy {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.js-enabled [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js-enabled [data-reveal-delay="1"] {
  transition-delay: 0s;
}

.js-enabled [data-reveal-delay="2"] {
  transition-delay: 0s;
}

.js-enabled [data-reveal-delay="3"] {
  transition-delay: 0s;
}

@media (max-width: 991.98px) {
  .header-shell {
    border-radius: 16px;
  }

  .navbar-collapse {
    padding-top: 1rem;
  }

  .nav-link::after {
    left: 0.4rem;
    right: auto;
    width: 2rem;
    bottom: 0.2rem;
  }

  .hero-section {
    padding-top: 4rem;
  }

  .hero-stage {
    margin-top: 2rem;
  }

  .hero-metrics,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card.large,
  .gallery-card.medium,
  .gallery-card.standard {
    grid-column: span 6;
  }

  .photo-stack-secondary {
    width: min(82%, 20rem);
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 4.5rem 0;
  }

  .section-space-sm {
    padding: 3.5rem 0;
  }

  .display-title {
    max-width: none;
  }

  .hero-metrics,
  .stat-grid,
  .gallery-card.large,
  .gallery-card.medium,
  .gallery-card.standard {
    grid-template-columns: 1fr;
  }

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

  .gallery-card.large,
  .gallery-card.medium,
  .gallery-card.standard {
    grid-column: auto;
  }

  .page-hero-card,
  .content-panel,
  .service-card,
  .process-card,
  .testimonial-card,
  .location-card,
  .contact-card,
  .detail-card,
  .cta-banner {
    padding: 1.6rem;
  }

  .header-shell {
    margin-top: 0.4rem;
    border-radius: 14px;
  }

  .navbar {
    padding-inline: 0.45rem;
  }

  .brand-lockup img {
    height: 48px;
  }

  .hero-visual {
    padding: 0;
  }

  .hero-visual img {
    min-height: 320px;
  }

  .photo-stack-secondary {
    width: 100%;
    margin-top: 0;
  }

  .topbar .topbar-shell {
    gap: 0.8rem;
  }

  .page-hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
