:root {
  --navy: #1a237e;
  --sky: #29b6f6;
  --white: #ffffff;
  --bg: #f7fafc;
  --heading: #0f172a;
  --text: #475569;
  --success: #16a34a;
  --yellow: #ffd447;
  --line: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 18px 50px rgba(26, 35, 126, 0.12);
  --gradient: linear-gradient(135deg, #1a237e 0%, #1976d2 48%, #29b6f6 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: 0.25s ease; }
button, input, textarea { font: inherit; }

h1, h2, h3, h4, .btn {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--heading);
}

h1 { font-size: clamp(2.6rem, 6vw, 5.9rem); line-height: 0.98; letter-spacing: 0; font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.08; font-weight: 800; margin-bottom: 1rem; }
h3 { font-size: 1.15rem; font-weight: 700; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.page-gutter { padding-left: clamp(1rem, 4vw, 5rem); padding-right: clamp(1rem, 4vw, 5rem); }
.section { padding: clamp(4rem, 8vw, 8rem) 0; }
section, footer, #quote, #booking { scroll-margin-top: 135px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--yellow);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; border-radius: 99px; background: currentColor; }
.text-blue { color: var(--sky); }

.btn-brand {
  border: 0;
  color: var(--white);
  background: var(--gradient);
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(41, 182, 246, 0.28);
}
.btn-brand:hover, .btn-brand:focus { color: var(--white); transform: translateY(-2px); box-shadow: 0 18px 44px rgba(26, 35, 126, 0.32); }

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-heading.light h2, .section-heading.light p { color: var(--white); }
.best-section .section-heading {
  max-width: 1120px;
}
.best-heading {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.05rem, 3.8vw, 3.65rem);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}
.best-heading span {
  display: block;
}
.best-heading span:first-child {
  white-space: nowrap;
}
.best-heading em {
  color: var(--sky);
  font-style: normal;
  font-weight: 800;
}
.best-section .section-heading > p:last-child {
  max-width: 920px;
  margin: 1.15rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
}

/* Header */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 1000; }
.top-strip {
  background: var(--navy);
  color: var(--white);
  font-size: 0.84rem;
}
.top-strip__inner, .top-strip__info, .top-strip__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-strip__inner { padding: 0.38rem 0; }
.top-strip a:hover { color: var(--sky); }
.top-strip i { color: var(--sky); margin-right: 0.35rem; }
.top-call {
  background: var(--success);
  padding: 0.34rem 0.78rem;
  border-radius: 999px;
}
.top-call i { color: var(--white); }

.trust-marquee {
  overflow: hidden;
  background: linear-gradient(90deg, #eef8ff, #fff5bd, #eef8ff);
  border-bottom: 1px solid rgba(255, 212, 71, 0.35);
}
.trust-marquee__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: 0.34rem 0;
  color: var(--navy);
  font-weight: 700;
  animation: marquee 32s linear infinite;
}
.trust-marquee__track span::before { content: "⚠ "; color: #d97706; }
@keyframes marquee { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

.main-nav {
  padding: 0.42rem 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  transition: 0.3s ease;
}
.main-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}
.navbar-brand img { width: clamp(170px, 15vw, 245px); height: auto; background: rgba(255,255,255,0.86); border-radius: 10px; padding: 0.24rem 0.52rem; }
.main-nav .btn-brand { padding: 0.72rem 1.25rem; }
.nav-link {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.main-nav.is-scrolled .nav-link { color: var(--heading); }
.nav-link:hover, .nav-link:focus { color: var(--sky); }
.nav-link.active { color: var(--sky); }
.navbar-toggler { background: var(--white); border: 0; }
.contact-page .main-nav {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 34px rgba(15,23,42,0.08);
}
.contact-page .nav-link {
  color: var(--heading);
}
.contact-page .nav-link:hover,
.contact-page .nav-link:focus,
.contact-page .nav-link.active {
  color: var(--sky);
}

/* Hero */
.hero-section { position: relative; overflow: hidden; background: var(--navy); }
.hero-swiper { position: relative; z-index: 1; }
.hero-slide {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--navy);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.88), rgba(26, 35, 126, 0.54), rgba(3, 7, 18, 0.42)),
    radial-gradient(circle at 15% 65%, rgba(41, 182, 246, 0.25), transparent 34%);
}
.hero-content { position: relative; z-index: 2; padding-top: 8rem; padding-bottom: 3rem; }
.hero-content .col-lg-7 { max-width: 50%; }
.hero-content h1, .hero-title {
  color: var(--white);
  font-size: clamp(2.25rem, 3.85vw, 3.95rem);
  line-height: 1.12;
  max-width: 760px;
}
.hero-content .eyebrow { font-size: 0.74rem; margin-bottom: 0.65rem; }
.hero-copy { color: rgba(255, 255, 255, 0.84); font-size: clamp(0.96rem, 1.2vw, 1.05rem); max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }
.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  padding: 0.82rem 1.45rem;
  box-shadow: 0 14px 34px rgba(3, 7, 18, 0.18);
}
.btn-outline-light i { color: currentColor; margin-right: 0.4rem; }
.btn-outline-light:hover, .btn-outline-light:focus {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}
.hero-swiper .swiper-pagination { z-index: 5; }
.swiper-pagination-bullet { background: var(--white); opacity: 0.55; }
.swiper-pagination-bullet-active { background: var(--sky); opacity: 1; }

.hero-form-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.hero-form-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 8rem;
  padding-bottom: 3rem;
}
.hero-quote-card {
  width: min(100%, 610px);
  pointer-events: auto;
  transform: translateY(1.6rem);
}

.quote-card {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}
.quote-card h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); color: var(--white); }
.quote-card p { color: rgba(255,255,255,0.82); }
.quote-card .form-control {
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 12px;
  min-height: 3.15rem;
  background: rgba(255,255,255,0.94);
}
.form-badge {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-weight: 800;
  font-size: 0.82rem;
}
.quote-card--light { background: rgba(255,255,255,0.82); border-color: rgba(26,35,126,0.1); }
.quote-card--light h2 {
  color: var(--navy);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.55rem, 1.9vw, 2rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1.16;
}
.quote-card--light .form-control { margin-bottom: 0.85rem; border-color: var(--line); }

/* About and cards */
.about-section {
  background:
    linear-gradient(90deg, #eef2f7 0 18%, #ffffff 18% 100%);
  padding-top: clamp(3rem, 6vw, 5.5rem);
}
.about-intro-row { align-items: center; }
.image-stack { position: relative; max-width: 520px; }
.image-stack img {
  width: 100%;
  height: clamp(280px, 29vw, 410px);
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}
.trusted-card {
  position: relative;
  width: min(80%, 360px);
  margin: -1.8rem auto 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.13);
}
.trusted-card i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--gradient);
}
.trusted-card strong {
  display: block;
  color: var(--heading);
  font: 700 1rem/1.3 "Poppins", sans-serif;
}
.trusted-card span { display: block; color: var(--text); font-size: 0.92rem; font-style: italic; }
.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  color: #e11d1d;
  font-weight: 700;
}
.about-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: #e11d1d;
}
.about-section h2 {
  max-width: 850px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.about-subtitle {
  margin-bottom: 0.7rem;
  color: var(--heading);
  font-size: 1rem;
}
.about-section p { max-width: 860px; margin-bottom: 0.75rem; }
.mission-grid, .counter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.about-mission-row { margin-top: clamp(2rem, 4vw, 3.25rem); }
.about-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.2rem;
}
.mission-grid article, .feature-card, .timeline-grid article, .review-card, .blog-grid article {
  border: 1px solid rgba(255,255,255,0.68);
  border-radius: 16px;
  background: rgba(255,255,255,0.74);
  box-shadow: var(--soft-shadow);
}
.mission-grid article { padding: 1.35rem; border-radius: 12px; }
.mission-grid i, .feature-card i { color: var(--sky); font-size: 1.45rem; margin-bottom: 0.7rem; }
.about-mission-row h3 { font-size: 1.18rem; margin-bottom: 0.45rem; }
.about-mission-row p { max-width: 100%; margin-bottom: 0; }
.counter-grid div, .achievement-grid div {
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}
.counter-grid strong, .achievement-grid strong { display: block; color: var(--navy); font: 800 1.65rem/1 "Poppins", sans-serif; }
.counter-grid strong::after { content: "+"; }
.about-bottom-row .counter-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 0; }
.about-btn { border-radius: 4px; background: #e21b10; box-shadow: 0 14px 30px rgba(226, 27, 16, 0.18); white-space: nowrap; }
.about-btn:hover, .about-btn:focus { background: #b9150c; box-shadow: 0 18px 38px rgba(226, 27, 16, 0.25); }

.best-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(41, 182, 246, 0.16), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(26, 35, 126, 0.1), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #edf4fb 52%, #f7fafc 100%);
}
.best-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26, 35, 126, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 35, 126, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}
.best-section .page-gutter {
  position: relative;
  z-index: 1;
}

.feature-grid, .service-grid, .timeline-grid, .branch-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.feature-card { padding: 1.6rem; transition: 0.28s ease; }
.feature-card:hover {
  color: rgba(255, 255, 255, 0.84);
  background: #1A237E;
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(26, 35, 126, 0.32);
}
.feature-card:hover h3,
.feature-card:hover i {
  color: var(--white);
}
.feature-card:hover p {
  color: rgba(255, 255, 255, 0.84);
}
.branch-grid article:hover, .blog-grid article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.services-section { background: #eef8ff; }
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(26, 35, 126, 0.06);
  box-shadow: var(--soft-shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(41, 182, 246, 0.18), transparent 34%, rgba(26, 35, 126, 0.14));
  opacity: 0;
  transition: opacity 0.32s ease;
}
.service-card img { width: 100%; aspect-ratio: 1.4 / 1; object-fit: cover; transition: transform 0.45s ease, filter 0.45s ease; }
.service-card div { position: relative; z-index: 1; padding: 1.35rem; }
.service-card i {
  color: var(--navy);
  background: #e6f7ff;
  padding: 0.8rem;
  border-radius: 14px;
  margin-bottom: 0.85rem;
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(26, 35, 126, 0.22);
  box-shadow: 0 30px 80px rgba(26, 35, 126, 0.18);
}
.service-card:hover::after { opacity: 1; }
.service-card:hover img {
  transform: scale(1.065);
  filter: saturate(1.08) contrast(1.04);
}
.service-card:hover i {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-4px) rotate(-3deg);
  box-shadow: 0 16px 30px rgba(26, 35, 126, 0.24);
}
.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.7rem;
  margin-top: 0.45rem;
  min-height: 42px;
  padding: 0.58rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(26, 35, 126, 0.12);
}
.service-card a:first-of-type {
  color: var(--white);
  background: var(--navy);
}
.service-card a:first-of-type:hover,
.service-card a:first-of-type:focus {
  color: var(--white);
  background: #12195d;
  transform: translateY(-2px);
}
.service-card a:last-child {
  color: var(--success);
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.22);
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.1);
}
.service-card a:last-child:hover,
.service-card a:last-child:focus {
  color: var(--white);
  background: var(--success);
  transform: translateY(-2px);
}

/* Timelines */
.why-section {
  background:
    linear-gradient(135deg, rgba(26,35,126,0.96), rgba(6,15,48,0.94)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
}
.why-heading {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0;
}
.why-heading span {
  display: block;
  white-space: nowrap;
}
.timeline-grid article {
  position: relative;
  padding: 1.6rem;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px);
}
.timeline-grid h3 { color: var(--white); }
.timeline-grid span { color: var(--yellow); font: 800 2rem/1 "Poppins", sans-serif; }
.timeline-grid i { float: right; color: var(--sky); font-size: 1.6rem; }

.premium-accordion .accordion-item {
  border: 0;
  margin-bottom: 1.15rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}
.faq-heading {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.1rem, 3.6vw, 3.55rem);
  line-height: 1.12;
  font-weight: 800;
  white-space: nowrap;
  margin-bottom: 1.6rem;
}
.premium-accordion .accordion-button {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--heading);
  background: var(--white);
  padding: 1.35rem 1.55rem;
}
.premium-accordion .accordion-button:not(.collapsed) { color: var(--navy); background: #eef8ff; }
.premium-accordion .accordion-body {
  padding: 1.35rem 1.55rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.branches-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.78) 0%, rgba(225, 240, 250, 0.86) 48%, rgba(247, 250, 252, 0.92) 100%),
    linear-gradient(120deg, rgba(26, 35, 126, 0.24), rgba(41, 182, 246, 0.14)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1900&q=80") center/cover fixed;
}
.branches-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  background:
    radial-gradient(circle at 16% 20%, rgba(41, 182, 246, 0.22), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(26, 35, 126, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(247, 250, 252, 0.92) 0%, rgba(247, 250, 252, 0.68) 45%, rgba(247, 250, 252, 0.9) 100%);
}
.branches-section::after {
  content: "GLOBE SKY MOVING";
  position: absolute;
  right: -1rem;
  bottom: 3rem;
  color: rgba(26, 35, 126, 0.045);
  font: 800 clamp(3rem, 9vw, 9rem)/1 "Inter", sans-serif;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}
.branches-section .page-gutter {
  position: relative;
  z-index: 1;
}
.branch-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--navy);
}
.branch-heading i {
  color: var(--sky);
  font-size: 0.82em;
}

.branch-grid article, .blog-grid article {
  overflow: hidden;
  background: var(--white);
  transition: 0.28s ease;
}
.branch-grid article {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(26, 35, 126, 0.08);
  box-shadow: 0 22px 60px rgba(26, 35, 126, 0.12);
}
.branch-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 34%, rgba(5, 8, 22, 0.74) 100%);
  opacity: 0.72;
  transition: opacity 0.3s ease;
}
.branch-grid img, .blog-grid img { width: 100%; aspect-ratio: 1.45 / 1; object-fit: cover; transition: 0.35s ease; }
.branch-grid img { aspect-ratio: 1.35 / 1; }
.branch-grid article:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 90px rgba(26, 35, 126, 0.22);
}
.branch-grid article:hover::before { opacity: 0.88; }
.branch-grid article:hover img { transform: scale(1.08); filter: saturate(1.12) contrast(1.04); }
.branch-grid div, .blog-grid div { padding: 1.3rem; }
.branch-grid div {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.15rem;
  z-index: 2;
  padding: 0;
}
.branch-grid i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.8rem;
  color: var(--white);
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(41, 182, 246, 0.24);
}
.branch-grid h3 {
  color: var(--white);
  margin-bottom: 0.65rem;
}
.branch-grid a, .blog-grid a { color: var(--navy); font-weight: 800; }
.branch-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(3, 7, 18, 0.16);
}
.branch-grid a:hover {
  color: var(--white);
  background: var(--sky);
}

.keyword-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(26, 35, 126, 0.1);
  border-bottom: 1px solid rgba(26, 35, 126, 0.1);
  background:
    linear-gradient(90deg, rgba(26, 35, 126, 0.96), rgba(25, 118, 210, 0.94), rgba(41, 182, 246, 0.92));
}
.keyword-marquee__track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 0.78rem 0;
  animation: marquee 34s linear infinite;
}
.keyword-marquee__track span {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
}
.keyword-marquee__track span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 1rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 212, 71, 0.18);
}

.work-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}
.work-heading {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 3.65vw, 3.35rem);
  line-height: 1.12;
  font-weight: 800;
  white-space: nowrap;
}
.work-steps::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 7.8rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(41,182,246,0.7), rgba(26,35,126,0.35), transparent);
}
.work-steps article {
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}
.work-step-media {
  position: relative;
  width: min(100%, 220px);
  margin: 0 auto 1.55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 0.8rem;
  background: var(--white);
  box-shadow: 0 22px 62px rgba(26, 35, 126, 0.14);
}
.work-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.work-step-media span {
  position: absolute;
  left: -0.35rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 4.35rem;
  height: 4.35rem;
  color: var(--white);
  background: #ef1b24;
  border-radius: 50%;
  font-weight: 800;
  box-shadow: 0 0 0 10px rgba(239, 27, 36, 0.2), 0 15px 34px rgba(239, 27, 36, 0.28);
}
.work-steps article:hover .work-step-media img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}
.work-steps h3 {
  font-size: 1.22rem;
  margin-bottom: 0.7rem;
}
.work-steps p {
  max-width: 300px;
  margin: 0 auto;
  color: var(--text);
}

.achievements {
  padding: 5rem 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3,7,18,0.86), rgba(26,35,126,0.78)),
    url("https://images.unsplash.com/photo-1553413077-190dd305871c?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
}
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.achievement-grid div {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  text-align: center;
  backdrop-filter: blur(16px);
}
.achievement-grid strong { color: var(--white); }
.achievement-grid strong[data-count="98"]::after { content: "%"; }
.achievement-grid strong[data-count="15"]::after, .achievement-grid strong[data-count="5000"]::after, .achievement-grid strong[data-count="150"]::after { content: "+"; }

.gallery-grid {
  columns: 4 220px;
  column-gap: 1rem;
}
.gallery-heading {
  font-family: "Inter", system-ui, sans-serif;
  max-width: 1180px;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(1.85rem, 2.75vw, 2.7rem);
  line-height: 1.12;
  font-weight: 750;
  white-space: nowrap;
}

.gallery-heading span {
  color: var(--secondary);
}
.gallery-grid button {
  width: 100%;
  padding: 0;
  margin: 0 0 1rem;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--soft-shadow);
}
.gallery-grid img { width: 100%; transition: 0.35s ease; }
.gallery-grid button:hover img { transform: scale(1.08); }

.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3,7,18,0.9) 0%, rgba(26,35,126,0.78) 55%, rgba(26,35,126,0.92) 100%),
    url("https://images.unsplash.com/photo-1553413077-190dd305871c?auto=format&fit=crop&w=1900&q=80") center/cover fixed;
}
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(44,181,233,0.18), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  pointer-events: none;
}
.testimonials-section .container-fluid,
.testimonials-section .review-marquee {
  position: relative;
  z-index: 1;
}
.testimonials-section .eyebrow {
  color: #7dd3fc;
}
.reviews-heading {
  font-size: clamp(1.9rem, 3vw, 3rem);
  color: var(--white);
  white-space: nowrap;
}
.review-marquee {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding-bottom: 0.5rem;
}
.review-row {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.review-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  will-change: transform;
  animation: reviewScrollLeft 38s linear infinite;
}
.review-row--right .review-track {
  animation-name: reviewScrollRight;
}
.review-row:hover .review-track {
  animation-play-state: paused;
}
.review-card {
  width: clamp(280px, 24vw, 390px);
  min-height: 205px;
  padding: 1.35rem;
  background: #ffffff;
  border: 1.5px solid rgba(44,181,233,0.52);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: #2cb5e9;
  box-shadow: 0 24px 60px rgba(44, 181, 233, 0.22);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.google-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #4285f4;
  background: linear-gradient(180deg, #ffffff, #eef8ff);
  border: 1px solid rgba(44,181,233,0.32);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(66, 133, 244, 0.16);
}
.review-card h3 {
  margin: 0;
  font-size: 1.04rem;
}
.review-card small {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 0.82rem;
}
.stars {
  color: #fbbc04;
  letter-spacing: 1px;
  margin-bottom: 0.65rem;
  text-shadow: 0 1px 0 rgba(251,188,4,0.18);
}
.review-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
  font-size: 0.98rem;
}
@keyframes reviewScrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes reviewScrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.blog-section { background: #ffffff; }
.blog-heading {
  max-width: 920px;
  margin-inline: auto;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 760;
  text-align: center;
  white-space: nowrap;
}
.blog-grid span { color: var(--sky); font-weight: 800; font-size: 0.85rem; }

.routes-section { background: linear-gradient(180deg, #eef8ff, #ffffff); }
.routes-heading {
  max-width: 980px;
  margin-inline: auto;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 760;
  text-align: center;
  white-space: nowrap;
  color: var(--heading);
}
.routes-heading span {
  color: var(--secondary);
}
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.routes-grid a {
  padding: 0.78rem 1rem;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15,23,42,0.06);
  color: var(--heading);
  font-weight: 700;
}
.routes-grid a:hover { color: var(--white); background: var(--gradient); transform: translateY(-2px); }
.routes-map {
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(44,181,233,0.28);
  border-radius: 18px;
  box-shadow: 0 24px 58px rgba(15,23,42,0.12);
}
.routes-map iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

/* Contact page */
.page-hero {
  position: relative;
  min-height: 210px;
  display: grid;
  place-items: center;
  margin-top: 7.35rem;
  padding: 3.4rem 0 3.2rem;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, #101a5f 0%, #16248a 48%, #0b6fb3 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 90px),
    linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 90px);
  opacity: 0.24;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 0.8rem;
}
.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.96rem;
}
.breadcrumb-nav a {
  color: var(--white);
}
.breadcrumb-nav a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 0.9rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  vertical-align: middle;
}
.breadcrumb-nav a:hover { color: var(--yellow); }
.breadcrumb-nav span { color: rgba(255,255,255,0.9); }
.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 10%, rgba(41,182,246,0.14), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(247,250,252,0.92) 48%, rgba(236,248,255,0.88) 100%);
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 1.25rem clamp(1rem, 4vw, 5rem) auto;
  height: 180px;
  pointer-events: none;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(26,35,126,0.05), rgba(41,182,246,0.08)),
    repeating-linear-gradient(135deg, rgba(26,35,126,0.045) 0 1px, transparent 1px 18px);
  opacity: 0.72;
}
.contact-section .container-fluid {
  position: relative;
  z-index: 1;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
  align-items: start;
}
.contact-content h2, .contact-map-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}
.contact-content > p:not(.eyebrow), .contact-map-copy p {
  font-size: 1rem;
  max-width: 720px;
}
.contact-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.contact-info-list a,
.contact-info-list div {
  display: grid;
  gap: 0.45rem;
  min-height: 175px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15,23,42,0.07);
}
.contact-info-list a:hover {
  border-color: rgba(41,182,246,0.45);
  transform: translateY(-4px);
  box-shadow: var(--soft-shadow);
}
.contact-info-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  border-radius: 12px;
  background: var(--gradient);
}
.contact-info-list strong {
  color: var(--heading);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1rem;
}
.contact-info-list em {
  color: var(--text);
  font-style: normal;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.contact-booking-form {
  padding: clamp(1rem, 2.2vw, 1.45rem);
  border: 1px solid rgba(41,182,246,0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92)),
    radial-gradient(circle at 100% 0%, rgba(41,182,246,0.14), transparent 34%);
  box-shadow: 0 20px 52px rgba(15,23,42,0.1);
}
.contact-booking-form .form-badge {
  padding: 0.42rem 0.85rem;
  font-size: 0.72rem;
}
.contact-booking-form h2 {
  font-size: clamp(1.35rem, 2.35vw, 1.95rem);
  line-height: 1.18;
  margin-bottom: 0.25rem;
}
.contact-booking-form p {
  margin-bottom: 0.9rem;
  font-size: 0.94rem;
  line-height: 1.55;
}
.contact-booking-form .row {
  --bs-gutter-y: 0.72rem;
  --bs-gutter-x: 0.9rem;
}
.contact-booking-form label {
  display: block;
  margin-bottom: 0.24rem;
  color: var(--heading);
  font-size: 0.78rem;
  font-weight: 800;
}
.contact-booking-form .form-control {
  min-height: 2.65rem;
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 10px;
  color: var(--heading);
  background: var(--white);
  font-size: 0.92rem;
  padding: 0.55rem 0.8rem;
}
.contact-booking-form textarea.form-control {
  min-height: 82px;
}
.contact-booking-form .form-control:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 0.2rem rgba(41,182,246,0.15);
}
.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.contact-form-actions .btn {
  min-width: 126px;
  padding-top: 0.68rem;
  padding-bottom: 0.68rem;
}
.btn-clear {
  border: 1px solid rgba(26,35,126,0.18);
  border-radius: 999px;
  padding: 0.68rem 1.25rem;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}
.btn-clear:hover, .btn-clear:focus {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-2px);
}
.contact-branches-section {
  padding-top: 0;
  background: var(--bg);
}
.contact-branches-section .section-heading {
  max-width: 680px;
  margin-bottom: 2rem;
}
.contact-branches-section .section-heading h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0;
}
.branches-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(41,182,246,0.22);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(15,23,42,0.09);
}
.branches-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
.branches-table th,
.branches-table td {
  padding: 1.05rem 1.15rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.branches-table th {
  color: var(--white);
  background: var(--gradient);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.92rem;
}
.branches-table td:first-child {
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}
.branches-table td {
  color: var(--text);
}
.branches-table tbody tr:last-child td {
  border-bottom: 0;
}
.branches-table a {
  color: var(--navy);
  font-weight: 800;
}
.branches-table a:hover {
  color: var(--sky);
}
.contact-city-panel {
  margin-top: 2rem;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border: 1px solid rgba(41,182,246,0.2);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(15,23,42,0.07);
}
.contact-city-panel h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 1rem;
}
.contact-city-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}
.contact-city-links a {
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--heading);
  background: #f8fbff;
  font-size: 0.92rem;
  font-weight: 800;
}
.contact-city-links a:hover {
  color: var(--white);
  border-color: transparent;
  background: var(--gradient);
  transform: translateY(-2px);
}
.contact-map-section {
  padding: 0 0 clamp(4rem, 8vw, 8rem);
  background: var(--bg);
}
.contact-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.contact-map {
  overflow: hidden;
  border: 1px solid rgba(44,181,233,0.28);
  border-radius: 20px;
  box-shadow: 0 24px 58px rgba(15,23,42,0.12);
  background: var(--white);
}
.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 440px;
  border: 0;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 5rem 0 3.25rem;
  color: rgba(255,255,255,0.78);
  background:
    radial-gradient(circle at 15% 15%, rgba(44,181,233,0.16), transparent 32%),
    linear-gradient(135deg, #050816 0%, #0b1230 52%, #070a18 100%);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1.35fr;
  gap: 1.35rem;
  align-items: start;
  padding: 1.6rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
  box-shadow: 0 22px 54px rgba(0,0,0,0.16);
}
.footer-links > div {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  box-shadow: 0 22px 54px rgba(0,0,0,0.16);
}
.footer-brand, .footer-column, .footer-contact {
  min-height: 100%;
  padding: 0;
}
.footer-main img {
  width: min(260px, 100%);
  height: auto;
  background: var(--white);
  border-radius: 14px;
  padding: 0.55rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  margin-bottom: 1.25rem;
  line-height: 1.72;
}
.site-footer h2, .site-footer h3 {
  color: var(--white);
  font-size: 1.08rem;
  margin-bottom: 1rem;
}
.site-footer a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.62rem;
  color: rgba(255,255,255,0.78);
}
.site-footer a i, .footer-links h3 i, .footer-contact p i {
  color: var(--sky);
}
.site-footer a:hover {
  color: var(--sky);
  transform: translateX(3px);
}
.socials { display: flex; gap: 0.7rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.socials a:hover {
  color: var(--white);
  background: var(--gradient);
  transform: translateY(-3px);
}
.footer-contact p {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  line-height: 1.55;
}
.footer-map {
  overflow: hidden;
  border: 1px solid rgba(44,181,233,0.28);
  border-radius: 16px;
  margin-top: 1rem;
}
.site-footer iframe {
  display: block;
  width: 100%;
  min-height: 170px;
  border: 0;
}
.site-footer hr { border-color: rgba(255,255,255,0.14); margin: 2rem 0; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.footer-links > div {
  padding: 1.15rem;
}
.footer-links h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.95rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
}
.footer-bottom nav { display: flex; gap: 1rem; flex-wrap: wrap; }

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 6rem;
  z-index: 999;
  display: grid;
  gap: 0.75rem;
}
.floating-actions a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.floating-actions__whatsapp { background: #16a34a; }
.floating-actions__call,
.floating-actions__quote { background: var(--gradient); }
.mobile-bottom-bar { display: none; }
.mobile-call-float { display: none; }
.mobile-scroll-top { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 2rem;
  background: rgba(3,7,18,0.86);
}
.lightbox.is-open { display: grid; }
.lightbox img { max-height: 84vh; border-radius: 16px; box-shadow: var(--shadow); }
.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--heading);
}

@media (max-width: 1199px) {
  .main-nav { background: rgba(255,255,255,0.96); }
  .nav-link { color: var(--heading); }
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
  }
  .hero-slide { min-height: auto; }
  .hero-content .col-lg-7 { max-width: 100%; }
  .hero-form-layer {
    position: relative;
    inset: auto;
    background:
      linear-gradient(135deg, rgba(26,35,126,0.96), rgba(7,17,48,0.94));
  }
  .hero-form-container {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  .hero-quote-card { width: 100%; transform: none; }
  .image-stack { margin: 0 auto; }
}

@media (max-width: 991px) {
  h1 { font-size: clamp(2.45rem, 12vw, 4.5rem); }
  .hero-content h1, .hero-title { font-size: clamp(2rem, 8vw, 3.25rem); }
  .top-strip__actions { display: none; }
  .hero-content { padding-top: 10.25rem; }
  .about-bottom-row { grid-template-columns: 1fr; }
  .about-bottom-row .counter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-btn { justify-self: start; }
  .contact-grid, .contact-map-grid { grid-template-columns: 1fr; }
  .contact-city-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid, .service-grid, .timeline-grid, .branch-grid, .blog-grid, .routes-grid, .footer-main, .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-steps, .achievement-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-steps::before { display: none; }
}

@media (max-width: 575px) {
  .page-gutter { padding-left: 0.85rem; padding-right: 0.85rem; }
  .top-strip__inner { justify-content: center; }
  .top-strip__info {
    width: 100%;
    justify-content: center;
    gap: 0.35rem 0.55rem;
    font-size: 0.64rem;
    line-height: 1.35;
  }
  .top-strip__info span { white-space: nowrap; }
  .trust-marquee__track { font-size: 0.8rem; gap: 1.5rem; }
  .main-nav .container-fluid { gap: 0.5rem; }
  .navbar-brand img { width: 142px; }
  .navbar-toggler { padding: 0.35rem 0.55rem; }
  .page-hero {
    min-height: 170px;
    margin-top: 7.15rem;
    padding-top: 2.35rem;
    padding-bottom: 2.35rem;
  }
  .page-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    overflow-wrap: anywhere;
    margin-bottom: 0.55rem;
  }
  .breadcrumb-nav { font-size: 0.86rem; gap: 0.7rem; }
  .breadcrumb-nav a::after { margin-left: 0.7rem; }
  .hero-slide { background-position: center; }
  .hero-content { padding-top: 8.85rem; padding-bottom: 2.25rem; }
  .hero-content h1, .hero-title {
    max-width: 100%;
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    line-height: 1.14;
    overflow-wrap: anywhere;
  }
  .hero-copy {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.65;
  }
  .hero-actions { gap: 0.7rem; }
  .hero-actions .btn { width: 100%; }
  .best-heading { font-size: clamp(1.5rem, 7.55vw, 1.94rem); line-height: 1.18; }
  .best-heading span { display: block; white-space: nowrap; }
  .best-heading em { white-space: nowrap; }
  .why-heading { font-size: clamp(2rem, 9vw, 2.75rem); }
  .why-heading span { white-space: normal; }
  .faq-heading { white-space: nowrap; font-size: clamp(1.28rem, 6.05vw, 1.55rem); }
  .work-heading { white-space: normal; font-size: clamp(2rem, 9vw, 2.65rem); }
  .gallery-heading { white-space: normal; font-size: clamp(1.6rem, 7.5vw, 2rem); line-height: 1.15; }
  .gallery-heading span { display: block; }
  .reviews-heading { white-space: normal; font-size: clamp(2rem, 9vw, 2.65rem); }
  .blog-heading { white-space: normal; font-size: clamp(2rem, 9vw, 2.65rem); }
  .routes-heading { white-space: normal; font-size: clamp(2rem, 9vw, 2.65rem); }
  .routes-map iframe { min-height: 320px; }
  .mission-grid, .counter-grid, .feature-grid, .service-grid, .timeline-grid, .branch-grid, .blog-grid, .routes-grid, .footer-main, .footer-links, .work-steps, .achievement-grid { grid-template-columns: 1fr; }
  .contact-info-list { grid-template-columns: 1fr; }
  .contact-info-list a, .contact-info-list div { min-height: auto; }
  .contact-form-actions .btn { width: 100%; }
  .contact-city-links { grid-template-columns: 1fr; }
  .contact-branches-section .section-heading h2 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
    line-height: 1.28;
  }
  .branches-table th, .branches-table td { padding: 0.85rem; }
  .contact-map iframe { min-height: 320px; }
  .about-bottom-row .counter-grid { grid-template-columns: 1fr; }
  .image-stack img { height: 300px; }
  .quote-card { padding: 1rem; }
  .contact-booking-form { padding: 0.95rem; border-radius: 15px; }
  .contact-booking-form h2 { font-size: clamp(1.28rem, 6vw, 1.6rem); }
  .contact-booking-form textarea.form-control { min-height: 92px; }
  .trusted-card { width: 100%; margin: 1rem 0 0; }
  .about-section { background: #ffffff; }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    gap: 0.9rem;
    padding-bottom: 0.75rem;
  }
  .footer-bottom p {
    width: 100%;
    margin: 0;
  }
  .footer-bottom nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .footer-bottom nav a {
    justify-content: center;
    margin: 0;
    padding: 0.55rem 0.4rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    font-size: 0.76rem;
  }
  .floating-actions { display: none; }
  .mobile-call-float {
    position: fixed;
    right: 1rem;
    bottom: 7.25rem;
    z-index: 1002;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    color: var(--white);
    background: var(--gradient);
    border-radius: 50%;
    box-shadow: 0 16px 36px rgba(26,35,126,0.32);
    animation: callPulse 1.7s ease-in-out infinite;
  }
  .mobile-scroll-top {
    position: fixed;
    right: 1.15rem;
    bottom: 3.35rem;
    z-index: 1002;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: var(--navy);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 14px 30px rgba(15,23,42,0.24);
  }
  .mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    box-shadow: 0 -12px 34px rgba(15,23,42,0.14);
  }
  .mobile-bottom-bar a {
    display: grid;
    place-items: center;
    min-height: 58px;
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    border-right: 1px solid var(--line);
  }
  .mobile-bottom-bar i { display: block; color: var(--sky); font-size: 1.1rem; }
}

@keyframes callPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(41,182,246,0.38), 0 16px 36px rgba(26,35,126,0.32); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 12px rgba(41,182,246,0), 0 18px 42px rgba(26,35,126,0.38); }
}

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