*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

:root {
  --teal: #009534;
  --teal2: #009534;
  --teal3: #98ccff;
  --amber: #f99328;
  --amber2: #f99328;
  --amber3: #fef3c7;
  --red: #dc2626;
  --red2: #ef4444;
  --dark: #343b3d;
  --dark2: #313336;
  --mid: #374147;
  --body: #3b4246;
  --muted: #5a5f66;
  --border: #e2e8f0;
  --white: #ffffff;
  --offwhite: #f8fafc;
  --phone: #f99328;
  --phone2: #da780f;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Nunito", sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── TOP ALERT BAR ─── */
.alert-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: none;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.alert-bar a {
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: pulse-ring 1.5s ease-out infinite;
}
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* ─── STICKY HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.logo {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}
.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.logo span {
  color: var(--amber2);
}

.logo a {
  text-decoration: none;
  color: #fff;
  font-size: 24px;
}

.logo img {
  height: 55px;
}

.header-mid {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 6px 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  white-space: nowrap;
}

/* PHONE CTA (header) */
.phone-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  /* background: #1d3742; */
  border-radius: 50px;
  /* padding: 10px 22px; */
  text-decoration: none;
  color: #fff;
  transition:
    background 0.2s,
    transform 0.15s;
  flex-shrink: 0;
}
.phone-cta:hover {
  /* background: var(--phone2); */
  transform: translateY(-1px);
}
.phone-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  animation: phone-ring 2.5s ease-in-out infinite;
}
@keyframes phone-ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-15deg);
  }
  20% {
    transform: rotate(15deg);
  }
  30% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
}
.phone-text small {
  display: block;
  font-size: 10px;
  opacity: 0.8;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.phone-number {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

/* ─── HERO ─── */
.hero {
  background:
    linear-gradient(
      160deg,
      rgba(15, 32, 39, 0.9) 0%,
      rgba(22, 37, 53, 0.8) 40%,
      rgba(11, 50, 77, 0.3) 100%
    ),
    url("../images/hero-bg.webp") center/cover no-repeat;
  padding: 80px 24px 70px;
  position: relative;
  overflow: hidden;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.08);
}
.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
}
.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -80px;
  background: rgba(13, 148, 136, 0.12);
}
.shape-3 {
  width: 180px;
  height: 180px;
  top: 30px;
  left: 30%;
  background: rgba(251, 191, 36, 0.06);
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(251, 191, 36, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: var(--amber2);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber2);
}
.hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 460px;
}

/* Hero phone */
.hero-phone-block {
  /* background: rgba(11, 186, 255, 0.15);
  border: 2px solid rgba(0, 152, 240, 0.45); */
  border-radius: 16px;
  padding: 00px 0px;
  margin-bottom: 24px;
}
.hero-phone-block p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.hero-phone-number {
  display: block;
  /* font-family: var(--font-head); */
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s;
}
.hero-phone-number:hover {
  color: var(--amber2);
}
.hero-phone-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: var(--amber2);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Hero card (right side) */
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 28px;
}
.hero-card h3 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
}
.quick-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 13px;
  outline: none;
  width: 100%;
  transition:
    border-color 0.2s,
    background 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}
.form-group select option {
  background: var(--dark2);
  color: #fff;
}
.form-group input:focus,
.form-group select:focus {
  border-color: #eec55e;
  background: rgba(255, 255, 255, 0.13);
}
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.4);
}
.form-cta {
  width: 100%;
  padding: 14px;
  background: var(--amber);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.form-cta:hover {
  background: var(--amber2);
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: #f7f7f7;
  padding: 18px 24px;
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
}
.trust-item-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.trust-item small {
  display: block;
  font-weight: 500;
  font-size: 11px;
  opacity: 0.7;
}

/* ─── PHONE HIGHLIGHT SECTION ─── */
.phone-section {
  background: var(--dark);
  padding: 52px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.phone-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(13, 148, 136, 0.18) 0%,
    transparent 70%
  );
}
.phone-section-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.phone-section h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.phone-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin-bottom: 30px;
}

.big-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--phone);
  border-radius: 100px;
  padding: 16px 36px;
  text-decoration: none;
  color: #fff;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-bottom: 18px;
}
.big-phone-link:hover {
  background: var(--phone2);
  transform: scale(1.03);
}
.big-phone-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: phone-ring 2.5s ease-in-out infinite;
}
.big-phone-text {
  text-align: left;
}
.big-phone-text small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}
.big-phone-num {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}
.phone-hours {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  margin-top: 10px;
}

/* ─── SERVICES ─── */
.services-section {
  padding: 80px 24px;
  background: var(--offwhite);
}
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal2);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
  cursor: default;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal3);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.14);
}
.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal2);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: gap 0.2s;
}
.service-cta:hover {
  gap: 10px;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 80px 24px;
  background: var(--white);
}
.steps-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px;
}
.step-card {
  text-align: center;
  padding: 12px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--amber2);
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.step-card p a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.step-connector {
  display: none;
}

/* ─── POPULAR ROUTES ─── */
.routes-section {
  padding: 80px 24px;
  background: var(--offwhite);
}
.routes-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.route-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.2s;
  cursor: pointer;
}
.route-card:hover {
  border-color: var(--teal2);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.12);
  transform: translateY(-2px);
}
.route-flag {
  font-size: 24px;
  margin-bottom: 6px;
}
.route-name {
  font-weight: 800;
  color: var(--dark);
  font-size: 15px;
}
.route-from {
  color: var(--muted);
  font-size: 12px;
}
.route-price {
  margin-top: 10px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 20px;
  color: var(--teal);
}
.route-price small {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

/* ─── TESTIMONIALS ─── */
.reviews-section {
  padding: 80px 24px;
  background: var(--dark);
}
.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px 22px;
  transition: border-color 0.2s;
}
.review-card:hover {
  border-color: rgba(13, 148, 136, 0.4);
}
.stars {
  color: var(--amber2);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.reviewer-name {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.reviewer-loc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* ─── FINAL CTA SECTION ─── */
.final-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--dark) 100%);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 100%,
    rgba(251, 191, 36, 0.12) 0%,
    transparent 70%
  );
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.final-cta p {
  color: rgba(255, 255, 255, 80%);
  font-size: 17px;
  margin-bottom: 25px;
}

.final-phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.final-phone-a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--phone);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  padding: 12px 32px 12px;
  font-size: clamp(22px, 3.5vw, 34px);
  /* font-family: var(--font-head); */
  font-weight: 900;
  letter-spacing: -0.5px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.final-phone-a:hover {
  background: var(--phone2);
  transform: scale(1.03);
}
.final-phone-icon2 {
  font-size: 24px;
  display: flex;
  align-items: center;
  position: relative;
  bottom: -2px;
  animation: phone-ring 2.5s ease-in-out infinite;
}
.final-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

/* ─── FOOTER ─── */
footer {
  background: #060f1a;
  padding: 30px 16px 20px;
}
.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo {
  font-size: 22px;
  margin-bottom: 14px;
  display: inline-flex;
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 20px;
}
.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* background: var(--phone); */
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 800;
  transition: background 0.2s;
}
.footer-phone-link:hover {
  /* background: var(--phone2); */
  color: var(--phone2);
}
.footer-col h5 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0px;
  padding: 0px;
}
.footer-col li {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin-bottom: 8px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.footer-badges {
  display: flex;
  gap: 8px;
}
.badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 4px 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 600;
}

/* ─── MODAL POPUP ─── */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
  max-width: 500px;
  width: 90%;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 3px 15px;
  text-align: right;
  /* border-bottom: 1px solid var(--border); */
}

.modal-close {
  font-size: 28px;
  font-weight: bold;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--dark);
}

.modal-body {
  padding: 10px 30px 30px;
  text-align: center;
}

.modal-icon {
  font-size: 60px;
  margin-bottom: 0px;
}

.modal-icon img {
  height: 60px;
}

.modal-body h2 {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 26px;
  font-weight: 800;
}

.modal-body p {
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.modal-body p a {
  color: var(--body);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.modal-body p a:hover {
  color: var(--amber);
}

.modal-subtext {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px !important;
}

.modal-subtext a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.modal-subtext a:hover {
  color: var(--amber2);
  text-decoration: underline;
}

.modal-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: none;
}

.modal-btn:hover {
  background: var(--teal2);
}

.hero-card p {
  margin-bottom: 10px;
}

/* ─── FLOATING CALL BTN (mobile) ─── */
.float-call {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--phone);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  padding: 15px 28px;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(51, 51, 51, 0.5);
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: float-bounce 2s ease-in-out infinite;
}
@keyframes float-bounce {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(207, 207, 207, 0.5);
  }
  50% {
    box-shadow: 0 14px 40px rgba(133, 133, 133, 0.7);
    transform: translateX(-50%) translateY(-2px);
  }
}

.content-section {
  width: 100%;
  padding: 40px 15px;
  background-color: #fff;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.content-section h1,
h2,
h3 {
  color: var(--dark);
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 30px;
}

.content-section h1:first-child,
h2:first-child,
h3:first-child {
  margin-top: 0;
}

.content-section p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.content-section p a {
  color: var(--body);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.content-section p a:hover {
  color: var(--teal);
}

.content-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.content-section ul li {
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.content-section ul li a {
  color: var(--body);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.content-section ul li a:hover {
  color: var(--teal);
}

.banner-sect {
  width: 100%;
  position: relative;
}

.banner-sect .banner-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.banner-text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.banner-text h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  margin-bottom: 12px;
}

/* FAQ SECTION */
.faq-section {
  background: #fff;
  padding: 80px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.accordion-flush .accordion-item {
  border: none;
  border-bottom: 1px solid var(--border);
}

.accordion-flush .accordion-item:first-child {
  border-top: 1px solid var(--border);
}

.accordion-flush .accordion-button {
  padding: 20px 0;
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
  background-color: transparent;
  box-shadow: none;
}

.accordion-flush .accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: transparent;
  box-shadow: none;
}

.accordion-flush .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
  color: var(--primary);
}

.accordion-body {
  padding: 20px 0;
  color: var(--light-dark);
  font-size: 0.95rem;
  line-height: 1.8;
}

.accordion-body a {
  color: var(--light-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.accordion-body a:hover {
  color: var(--amber);
}

.content-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 992px) {
  .services-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .service-card {
    min-width: 250px;
    padding: 20px 20px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 520px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header-mid {
    display: none;
  }
  .hero {
    padding: 50px 16px 60px;
  }
  .hero-inner {
    gap: 32px;
  }
  .hero-btns {
    display: none;
    flex-direction: column;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hero-phone-number {
    font-size: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .trust-strip-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 12px;
  }
  .trust-item {
    min-width: 150px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .float-call {
    display: flex;
  }
  body {
    padding-bottom: 80px;
  }
  .big-phone-num {
    font-size: 26px;
  }
  .final-phone-a {
    font-size: 24px;
    padding: 14px 22px;
  }

  .hero-card {
    padding: 18px;
  }

  .routes-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .route-card {
    min-width: 180px;
  }

  .services-section {
    padding: 40px 18px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    margin-bottom: 0px;
  }

  .final-cta {
    padding: 40px 20px;
  }

  .final-cta p {
    margin-bottom: 10px;
  }

  .modal-content {
    width: 95%;
  }

  .steps-grid {
    gap: 15px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .step-card {
    min-width: 250px;
  }

  .logo a {
    font-size: 18px;
  }

  .form-group {
    overflow: hidden;
  }

  .logo img {
    height: 40px;
  }

  .banner-text h1 {
    font-size: clamp(24px, 4vw, 28px);
  }

  .banner-sect .banner-img {
    height: 200px;
  }

  .accordion-flush .accordion-button {
    font-size: 1rem;
    padding: 15px 0;
  }

  .accordion-body {
    padding: 12px 0;
  }

  .faq-section {
    padding: 45px 0;
  }

  .section-title {
    font-size: clamp(22px, 4vw, 28px);
  }
}

@media (max-width: 450px) {
  .phone-number {
    font-size: 16px;
  }
  .phone-cta {
    /* padding: 9px 14px; */
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    height: 32px;
  }

  .header-inner {
    padding: 12px 10px;
  }

  .hero p {
    font-size: 14px;
  }

  .logo a {
    font-size: 16px;
  }

  .logo.footer-logo img {
    height: 45px;
  }
}
