:root {
  --primary: #10397f;
  --primary-dark: #10397f;
  --secondary: #fdca1e;
  --primary-light: #ebf3ff;
  --primary-pale: #e8f0ff;
  --primary-mid: #fdca1e;
  --white: #ffffff;
  --dark: #181818;
  --light-dark: #575757;
  --black: #2b2b2b;
  --text: #383838;
  --muted: #c0c0c0;
  --border: #e5eeff;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--primary-pale);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* TOP BAR */
.top-bar {
  background: var(--secondary);
  color: #e0f2fe;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.87rem;
  font-weight: 500;
}
.top-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.top-bar a:hover {
  border-color: #fff;
}

.header-row {
  width: 100%;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}

/* NAVBAR */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 64px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(14, 165, 233, 0.08);
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--secondary);
}
.logo span {
  color: var(--primary);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--secondary);
}
.nav-tfn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: --var(--primary-light);
  border: 1.5px solid #78aaff;
  border-radius: 10px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}
.nav-tfn a {
  color: inherit;
  text-decoration: none;
}
.nav-tfn a:hover {
  color: var(--primary);
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 60px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(to right, rgb(34 9 5 / 64%), rgb(26 18 18 / 63%)),
    url(../images/hero-banner.webp);
  background-size: cover;
}
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.12) 0%,
    transparent 70%
  );
  top: -200px;
  left: -100px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(2, 132, 199, 0.1) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -80px;
  pointer-events: none;
}
.hero-badge {
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 100px;
  margin-bottom: 30px;
  display: inline-block;
  animation: fadeUp 0.7s ease both;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  max-width: 800px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
}
.hero-sub {
  margin-top: 22px;
  color: var(--white);
  font-size: 1rem;
  max-width: 560px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-content {
  text-align: left;
}
.arimg-box img {
  width: 100%;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border: none;
  padding: 15px 38px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35);
  transition:
    box-shadow 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: #fff;
  color: var(--secondary);
  border: 1.5px solid var(--border);
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.12);
}
.hero-tfn {
  margin-top: 20px;
  padding: 5px 20px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-tfn .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-tfn .number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
}
.hero-tfn .number a {
  color: inherit;
  text-decoration: none;
}
.hero-tfn .number a:hover {
  color: var(--primary);
}
.hero-tfn .avail {
  font-size: 0.78rem;
  color: #8ab4cc;
}

/* TRUST BAR */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.85rem;
}
.trust-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.trust-item strong {
  color: var(--text);
  font-weight: 600;
}

/* SHARED */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.section-title em {
  font-style: italic;
  color: var(--primary);
}
.section-subtitle {
  color: var(--light-dark);
  font-size: 1rem;
  margin-top: 14px;
  max-width: 500px;
  text-align: left;
}

/* SERVICES */
#services {
  padding: 100px 24px;
  background: var(--primary-pale);
  text-align: center;
}
.services-header {
  margin-bottom: 60px;
}
.services-header .section-subtitle {
  margin: 14px auto 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 30px 36px;
  text-align: left;
  transition:
    border-color 0.3s,
    transform 0.25s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: 0 0 14px 14px;
}
.service-card:hover {
  border-color: var(--primary-mid);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(14, 165, 233, 0.13);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-icon {
  width: 54px;
  height: 54px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}
.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.78;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover {
  gap: 10px;
}

/* WHY US */
#why-wrap {
  padding: 50px 60px 50px;
  background-color: #f7f7f7;
}
#why {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-visual-inner {
  font-size: 7rem;
  /* opacity: 0.25; */
}
.why-visual-inner img {
  width: 100%;
}
.why-badge-float {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--secondary);
  color: #fff;
  border-radius: 10px;
  padding: 16px 22px;
  font-weight: 700;
  font-size: 0.82rem;
}
.why-badge-float .big {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  display: block;
  line-height: 1;
}
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 38px;
}
.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
}
.stat-box .smtitle {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 25px;
  color: var(--black);
}
.stat-box .desc {
  font-size: 0.8rem;
  color: #777777;
  margin-top: 4px;
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--primary) 60%,
    #38bdf8 100%
  );
  padding: 40px 24px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.cta-band h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  margin-bottom: 40px;
}
.cta-tfn-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  padding: 26px 52px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.cta-tfn-block .cta-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}
.cta-tfn-block .cta-num {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
.cta-tfn-block .cta-num a {
  color: inherit;
  text-decoration: none;
}
.cta-tfn-block .cta-num a:hover {
  text-decoration: none;
}
.cta-tfn-block .cta-hours {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.btn-white {
  background: #fff;
  color: var(--secondary);
  border: none;
  padding: 16px 44px;
  border-radius: 6px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.15s,
    box-shadow 0.2s;
  display: inline-block;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* TESTIMONIALS */
#testimonials {
  padding: 100px 24px;
  background: var(--primary-pale);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1000px;
  margin: 52px auto 0;
}
.tcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: left;
  transition: box-shadow 0.25s;
}
.tcard:hover {
  box-shadow: 0 10px 32px rgba(14, 165, 233, 0.1);
}
.stars {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.tcard p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.78;
}
.tcard .author {
  margin-top: 20px;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.88rem;
}
.tcard .role {
  font-size: 0.78rem;
  color: #8ab4cc;
}

/* FOOTER */
footer {
  background-color: #2c2c2c;
  padding: 50px 64px 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  max-width: 1240px;
  margin: 0 auto 30px;
}
.footer-brand .logo {
  color: #bdbdbd;
}
.footer-brand .logo span {
  color: var(--primary);
}
.footer-brand .logo img {
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: #bdbdbd;
  font-size: 0.84rem;
  margin-top: 12px;
  line-height: 1.75;
  max-width: 310px;
}
.footer-tfn-line {
  margin-top: 20px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.footer-tfn-line a {
  color: inherit;
  text-decoration: none;
}
.footer-tfn-line a:hover {
  text-decoration: underline;
}
.footer-tfn-sub {
  font-size: 0.75rem;
  color: #bdbdbd;
  margin-top: 4px;
}
footer h4 {
  color: #e7e7e7;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
footer ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul a {
  color: #bdbdbd;
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 0.2s;
}

footer ul li {
  color: #bdbdbd;
  font-size: 0.84rem;
  margin-bottom: 10px;
}

footer ul a:hover {
  color: var(--secondary);
}
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  border-top: 1px solid #3a3a3a;
  padding-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  color: #bdbdbd;
  font-size: 0.77rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-section {
  width: 100%;
  padding: 40px 0px;
  background-color: #fff;
}

.content-section h1,
h2,
h3 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-section h1:first-child,
.content-section h2:first-child,
.content-section h3:first-child {
  margin-top: 0;
}

.content-section p {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 15px;
}

.content-section ul {
  margin: 0px;
  padding: 0px;
  padding-left: 21px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.content-section ul li {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
}

.whyus h2 {
  margin-bottom: 30px;
}

/* 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-top: 0px;
  margin-bottom: 20px;
}
.quick-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.airport-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  max-height: 260px;
  overflow-y: auto;
  padding: 8px;
  gap: 6px;
  /* display: grid; */
  display: none;
}
.airport-list.hidden {
  display: none;
}
.airport-item {
  background: transparent;
  border: none;
  text-align: left;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  transition: background 0.2s;
}
.airport-item:hover {
  background: rgba(16, 57, 127, 0.08);
}
.airport-item.disabled {
  cursor: default;
  color: rgba(51, 51, 51, 0.6);
}

.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;
  text-align: left;
}
.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(--dark);
  color: #fff;
}
.form-group input:focus,
.form-group select:focus {
  border-color: rgb(255, 185, 175);
  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: 230px;
  padding: 14px;
  background: var(--primary);
  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: 0px auto;
  margin-top: 12px;
}
.form-cta:hover {
  background: var(--secondary);
}

.toll-free-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 42px;
  margin-bottom: 10px;
  animation: fadeUp 0.8s 0.2s ease both;
}

/* 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: 1rem;
  background-color: transparent;
  box-shadow: none;
}

.accordion-header {
  margin-top: 0px;
}

.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;
}

.content-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ─── 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;
  justify-content: flex-end;
  border-bottom: none;
  /* border-bottom: 1px solid var(--border); */
}

.modal-close {
  font-size: 28px;
  font-weight: bold;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
  top: -5px;
}

.modal-close img {
  height: 15px;
  transition: all 0.2s;
  opacity: 0.5;
}

.modal-close:hover img {
  opacity: 0.8;
}

.modal-body {
  padding: 0px 30px 20px;
  text-align: center;
}

.modal-icon {
  font-size: 40px;
  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: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.modal-subtext {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px !important;
}

.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);
}

.logo img {
  height: 45px;
}

.smpgcenter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0px auto;
}

.banner-sect {
  width: 100%;
  height: 300px;
  position: relative;
  background-image:
    linear-gradient(180deg, rgb(0 0 0 / 81%), rgb(0 0 0 / 45%)),
    url(../images/hero-banner-1.webp);
  background-size: cover;
  background-position: center center;
}

.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 {
  color: #fff;
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 800;
  margin-top: 0px;
  margin-bottom: 0px;
}

/*=============== Responsive Css ============*/

@media (max-width: 1240px) {
  .content-container {
    max-width: 920px;
  }
}

@media (max-width: 992px) {
  nav {
    padding: 14px 0px;
  }
  .nav-links {
    display: none;
  }
  #why {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #why-wrap {
    padding: 80px 24px;
  }
  .why-visual {
    aspect-ratio: 16/9;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .arimg-box {
    display: none;
  }

  .hero-card {
    padding: 20px;
    margin-top: 30px;
  }
  .content-container {
    max-width: 767px;
  }
}
@media (max-width: 640px) {
  .hero {
    padding: 40px 0px;
  }
  .banner-sect {
    height: 200px;
  }
  .trust-bar {
    gap: 10px;
    padding: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  footer {
    padding: 26px 16px 20px;
  }
  .content-section h2,
  h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .whyus h2 {
    margin-bottom: 20px;
  }

  .cta-band {
    padding: 45px 16px;
  }

  .cta-tfn-block {
    padding: 20px 15px;
  }
  .cta-tfn-block .cta-num {
    font-size: 1.6rem;
  }

  .hero-tfn {
    padding: 5px 15px;
  }

  .hero-sub {
    font-size: 0.925rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.925rem;
  }

  #why-wrap {
    padding: 40px 20px;
  }

  .nav-tfn {
    padding: 8px 12px;
  }

  .content-section p {
    font-size: 14px;
  }

  .content-section ul li {
    font-size: 14px;
    margin-bottom: 6px;
  }

  /* FAQ Section */
  .faq-section {
    padding: 60px 10px;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: transparent;
    color: var(--primary);
  }

  .accordion-button {
    font-weight: 600;
  }

  .stat-box {
    padding: 15px 14px;
  }

  .form-group {
    overflow: hidden;
  }

  .hero-card {
    padding: 18px 15px;
  }

  .form-group input,
  .form-group select {
    padding: 11px 12px;
  }

  .form-cta {
    padding: 8px 15px;
  }

  .accordion-flush .accordion-button {
    padding: 16px 0;
    font-size: 0.913rem;
  }

  .hero-tfn .number {
    font-size: 1.55rem;
  }

  .content-section h1,
  h2,
  h3 {
    font-size: 20px;
  }
  .logo img {
    height: 40px;
  }
  .stats-row {
    gap: 12px;
  }
  .stat-box .smtitle {
    font-size: 0.9rem;
    line-height: 23px;
  }
}

@media (max-width: 400px) {
  .hero-badge {
    font-size: 0.65rem;
  }
  .hero-tfn .label {
    font-size: 0.65rem;
  }
  .nav-tfn {
    font-size: 0.8rem;
  }
  .logo {
    font-size: 1.45rem;
  }
  .logo img {
    height: 35px;
  }
}
