:root {
  --orange: #ff7a00;
  --orange-dark: #ff9a1f;
  --blue: #1565c0;
  --blue-light: #42a5f5;
  --green: #2e7d32;
  --text: #22314a;
  --shadow: 0 18px 36px rgba(12, 24, 46, 0.15);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: "Poppins", sans-serif; color: var(--text); background: #f4f7fb; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: 14px; }
.container { width: min(1140px, 92%); margin: 0 auto; }
.section { padding: 84px 0; position: relative; overflow: hidden; }
.narrow { width: min(760px, 100%); }

.top-header { background: linear-gradient(120deg, #07274f, #1565c0 55%, #ff7a00); color: #fff; font-size: 14px; }
.top-header__inner { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; flex-wrap: wrap; align-items: center; }
.top-left p { margin: 0; display: flex; gap: 8px; align-items: center; }
.top-right { display: flex; gap: 16px; align-items: center; }
.top-right a { display: inline-flex; gap: 7px; align-items: center; font-weight: 500; }
.navbar { position: sticky; top: 0; z-index: 20; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 8px 24px rgba(0,0,0,.08); border-bottom: 1px solid #e6eef8; }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 18px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800; color: var(--blue); }
.logo img { width: 98px; height: 74px; object-fit: contain; }
.logo span { color: var(--blue); line-height: 1.15; max-width: 200px; }
.nav-links { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.nav-links a { font-weight: 600; font-size: 15px; padding: 9px 12px; border-radius: 999px; transition: .2s ease; }
.nav-links a.active, .nav-links a:hover { color: var(--orange); }
.nav-links a:hover { background: #fff2e8; }
.menu-toggle { display: none; background: transparent; border: 0; font-size: 24px; }
.nav-cta i { margin-right: 6px; }

.sticky-contact { position: fixed; right: 12px; top: 40%; display: flex; flex-direction: column; gap: 10px; z-index: 30; }
.sticky-contact a { color: #fff; width: 44px; height: 44px; border-radius: 999px; box-shadow: var(--shadow); font-size: 18px; font-weight: 600; display: grid; place-items: center; }
.sticky-contact a:nth-child(1) { background: linear-gradient(120deg, #175bb5, #3383e2); }
.sticky-contact a:nth-child(2) { background: linear-gradient(120deg, #238b3f, #34b055); }
.sticky-contact a:nth-child(3) { background: linear-gradient(120deg, #f57800, #f8a533); }
.mobile-quick-contact { display: none; }

.hero { position: relative; min-height: 80vh; overflow: hidden; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity .7s ease; }
.hero-slide.active { opacity: 1; }
.hero__content { position: relative; z-index: 2; min-height: 80vh; display: grid; place-content: center; color: #fff; }
.hero h1 { font-size: clamp(32px, 5vw, 58px); margin: 0 0 12px; line-height: 1.06; }
.hero p { font-size: 18px; margin: 0 0 24px; max-width: 700px; }
.hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.btn { background: linear-gradient(120deg, var(--orange), var(--orange-dark)); color: #fff; border: 0; padding: 12px 22px; border-radius: 10px; font-weight: 600; display: inline-block; box-shadow: 0 12px 24px rgba(255, 122, 0, 0.35); }
.btn:hover { transform: translateY(-1px); }
.btn--ghost { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.55); backdrop-filter: blur(6px); box-shadow: none; }
.btn--small { padding: 10px 14px; font-size: 14px; }

.section-theme--indigo { background: linear-gradient(120deg, #eef4ff, #f9fbff); }
.section-theme--orange { background: linear-gradient(120deg, #fff4eb, #fff9f4); }
.section-theme--blue { background: linear-gradient(120deg, #eaf4ff, #f4f9ff); }
.section-theme--green { background: linear-gradient(120deg, #eefdff, #f6fffa); }
.section-theme--violet { background: linear-gradient(120deg, #f3edff, #faf7ff); }
.section-theme--dark { background: linear-gradient(120deg, #11335f, #1f4f87); color: #fff; }
.section-theme--soft { background: linear-gradient(120deg, #fffcef, #fff8e1); }
.section-theme--cta { background: linear-gradient(120deg, #ecf6ff, #f9fbff); }
.page-banner {
  min-height: 45vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  align-items: center;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.05));
}
.page-banner__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 34px 0;
}
.page-banner__content h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4.4vw, 56px);
}
.page-banner__content p {
  margin: 0;
  font-size: 17px;
  max-width: 760px;
  line-height: 1.7;
}

.section-bg { position: absolute; width: 280px; opacity: .12; filter: blur(1px); pointer-events: none; }
.section-bg--left { left: -70px; bottom: -20px; }
.section-bg--right { right: -80px; top: -30px; }

.section-head { margin-bottom: 26px; max-width: 900px; }
.section-head h2 { margin: 0 0 10px; font-size: clamp(28px, 3.2vw, 42px); color: #0f3870; }
.section-head p { margin: 0; color: #4b5e7e; line-height: 1.7; font-size: 16px; }
.section-head--light h2, .section-head--light p { color: #fff; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.checks { padding-left: 20px; }
.checks li { margin-bottom: 8px; }
.image-card { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.section-tag { display: inline-block; margin: 0 0 10px; padding: 7px 12px; border-radius: 999px; background: rgba(21, 101, 192, 0.12); color: var(--blue); font-weight: 600; font-size: 14px; }
.about-home { padding-top: 96px; }
.about-home .split h2, .about-page h1 { margin-top: 0; margin-bottom: 12px; font-size: clamp(28px, 3.4vw, 42px); color: #0f3870; }
.about-home__image img { min-height: 380px; object-fit: cover; }
.about-home__meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 22px 0 22px; }
.about-home__meta div { background: #fff; border-radius: 14px; padding: 14px 12px; box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08); text-align: center; }
.about-home__meta strong { display: block; color: var(--orange); font-size: 22px; margin-bottom: 4px; }
.about-home__meta span { font-size: 13px; color: #4f4f4f; }

.grid { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }

.card, .car-card, .route { background: #fff; border-radius: 16px; padding: 20px; box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.card h3 { margin: 0 0 8px; color: #0f3870; }

.service-card, .car-card, .route-card { padding: 0; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover, .car-card:hover, .route-card:hover { transform: translateY(-6px); box-shadow: 0 18px 28px rgba(0, 0, 0, 0.15); }
.service-card img { width: 100%; height: 190px; object-fit: cover; border-radius: 0; }
.car-card img { width: 100%; height: 270px; object-fit: cover; border-radius: 0; }
.route-card img { width: 100%; height: 210px; object-fit: cover; border-radius: 0; }
.route-card h3 { margin: 14px 18px 18px; color: #0f3870; }
.card-body, .car-card p, .car-card .btn { margin-left: 18px; margin-right: 18px; }
.card-body { padding: 16px 0 20px; }
.car-card p { margin-top: 14px; color: #4b5e7e; }
.car-card .btn { margin: 10px 18px 18px; }

.feature-card { background: linear-gradient(140deg, #fff, #f6fbff); border: 1px solid #dbe9ff; }
.feature-card span { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 999px; background: #eaf3ff; color: var(--blue); font-weight: 700; margin-bottom: 12px; }

.testimonial-slider { overflow: hidden; }
.testimonial-track { display: flex; gap: 16px; transition: transform .55s ease; will-change: transform; }
.testimonial-card {
  flex: 0 0 calc((100% - 32px) / 3);
  background: linear-gradient(150deg, rgba(255,255,255,0.96), rgba(230,242,255,0.95));
  color: #22314a;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 20px 35px rgba(9, 20, 40, 0.25);
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(21,101,192,0.22), transparent 70%);
}
.t-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; position: relative; z-index: 2; }
.t-quote {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(120deg, #1565c0, #42a5f5);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 8px 16px rgba(21,101,192,.35);
}
.t-stars { color: #ff9f1a; font-size: 12px; letter-spacing: 2px; }
.testimonial-card p { margin: 0 0 16px; line-height: 1.72; color: #2f425e; position: relative; z-index: 2; }
.testimonial-card h4 { margin: 0; color: #0d4f9c; font-size: 15px; font-weight: 700; position: relative; z-index: 2; }
.testimonial-card h4::before { content: "- "; color: #ff7a00; }
.gallery-home { margin-top: 10px; }
.gallery-card { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.gallery-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 0; transition: transform .3s ease; }
.gallery-card:hover img { transform: scale(1.07); }
.section-action { margin-top: 24px; text-align: center; }
.gallery-page-grid .gallery-card { cursor: pointer; }
.gallery-page-grid .gallery-card img { height: 240px; object-fit: cover; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox__image {
  max-width: min(1100px, 90vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  background: #111;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.lightbox__close { top: 18px; right: 18px; font-size: 34px; }
.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }

.faq details { background: #fff; border-radius: 12px; padding: 14px 16px; box-shadow: 0 8px 18px rgba(0,0,0,.06); margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 600; color: #0f3870; }
.faq-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; align-items: start; }
.enquiry-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow); padding: 24px; }
.enquiry-card h3 { margin: 0 0 8px; color: #0f3870; font-size: 24px; }
.enquiry-card p { margin: 0 0 14px; color: #4b5e7e; line-height: 1.6; }
.enquiry-card p i { color: #1565c0; margin-right: 8px; }
.enquiry-form { display: grid; gap: 10px; }
.enquiry-form input, .enquiry-form textarea {
  width: 100%;
  border: 1px solid #cfd8dc;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  color: #22314a;
  background: #fff;
}
.form-alert { border-radius: 10px; padding: 10px 12px; font-size: 14px; font-weight: 500; }
.form-alert--success { background: #e8f8ed; color: #1f7a38; border: 1px solid #9fd7ad; }
.form-alert--error { background: #fdeeee; color: #a53131; border: 1px solid #efbbbb; }

.cta__box {
  background: linear-gradient(130deg, #0d3f7a, #1764bf 55%, #239c8f);
  color: #fff;
  border-radius: 24px;
  text-align: center;
  padding: 56px 28px;
  box-shadow: 0 24px 44px rgba(10, 36, 78, 0.35);
  position: relative;
  overflow: hidden;
}
.cta__box::before,
.cta__box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta__box::before {
  width: 190px;
  height: 190px;
  right: -60px;
  top: -70px;
  background: radial-gradient(circle, rgba(255,255,255,0.26), transparent 70%);
}
.cta__box::after {
  width: 150px;
  height: 150px;
  left: -40px;
  bottom: -45px;
  background: radial-gradient(circle, rgba(255,122,0,0.35), transparent 70%);
}
.cta__box .section-tag {
  background: rgba(255,255,255,.15);
  color: #fff;
  position: relative;
  z-index: 2;
}
.cta__box h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.6vw, 48px);
  color: #fff;
  position: relative;
  z-index: 2;
}
.cta__box p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255,255,255,.92);
  position: relative;
  z-index: 2;
}
.cta-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 18px 0 22px;
  position: relative;
  z-index: 2;
}
.cta-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  font-size: 14px;
}
.cta-points i { color: #ffd166; }
.cta__box .hero__buttons {
  justify-content: center;
  position: relative;
  z-index: 2;
}
.cta__box .btn i { margin-right: 7px; }
.cta__box .btn--ghost {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.45);
}
.gallery-grid img { height: 230px; width: 100%; object-fit: cover; }
.contact-form { display: grid; gap: 10px; margin-top: 20px; }
.contact-form input, .contact-form textarea { border: 1px solid #cfd8dc; border-radius: 10px; padding: 12px; font: inherit; }

.footer { background: linear-gradient(120deg, #07274f, #0f3f78); color: #fff; padding: 56px 0 18px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 24px; }
.footer-brand img { width: 120px; height: auto; margin-bottom: 10px; border-radius: 10px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); }
.footer-social a:hover { background: rgba(255,255,255,.22); }
.footer__bottom { margin-top: 20px; border-top: 1px solid rgba(255,255,255,.2); padding-top: 14px; text-align: center; font-size: 14px; }
.floating-wa { position: fixed; bottom: 18px; left: 18px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; font-size: 28px; box-shadow: var(--shadow); z-index: 40; }

@media (max-width: 991px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split { grid-template-columns: 1fr; }
  .top-right { gap: 10px; }
  .nav-links { position: absolute; top: 82px; right: 4%; background: #fff; border-radius: 12px; box-shadow: var(--shadow); padding: 14px; flex-direction: column; min-width: 220px; display: none; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: inline-block; }
  .logo span { font-size: 16px; max-width: 160px; }
  .about-home__meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-card { flex: 0 0 calc((100% - 16px) / 2); }
  .faq-layout { grid-template-columns: 1fr; }
  .sticky-contact { display: none !important; }
  .mobile-quick-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    right: 12px;
    bottom: 90px;
    z-index: 95;
  }
  .mobile-quick-contact a {
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    box-shadow: var(--shadow);
    font-size: 20px;
    display: grid;
    place-items: center;
  }
  .mobile-quick-contact a:first-child { background: linear-gradient(120deg, #175bb5, #3383e2); }
  .mobile-quick-contact a:last-child { background: linear-gradient(120deg, #238b3f, #34b055); }
  .floating-wa { display: none; }
}

@media (max-width: 640px) {
  .grid-4, .grid-3, .footer__grid { grid-template-columns: 1fr; }
  .top-header { font-size: 12px; }
  .top-header__inner { padding: 8px 0; gap: 6px; }
  .top-left p { font-size: 12px; line-height: 1.4; }
  .top-right { width: 100%; justify-content: flex-start; gap: 12px; }
  .top-right a:last-child { display: none; }
  .nav-cta { display: none; }
  .hero { min-height: 50vh; }
  .hero__content { min-height: 50vh; }
  .service-card img { height: 254px; }
  .route-card img { height: 155px; }
  .car-card img { height: 350px; }
  .mobile-quick-contact { bottom: 220px; right: 10px; }  .about-home__meta { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 100%; }
}
