/* ========================================
   1. CSS Variables
   ======================================== */
:root {
  --primary-navy: #062B4F;
  --dark-navy: #031D36;
  --deep-blue: #001B33;
  --gold: #D4A52C;
  --gold-dark: #B78714;
  --gold-light: #F3D77A;
  --white: #FFFFFF;
  --off-white: #F8F7F3;
  --light-grey: #F2F4F7;
  --border: #DCE2E8;
  --dark-text: #16202A;
  --muted-text: #5C6670;
  --success: #1FA855;
  --shadow-sm: 0 2px 8px rgba(6, 43, 79, 0.06);
  --shadow-md: 0 8px 24px rgba(6, 43, 79, 0.1);
  --shadow-lg: 0 16px 40px rgba(6, 43, 79, 0.14);
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 14px;
  --header-offset: 0px;
  --mobile-bar-height: 0px;
  --heading-font: "DM Serif Display", serif;
  --body-font: "Manrope", sans-serif;
  --font-heading: var(--heading-font);
  --font-body: var(--body-font);
  --transition: 0.3s ease;
  --max-width: 1280px;
}

/* ========================================
   2. Reset
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2px;
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

/* ========================================
   3. Typography
   ======================================== */

/* Display headings — DM Serif Display only */
h1,
h2,
.heading-font {
  font-family: var(--heading-font);
  font-weight: 400;
  color: var(--primary-navy);
}

h1 {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
}

/* Card / UI headings — Manrope */
h3,
h4 {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: var(--primary-navy);
}

p {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted-text);
  letter-spacing: 0.2px;
}

.small-text {
  font-size: clamp(13px, 1vw, 15px);
  font-family: var(--body-font);
}

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

.section-header h2 {
  margin-bottom: 18px;
}

.section-header p {
  margin-top: 6px;
}

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

.eyebrow {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ========================================
   4. Utility Classes
   ======================================== */
.container {
  max-width: var(--max-width);
  width: calc(100% - 40px);
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section--off-white {
  background: var(--off-white);
}

.section--light {
  background: var(--light-grey);
}

.eyebrow--underline::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
  transform-origin: left;
  transition: transform 0.6s ease;
}

.reveal.is-visible .eyebrow--underline::after,
.section-header.is-visible .eyebrow--underline::after {
  transform: scaleX(1);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  background: var(--gold);
  color: var(--deep-blue);
  padding: 12px 18px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.icon--sm {
  width: 18px;
  height: 18px;
}

.icon--lg {
  width: 32px;
  height: 32px;
}

.icon--xl {
  width: 40px;
  height: 40px;
}

.icon-on-dark {
  filter: brightness(0) invert(1);
}

.icon-gold {
  filter: invert(68%) sepia(52%) saturate(650%) hue-rotate(5deg) brightness(95%) contrast(92%);
}

/* ========================================
   5. Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 26px;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  background: var(--gold);
  color: var(--deep-blue);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-navy);
}

.btn-navy {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
}

.btn-navy:hover {
  background: var(--dark-navy);
  border-color: var(--dark-navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--primary-navy);
  border-color: var(--primary-navy);
}

.btn-outline-navy:hover {
  background: var(--primary-navy);
  color: var(--white);
}

.btn-whatsapp {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-whatsapp:hover {
  background: var(--success);
  border-color: var(--success);
}

.btn-block {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ========================================
   6. Header
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(6, 43, 79, 0.12);
}

.top-bar {
  background: var(--dark-navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar__tagline {
  opacity: 0.9;
}

.top-bar__phones {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-bar__phones a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--body-font);
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: color var(--transition);
}

.top-bar__phones a:hover {
  color: var(--gold);
}

.top-bar__phones .icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
  filter: invert(68%) sepia(52%) saturate(650%) hue-rotate(5deg) brightness(95%) contrast(92%);
}

.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.main-nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 28px;
  flex-wrap: wrap;
}

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

.nav-links a,
.nav-dropdown__toggle {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--primary-navy);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
  background: none;
  border: none;
  font-family: var(--body-font);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links a::after,
.nav-dropdown__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active,
.nav-dropdown__toggle:hover,
.nav-dropdown.is-open > .nav-dropdown__toggle,
.nav-dropdown.is-active > .nav-dropdown__toggle {
  color: var(--primary-navy);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-dropdown__toggle:hover::after,
.nav-dropdown.is-open > .nav-dropdown__toggle::after,
.nav-dropdown.is-active > .nav-dropdown__toggle::after {
  transform: scaleX(1);
}

.nav-dropdown__caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition);
}

.nav-dropdown.is-open .nav-dropdown__caret {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 50;
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  color: var(--dark-text);
  white-space: nowrap;
}

.nav-dropdown__menu a::after {
  display: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.active {
  background: var(--off-white);
  color: var(--primary-navy);
}

.nav-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--primary-navy);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* ========================================
   7. Mobile Navigation
   ======================================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 29, 54, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 1100;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: var(--white);
  color: var(--dark-text);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  pointer-events: none;
  box-shadow: -8px 0 30px rgba(6, 43, 79, 0.12);
}

.mobile-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mobile-drawer__head .logo img {
  height: 56px;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.drawer-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--primary-navy);
  font-size: 28px;
  line-height: 1;
  background: var(--off-white);
}

.mobile-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.mobile-drawer__links > a,
.mobile-drawer__links .drawer-dropdown__toggle {
  color: var(--primary-navy);
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.3px;
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-drawer__links > a.active,
.mobile-drawer__links > a:hover,
.mobile-drawer__links .drawer-dropdown__toggle:hover,
.mobile-drawer__links .drawer-dropdown.is-open > .drawer-dropdown__toggle {
  color: var(--gold-dark);
  background: var(--off-white);
}

.drawer-dropdown__menu {
  display: none;
  flex-direction: column;
  padding: 4px 0 8px 12px;
  gap: 2px;
}

.drawer-dropdown.is-open .drawer-dropdown__menu {
  display: flex;
}

.drawer-dropdown__menu a {
  color: var(--muted-text);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.drawer-dropdown__menu a:hover,
.drawer-dropdown__menu a.active {
  color: var(--primary-navy);
  background: var(--light-grey);
}

.mobile-drawer__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.mobile-drawer__actions .btn-outline {
  color: var(--primary-navy);
  border-color: var(--primary-navy);
}

.mobile-drawer__actions .btn-outline:hover {
  background: var(--primary-navy);
  color: var(--white);
}

/* ========================================
   8. Hero
   ======================================== */
.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  background: var(--deep-blue) center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero .container {
  width: calc(100% - 40px);
  max-width: var(--max-width);
  margin-inline: auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 29, 54, 0.88) 0%, rgba(3, 29, 54, 0.55) 45%, rgba(3, 29, 54, 0.22) 78%, rgba(3, 29, 54, 0.12) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  width: 100%;
  padding: 110px 0 150px;
}

.hero__eyebrow {
  color: var(--gold);
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}

.hero__location .icon {
  color: var(--gold);
}

.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: var(--primary-navy) center / cover no-repeat;
  color: var(--white);
  padding: 80px 0 70px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 29, 54, 0.92), rgba(3, 29, 54, 0.65));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  font-size: 17px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: var(--gold-light);
}

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

/* ========================================
   9. Service Strip
   ======================================== */
.service-strip-wrap {
  position: relative;
  z-index: 5;
  margin-top: -70px;
  margin-bottom: 30px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.service-strip__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  position: relative;
  transition: background var(--transition), transform var(--transition);
}

.service-strip__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: var(--border);
}

.service-strip__item:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.service-strip__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(6, 43, 79, 0.06);
  color: var(--primary-navy);
  display: grid;
  place-items: center;
  border-bottom: 2px solid var(--gold);
}

.service-strip__item h3 {
  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-navy);
}

.service-strip__item p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted-text);
}

/* ========================================
   10. About
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.about-grid__content .eyebrow {
  margin-bottom: 14px;
}

.about-grid__content h2 {
  margin-bottom: 28px;
}

.about-grid__content p {
  margin-bottom: 18px;
}

.about-grid__content .btn {
  margin-top: 18px;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.trust-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--primary-navy);
  color: var(--white);
  padding: 20px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 220px;
}

.trust-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold);
}

.trust-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 5px 0;
}

.trust-card .icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.group-section p {
  max-width: 820px;
  margin: 0 auto 16px;
  text-align: center;
}

.group-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

/* ========================================
   11. Services
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.services-grid--related {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

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

.service-card__image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

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

.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 20px 24px;
}

.service-card__body h3 {
  margin-bottom: 12px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: var(--primary-navy);
}

.service-card__body > p {
  font-size: 15px;
  margin-bottom: 16px;
}

.service-card__list {
  margin-bottom: 20px;
  flex: 1;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--dark-text);
  padding: 5px 0;
}

.service-card__list .icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  margin-top: 3px;
}

.service-card__link {
  font-weight: 700;
  color: var(--primary-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition), gap var(--transition);
}

.service-card__link:hover {
  color: var(--gold-dark);
  gap: 10px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail:nth-child(even) .service-detail__media {
  order: 2;
}

.service-detail__media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.service-detail h2 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.service-detail p {
  margin-bottom: 16px;
}

.service-detail h4 {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 20px 0 10px;
}

.inclusion-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
  font-size: 15px;
}

.inclusion-list .icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  margin-top: 4px;
}

/* ========================================
   12. Emergency Banner
   ======================================== */
.emergency {
  position: relative;
  background: var(--dark-navy) center / cover no-repeat;
  color: var(--white);
  padding: 70px 0;
  overflow: hidden;
}

.emergency::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 29, 54, 0.88);
}

.emergency .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}

.emergency__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.emergency__icon .icon {
  width: 36px;
  height: 36px;
}

.emergency h2 {
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.emergency p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
}

.emergency__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

/* ========================================
   13. Why Choose Us
   ======================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.why-item {
  text-align: center;
  padding: 10px 8px;
}

.why-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary-navy);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.why-item h3 {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--primary-navy);
}

.why-item p {
  font-size: 14px;
  line-height: 1.55;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.value-card h3 {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
}

/* ========================================
   14. Process
   ======================================== */
.process-areas {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 36px;
  align-items: start;
}

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

.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  border-top: 2px dotted var(--border);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 6px;
}

.process-step__number {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.process-step h3 {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--primary-navy);
}

.process-step p {
  font-size: 14px;
}

/* ========================================
   15. Service Areas
   ======================================== */
.areas-card {
  background: var(--primary-navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}

.areas-card h3 {
  color: var(--gold);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.areas-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.areas-card li:last-of-type {
  margin-bottom: 22px;
}

.areas-card .icon {
  color: var(--gold);
  width: 18px;
  height: 18px;
}

.areas-card .btn {
  width: 100%;
}

/* ========================================
   16. FAQ
   ======================================== */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 18px 22px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2px;
  color: var(--primary-navy);
  min-height: 56px;
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition), color var(--transition);
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--deep-blue);
  border-color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer__inner {
  padding: 0 22px 20px;
}

.faq-answer p {
  font-size: 15px;
}

/* ========================================
   17. Contact
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 18px;
}

.contact-info > p {
  margin-bottom: 32px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-list a,
.contact-list span,
.contact-list address {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--primary-navy);
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 15px;
}

.contact-list .icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(6, 43, 79, 0.06);
  color: var(--primary-navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-list .icon-wrap .icon {
  color: var(--gold-dark);
}

.contact-services {
  margin-top: 8px;
}

.contact-services h4 {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.contact-services li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  padding: 4px 0;
  color: var(--muted-text);
}

.contact-services .icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  margin-bottom: 10px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
}

.contact-form-card > p {
  margin-bottom: 24px;
  font-size: 15px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-navy);
  letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 44, 0.2);
}

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #c0392b;
}

.field-error {
  color: #c0392b;
  font-size: 13px;
  min-height: 18px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(6, 43, 79, 0.06);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
}

.contact-card h3 {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-card a,
.contact-card p {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
}

.map-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.map-card iframe {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 0;
  display: block;
}

.map-card__body .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.map-card__body {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.map-card__body p {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.map-card__body .icon {
  color: var(--gold);
  margin-top: 2px;
}

/* ========================================
   18. Footer + Final CTA
   ======================================== */
.final-cta {
  background: var(--primary-navy);
  color: var(--white);
  padding: 56px 0;
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.final-cta h2 {
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  font-size: 15px;
}

.site-footer {
  background: var(--off-white);
  padding-top: 72px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 48px;
  align-items: start;
}

.footer-brand .logo img {
  height: 72px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 320px;
  line-height: 1.75;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links span {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--primary-navy);
  background: var(--white);
}

.footer-col h4 {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 400;
  color: var(--primary-navy);
  margin-bottom: 20px;
  line-height: 1.25;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-col li {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-text);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold-dark);
}

.footer-contact a {
  font-family: var(--body-font);
  font-weight: 700;
  color: var(--primary-navy);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-contact .icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  background: var(--dark-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 18px 0;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-bottom span:last-child,
.footer-credit {
  color: var(--gold-light);
}

.footer-credit a {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--white);
}

/* ========================================
   19. Floating Actions
   ======================================== */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

@media (max-width: 900px) {
  .floating-actions {
    right: 14px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    gap: 10px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.float-btn--whatsapp {
  background: #25D366;
  color: var(--white);
  animation: pulse-whatsapp 2.4s ease-in-out infinite;
}

.float-btn--phone {
  background: var(--primary-navy);
  color: var(--gold);
}

.float-btn--top {
  background: var(--white);
  color: var(--primary-navy);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.float-btn--top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@keyframes pulse-whatsapp {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.mobile-action-bar {
  display: none;
}

/* ========================================
   20. Animations
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.hero .reveal,
.hero .reveal-delay-1,
.hero .reveal-delay-2 {
  will-change: opacity, transform;
}

/* ========================================
   21. Accessibility
   ======================================== */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn:focus:not(:focus-visible),
.faq-question:focus:not(:focus-visible),
.menu-toggle:focus:not(:focus-visible),
.drawer-close:focus:not(:focus-visible) {
  outline: none;
}

.btn-outline .icon,
.btn-whatsapp .icon,
.btn-navy .icon,
.float-btn--whatsapp .icon,
.emergency__icon .icon,
.hero__location .icon {
  filter: brightness(0) invert(1);
}

.float-btn--phone .icon,
.trust-card .icon,
.areas-card .icon,
.service-card__list .icon,
.inclusion-list .icon,
.contact-services .icon,
.footer-contact .icon,
.contact-card__icon .icon,
.contact-list .icon-wrap .icon,
.map-card__body .icon,
.principles-list .icon {
  filter: invert(68%) sepia(52%) saturate(650%) hue-rotate(5deg) brightness(95%) contrast(92%);
}

.float-btn--top .icon {
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .service-card:hover .service-card__image img {
    transform: none;
  }

  .btn::before {
    display: none;
  }

  .float-btn--whatsapp {
    animation: none;
  }
}

/* Mission / content helpers */
.content-block {
  max-width: 820px;
}

.content-block p {
  margin-bottom: 18px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.mission-card h3 {
  margin-bottom: 14px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
}

.principles-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 28px;
}

.principles-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
}

.principles-list strong {
  display: block;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.principles-list .icon {
  color: var(--gold);
  margin-top: 2px;
}

/* ========================================
   CEO Message
   ======================================== */
.ceo-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: center;
}

.ceo-media {
  position: relative;
  max-width: 420px;
}

.ceo-media::after {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 18px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  z-index: 0;
  pointer-events: none;
}

.ceo-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.ceo-content .eyebrow {
  margin-bottom: 14px;
}

.ceo-content h2 {
  margin-bottom: 24px;
}

.ceo-content blockquote {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  font-family: var(--heading-font);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.55;
  color: var(--primary-navy);
  font-weight: 400;
}

.ceo-content blockquote p {
  margin: 0 0 16px;
}

.ceo-content blockquote p:last-child {
  margin-bottom: 0;
}

.ceo-signoff {
  margin: 0 0 28px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.ceo-signature strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.35rem;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.ceo-signature span {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.ceo-grid--home .ceo-media {
  max-width: 360px;
}

.ceo-grid--home blockquote {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}
