/* ================================================================
   LORD SHIPPER VESSEL PTE LTD — style.css
   Complete stylesheet — all styles in one file
   ================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Bebas+Neue&display=swap");

/* ───────────────────────────────
   DESIGN TOKENS
─────────────────────────────── */
:root {
  --deep: #010e1f;
  --navy: #021b33;
  --ocean: #0a3d62;
  --sea: #1e6091;
  --teal: #00b4d8;
  --aqua: #48cae4;
  --gold: #c9a84c;
  --gold-light: #e8cc80;
  --white: #ffffff;
  --off-white: #f0f7ff;
  --light-blue: #e3f4f9;
  --gray-200: #cde3ed;
  --gray-400: #7aafc8;
  --gray-600: #3d6a88;
  --gray-800: #0f2535;

  --glass: rgba(255, 255, 255, 0.08);
  --glass-b: rgba(255, 255, 255, 0.18);

  --font-display: "Bebas Neue", sans-serif;
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --sh-sm: 0 2px 12px rgba(1, 14, 31, 0.1);
  --sh-md: 0 8px 32px rgba(1, 14, 31, 0.14);
  --sh-lg: 0 20px 60px rgba(1, 14, 31, 0.22);
  --sh-gold: 0 4px 24px rgba(201, 168, 76, 0.38);
  --sh-teal: 0 4px 24px rgba(0, 180, 216, 0.28);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fast: 200ms;
  --mid: 420ms;
  --slow: 700ms;
}

/* ───────────────────────────────
   RESET
─────────────────────────────── */
*,
*::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(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
select,
textarea {
  font-family: inherit;
}

/* ───────────────────────────────
   SCROLL PROGRESS
─────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ───────────────────────────────
   NAVBAR
─────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: all 0.45s var(--ease);
}
.navbar.scrolled {
  background: rgba(2, 27, 51, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0, 180, 216, 0.18);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.logo-img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  color: var(--white);
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  transition: color var(--fast);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--mid) var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.5rem;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all var(--mid) var(--ease) !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--sh-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--mid) var(--ease);
}
.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);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: 70px;
  background: rgba(2, 27, 51, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform var(--slow) var(--ease);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mob-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color var(--fast);
}
.mob-link:hover {
  color: var(--gold);
}
.mob-cta {
  padding: 0.7rem 2.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--r-full);
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

/* ───────────────────────────────
   LAYOUT UTILS
─────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 6rem 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.text-center {
  text-align: center;
}
.text-white {
  color: var(--white);
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3.5rem;
}
.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ───────────────────────────────
   TYPOGRAPHY
─────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-label::before {
  content: "—";
  opacity: 0.6;
}
.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  line-height: 0.93;
  letter-spacing: 0.02em;
  color: var(--white);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 0.8rem;
}
.section-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.85;
  max-width: 58ch;
}

.stats-section .section-title {
  color: #f0f7ff !important;
}

/* ───────────────────────────────
   BUTTONS
─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all var(--mid) var(--ease);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--sh-gold);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--ocean);
}
.btn-outline:hover {
  background: var(--ocean);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
}
.btn-teal:hover {
  background: var(--aqua);
  transform: translateY(-2px);
  box-shadow: var(--sh-teal);
}
.btn-arrow::after {
  content: "→";
  transition: transform var(--mid) var(--ease);
}
.btn-arrow:hover::after {
  transform: translateX(5px);
}

/* ───────────────────────────────
   HERO
─────────────────────────────── */
/* ───────────────────────────────
   HERO
─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1505459668311-8dfac7952bf0?w=1920&q=80");
  background-size: cover;
  background-position: center 60%;
  filter: brightness(0.12) saturate(1.5);
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(1, 14, 31, 0.88) 0%,
    rgba(2, 27, 51, 0.7) 45%,
    rgba(10, 61, 98, 0.35) 100%
  );
  z-index: 2;
}

/* Two-column layout */
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 7rem;
  padding-bottom: 4.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
}
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: var(--r-full);
  background: rgba(201, 168, 76, 0.1);
  backdrop-filter: blur(8px);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  width: fit-content;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.badge-pulse {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.5;
  }
}

/* Heading */
.hero-title {
  animation: fadeUp 0.9s var(--ease) 0.35s both;
  margin-bottom: 1.5rem;
}
/* .hero-title em { font-style: normal; color: var(--teal); display: block; } */
.hero-title em {
  font-style: normal;
  color: var(--teal);
}

/* Description */
.hero-desc {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 50ch;
  line-height: 1.75;
  margin-bottom: 1.4rem;
  animation: fadeUp 1s var(--ease) 0.5s both;
}

/* CTA row */
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease) 0.65s both;
  margin-bottom: 1.5rem;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: fadeUp 1s var(--ease) 0.8s both;
  position: relative;
  z-index: 5;
}
.h-stat {
  text-align: center;
}
.h-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
}
.h-stat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  white-space: nowrap;
}
.h-stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ── VESSEL CARD (right side) ── */
.vessel-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 0.9rem;
  width: 100%;
  max-width: 340px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(0, 180, 216, 0.15);
  animation: fadeUp 1s var(--ease) 0.5s both;
  position: relative;
  z-index: 1;
}

/* Card header */
.vc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}
.vc-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
}
.vc-live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 1.5s ease-in-out infinite;
}
.vc-time {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Courier New", monospace;
}

/* Route visualization */
.vc-route {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0, 180, 216, 0.12);
}
.route-point {
  flex-shrink: 0;
}
.rp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 auto 0.4rem;
  border: 2px solid;
}
.origin-dot {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 8px rgba(0, 180, 216, 0.6);
}
.dest-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}
.rp-code {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.08em;
  text-align: center;
}
.rp-name {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  white-space: nowrap;
}
.text-right .rp-code,
.text-right .rp-name {
  text-align: right;
}

/* Route track */
.route-track-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 32px;
}
.route-track-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0.4;
}
.route-dots {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.route-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
.route-ship-icon {
  position: absolute;
  font-size: 1.1rem;
  top: 50%;
  transform: translateY(-60%);
  animation: sailShip 4s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 6px rgba(0, 180, 216, 0.8));
  z-index: 1;
}
@keyframes sailShip {
  from {
    left: 8%;
  }
  to {
    left: 72%;
  }
}

/* Details grid */
.vc-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.vc-d {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 0.7rem 1rem;
}
.vc-d-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.2rem;
}
.vc-d-val {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 500;
}
.vc-enroute {
  color: #22c55e;
  font-size: 0.82rem;
}

/* Progress bar */
.vc-prog-wrap {
}
.vc-prog-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}
.vc-prog-pct {
  color: var(--teal);
  font-weight: 600;
}
.vc-prog-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--r-full);
  overflow: hidden;
}
.vc-prog-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: var(--r-full);
  transition: width 2s var(--ease);
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
}

/* ── FLOATING MINI CARDS ── */
.fc {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 0.55rem 0.9rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 340px;
}
.fc-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.fc-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1;
}
.fc-lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}

/* Float animations */
.fc-1 {
  animation: floatUp 3.5s ease-in-out infinite;
}
.fc-2 {
  animation: floatUp 3.5s ease-in-out infinite 1.2s;
}
.fc-3 {
  animation: floatUp 3.5s ease-in-out infinite 2.4s;
}
@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(0, 180, 216, 0.7), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Wave bottom */
.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}
.wave-bottom svg {
  display: block;
  width: 100%;
}

/* Responsive hero */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 8rem;
  }
  .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .vessel-card {
    max-width: 100%;
  }
  .fc {
    max-width: calc(33% - 1rem);
  }
}
@media (max-width: 768px) {
  .hero-content {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
  .hero-right {
    display: none;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    justify-content: center;
  }
  .hero-stats {
    gap: 1.2rem;
  }
  .h-stat-divider {
    display: none;
  }
  .h-stat-num {
    font-size: 2rem;
  }
}

/* Wave Bottom Divider */
.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
}
.wave-bottom svg {
  display: block;
  width: 100%;
}

/* ───────────────────────────────
   SERVICES SECTION (home)
─────────────────────────────── */
.services-section {
  background: var(--off-white);
}
.svc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  border: 1px solid rgba(0, 180, 216, 0.12);
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--mid) var(--ease);
  cursor: default;
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--ocean));
  opacity: 0;
  transition: opacity var(--mid) var(--ease);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}
.svc-card:hover::before {
  opacity: 1;
}
.svc-card:hover .svc-icon {
  border-color: rgba(0, 180, 216, 0.3);
}
.svc-card:hover h3 {
  color: var(--white);
}
.svc-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}
.svc-card:hover .svc-link {
  color: var(--gold);
}
.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(0, 180, 216, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
  transition: border-color var(--mid);
}
.svc-card h3 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
  transition: color var(--mid);
}
.svc-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.75;
  position: relative;
  z-index: 1;
  transition: color var(--mid);
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--teal);
  position: relative;
  z-index: 1;
  transition:
    color var(--mid),
    gap var(--mid);
}
.svc-link:hover {
  gap: 0.9rem;
}

/* ───────────────────────────────
   STATS SECTION
─────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -5%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.14), transparent 65%);
}
.stats-section::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -5%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 65%);
}
.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  transition: all var(--mid) var(--ease);
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-6px);
  border-color: rgba(0, 180, 216, 0.35);
}
.stat-icon {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3.6rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-lbl {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-top: 0.5rem;
}

/* ───────────────────────────────
   ABOUT PREVIEW SECTION
─────────────────────────────── */
.about-prev-section {
  background: var(--white);
}
.about-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--slow) var(--ease);
}
.about-img-wrap:hover img {
  transform: scale(1.04);
}
.about-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-radius: var(--r-lg);
  padding: 1.2rem 1.8rem;
  box-shadow: var(--sh-md);
  text-align: center;
}
.ab-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
}
.ab-num span {
  color: var(--gold);
}
.ab-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gray-600);
  margin-top: 0.2rem;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--gray-600);
}
.about-list li::before {
  content: "✦";
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.7rem;
}

/* ───────────────────────────────
   WHY CHOOSE US
─────────────────────────────── */
/* .why-section {
  background: var(--light-blue);
} */

/* ───────────────────────────────
   WHY CHOOSE US — Animated Background
─────────────────────────────── */
.why-section {
  background: linear-gradient(
    -45deg,
    #c8e8f5,
    #e3f4f9,
    #b8dff0,
    #eef8ff,
    #cde9f6,
    #e0f3fa
  );
  background-size: 400% 400%;
  animation: whyGradient 10s ease infinite;
  position: relative;
  overflow: hidden;
}

/* Moving dot pattern */
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(0, 180, 216, 0.22) 1.5px,
    transparent 1.5px
  );
  background-size: 28px 28px;
  animation: dotDrift 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Teal glow orb — top right */
.why-section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 180, 216, 0.2) 0%,
    rgba(201, 168, 76, 0.08) 45%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  animation: whyOrb 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Content always above */
.why-section .container {
  position: relative;
  z-index: 1;
}

/* Gold glow orb — bottom left */
.why-section .container::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.15) 0%,
    rgba(0, 180, 216, 0.06) 50%,
    transparent 70%
  );
  bottom: -150px;
  left: -120px;
  animation: whyOrbGold 14s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes whyGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes dotDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 28px 28px;
  }
}

@keyframes whyOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-40px, 35px) scale(1.12);
    opacity: 1;
  }
}

@keyframes whyOrbGold {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(35px, -30px) scale(1.1);
  }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  border: 1px solid rgba(0, 180, 216, 0.12);
  box-shadow: var(--sh-sm);
  display: flex;
  gap: 1.2rem;
  transition: all var(--mid) var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--teal);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--navy), var(--ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-title {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}
.why-text {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.72;
}

/* ───────────────────────────────
   TESTIMONIALS
─────────────────────────────── */
.testi-section {
  background: var(--white);
}
.testi-slider-wrap {
  overflow: hidden;
}
.testi-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.testi-card {
  min-width: calc(33.333% - 1.5rem);
  margin: 0 0.75rem;
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  border: 1px solid rgba(0, 180, 216, 0.1);
  box-shadow: var(--sh-sm);
  flex-shrink: 0;
  transition: all var(--mid) var(--ease);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.testi-quote {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.82;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.88rem;
}
.testi-role {
  font-size: 0.75rem;
  color: var(--gray-400);
}
.testi-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(0, 180, 216, 0.3);
  color: var(--ocean);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--fast);
}
.testi-btn:hover {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}

/* ───────────────────────────────
   CTA BANNER
─────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920&q=40")
    center/cover;
  opacity: 0.06;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.62);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ───────────────────────────────
   MARQUEE BAND (Footer top)
─────────────────────────────── */
.marquee-band {
  background: var(--navy);
  padding: 1.6rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 180, 216, 0.12);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
  transition: color var(--fast);
}
.marquee-track span:hover {
  color: var(--gold);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ───────────────────────────────
   FOOTER
─────────────────────────────── */
.footer {
  background: var(--deep);
}
.footer-main {
  padding: 5rem 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
}
.f-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.f-logo span {
  color: var(--gold);
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.8;
  max-width: 28ch;
  margin-bottom: 1.5rem;
}
.f-socials {
  display: flex;
  gap: 0.8rem;
}
.f-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--fast);
}
.f-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.f-col h4 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.3rem;
}
.f-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.f-col ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
  transition:
    color var(--fast),
    padding-left var(--fast);
}
.f-col ul a:hover {
  color: var(--gold);
  padding-left: 5px;
}
.f-col p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.f-newsletter {
  display: flex;
  border-radius: var(--r-full);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.f-newsletter input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
}
.f-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.f-newsletter button {
  padding: 0.7rem 1.2rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  transition: background var(--fast);
}
.f-newsletter button:hover {
  background: var(--gold-light);
}
.f-contact-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.3rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
}
.f-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.f-bottom-links a {
  color: rgba(255, 255, 255, 0.28);
  transition: color var(--fast);
}
.f-bottom-links a:hover {
  color: var(--gold);
}

/* ───────────────────────────────
   PAGE HERO (inner pages)
─────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 10rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.bg-about .page-hero-overlay {
  background-image: url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?w=1920&q=60");
}
.bg-services .page-hero-overlay {
  background-image: url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920&q=60");
}
.bg-contact .page-hero-overlay {
  background-image: url("/assets/images/contact-banner.jpg");
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--fast);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
}
.breadcrumb .current {
  color: var(--teal);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.page-hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 55ch;
  line-height: 1.85;
}

/* ───────────────────────────────
   ABOUT PAGE SPECIFIC
─────────────────────────────── */
.story-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.story-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.mission-section {
  background: var(--light-blue);
}
.mission-grid {
  gap: 2rem;
}
.mission-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(0, 180, 216, 0.12);
  box-shadow: var(--sh-md);
  transition: all var(--mid) var(--ease);
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.mission-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}
.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.mission-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.85;
}

.values-section {
  background: var(--off-white);
}
.value-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.4rem;
  text-align: center;
  border: 1px solid rgba(0, 180, 216, 0.1);
  box-shadow: var(--sh-sm);
  transition: all var(--mid) var(--ease);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--teal);
}
.value-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--navy), var(--ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.3rem;
}
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.value-card p {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.78;
}

.exp-bars {
  margin-top: 2rem;
}
.exp-item {
  margin-bottom: 1.5rem;
}
.exp-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}
.exp-track {
  height: 8px;
  background: var(--light-blue);
  border-radius: var(--r-full);
  overflow: hidden;
}
.exp-fill {
  height: 100%;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--ocean), var(--teal));
  width: 0%;
  transition: width 1.4s var(--ease);
}

.milestones-section {
  background: var(--light-blue);
}
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.milestone-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(0, 180, 216, 0.1);
  box-shadow: var(--sh-sm);
  transition: all var(--mid) var(--ease);
}
.milestone-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.ms-year {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.ms-title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.milestone-card p {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ───────────────────────────────
   SERVICES PAGE SPECIFIC
─────────────────────────────── */
.svc-card-lg {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid rgba(0, 180, 216, 0.1);
  margin-bottom: 3rem;
  transition: all var(--mid) var(--ease);
}
.svc-card-lg:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.svc-card-lg.reverse {
  direction: rtl;
}
.svc-card-lg.reverse > * {
  direction: ltr;
}
.svc-lg-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.svc-lg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--slow) var(--ease);
}
.svc-card-lg:hover .svc-lg-img img {
  transform: scale(1.06);
}
.svc-lg-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-lg-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: lightblue;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.svc-lg-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.svc-lg-text {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.svc-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.svc-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--gray-600);
}
.svc-features li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.6rem;
}

/* Process Section */
.process-section {
  background: var(--off-white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr) repeat(4, 0.3fr);
  align-items: start;
  gap: 0;
  overflow: auto;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
}
.process-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.pi-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--teal);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.pi-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 6px rgba(0, 180, 216, 0.12);
}
.process-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.process-item p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  margin-top: 4.5rem;
  position: relative;
}
.process-connector::after {
  content: "›";
  position: absolute;
  right: -8px;
  top: -10px;
  font-size: 1.2rem;
  color: var(--teal);
}

/* ───────────────────────────────
   CONTACT PAGE SPECIFIC
─────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.ci-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem;
  background: var(--off-white);
  border-radius: var(--r-md);
  border: 1px solid rgba(0, 180, 216, 0.1);
  box-shadow: var(--sh-sm);
  margin-bottom: 1.1rem;
  transition: all var(--mid) var(--ease);
}
.ci-card:hover {
  transform: translateX(6px);
  box-shadow: var(--sh-md);
  border-color: var(--teal);
}
.ci-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--navy), var(--ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ci-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}
.ci-value {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
}
.ci-sub {
  font-size: 0.8rem;
  color: var(--gray-600);
}
.offices-title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
  margin: 1.5rem 0 0.8rem;
  letter-spacing: 0.06em;
}
.offices-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.office-tag {
  padding: 0.35rem 0.9rem;
  background: var(--off-white);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  color: var(--ocean);
  transition: all var(--fast);
}
.office-tag:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 3rem;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(0, 180, 216, 0.1);
}
.form-heading {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-subheading {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.fg {
  margin-bottom: 1.2rem;
}
.fg label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(0, 180, 216, 0.2);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--off-white);
  outline: none;
  transition: all var(--fast);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}
.fg input.error,
.fg select.error,
.fg textarea.error {
  border-color: #ef4444;
}
.fe {
  display: none;
  font-size: 0.74rem;
  color: #ef4444;
  margin-top: 0.3rem;
}
.fg.has-error .fe {
  display: block;
}
.fg textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show {
  display: block;
}
.form-success-icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.form-success p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Map */
.map-wrap {
  border-radius: var(--r-xl);
  height: 420px;
  overflow: hidden;
  position: relative;
}
.map-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.45) brightness(0.88);
}
.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 27, 51, 0.5), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-radius: var(--r-lg);
  padding: 1.5rem 2.2rem;
  text-align: center;
  box-shadow: var(--sh-md);
}
.map-badge h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.map-badge p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* FAQ */
.faq-section {
  background: var(--off-white);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid rgba(0, 180, 216, 0.1);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.6rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  transition: background var(--fast);
  gap: 1rem;
}
.faq-q:hover {
  background: var(--off-white);
}
.faq-arr {
  font-size: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
  flex-shrink: 0;
  transition: all var(--mid) var(--ease);
}
.faq-item.open .faq-arr {
  transform: rotate(180deg);
  background: var(--ocean);
  color: var(--white);
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--slow) var(--ease),
    padding var(--mid) var(--ease);
  padding: 0 1.6rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.82;
}
.faq-item.open .faq-ans {
  max-height: 300px;
  padding: 0.8rem 1.6rem 1.4rem;
}

/* ───────────────────────────────
   SCROLL REVEAL
─────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.72s var(--ease),
    transform 0.72s var(--ease);
}
[data-reveal="up"] {
  transform: translateY(40px);
}
[data-reveal="left"] {
  transform: translateX(-40px);
}
[data-reveal="right"] {
  transform: translateX(40px);
}
[data-reveal="scale"] {
  transform: scale(0.9);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-delay="1"] {
  transition-delay: 0.1s;
}
[data-delay="2"] {
  transition-delay: 0.22s;
}
[data-delay="3"] {
  transition-delay: 0.34s;
}
[data-delay="4"] {
  transition-delay: 0.46s;
}
[data-delay="5"] {
  transition-delay: 0.58s;
}

/* ───────────────────────────────
   KEYFRAMES
─────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ───────────────────────────────
   RESPONSIVE — TABLET
─────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .milestone-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .svc-card-lg {
    grid-template-columns: 1fr;
  }
  .svc-lg-img {
    min-height: 260px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }
  .process-connector {
    display: none;
  }
  .process-item {
    min-width: calc(50% - 2rem);
  }
}

/* ───────────────────────────────
   RESPONSIVE — MOBILE
─────────────────────────────── */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .display-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  /* ── HERO MOBILE FIX ── */
  .hero {
    max-height: none;
    min-height: 100svh;
    align-items: flex-start;
  }
  .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 3rem;
    align-items: flex-start;
  }
  .hero-right {
    display: none;
  }
  .hero-scroll-hint {
    display: none;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-ctas .btn {
    justify-content: center;
    width: 100%;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.5rem;
  }
  .h-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.6rem 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .h-stat-divider {
    display: none;
  }
  .h-stat-num {
    font-size: 1.7rem;
  }
  .h-stat-lbl {
    font-size: 0.62rem;
  }

  /* ── REST OF MOBILE ── */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .testi-card {
    min-width: calc(100% - 1.5rem);
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 1.8rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .f-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .about-img-wrap img {
    height: 300px;
  }
  .page-hero {
    padding: 8rem 0 4rem;
  }
  .milestone-grid {
    grid-template-columns: 1fr;
  }
  .svc-card-lg.reverse {
    direction: ltr;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .process-item {
    min-width: 100%;
  }
}

/* number that define our reach responvise correct  */
.stat-card {
  padding: 1.6rem 0.8rem;
}

.stat-num {
  font-size: 2.8rem;
}

.stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
/* end number that define our reach responvise correct  */

/* ───────────────────────────────
   ULTRA-WIDE
─────────────────────────────── */
@media (min-width: 1440px) {
  .container {
    max-width: 1380px;
  }
}

/* ───────────────────────────────
   REDUCED MOTION
─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 180px;
  height: auto;
  object-fit: contain;
}
