:root {
  --primary: #0b1f3a;
  --secondary: #f57c00;
  --dark: #071525;
  --text: #253245;
  --muted: #6d7b8f;
  --white: #ffffff;
  --light: #f4f7fb;
  --border: #dfe7f0;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(8, 22, 41, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

.topbar-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.logo-wrap img,
.footer-logo {
  height: 58px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  font-weight: 600;
  color: var(--primary);
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--secondary);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f7fbff 0%, #eef4fb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245,124,0,0.12);
  color: var(--secondary);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.hero-content h1,
.section-head h2,
.about-content h2,
.faq-intro h2 {
  color: var(--primary);
  line-height: 1.2;
}

.hero-content h1 {
  font-size: clamp(34px, 4vw, 58px);
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 22px;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-points div,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-points i,
.check-list i,
.text-link,
.route-card:hover {
  color: var(--secondary);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.quote-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card h2 {
  color: var(--primary);
  margin-bottom: 18px;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  outline: none;
  font: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--light);
}

.section-head {
  margin-bottom: 36px;
}

.section-head.center {
  text-align: center;
  max-width: 760px;
}

.section-head.center,
.faq-intro,
.about-content {
  margin-left: auto;
  margin-right: auto;
}

.section-head h2,
.about-content h2,
.faq-intro h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 14px;
}

.section-head p,
.about-content p,
.faq-intro p {
  color: var(--muted);
}

.trust-strip {
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.trust-grid {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px;
}

.trust-item {
  padding: 16px;
  text-align: center;
}

.trust-item strong {
  display: block;
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 6px;
}

.trust-item span {
  color: var(--muted);
}

.cards-grid,
.features-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card,
.feature-box,
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3,
.feature-box h3,
.testimonial-card h4 {
  color: var(--primary);
}

.service-card h3,
.service-card p,
.service-card .text-link {
  padding-left: 22px;
  padding-right: 22px;
}

.service-card h3 {
  padding-top: 22px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.service-card .text-link {
  padding-bottom: 24px;
  display: inline-flex;
  gap: 8px;
  font-weight: 700;
}

.about-grid,
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.route-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 22px;
  text-align: center;
  font-weight: 700;
  background: var(--white);
  transition: 0.25s ease;
}

.route-card:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.feature-box,
.testimonial-card {
  padding: 28px;
}

.feature-box i {
  font-size: 30px;
  color: var(--secondary);
  margin-bottom: 14px;
}

.feature-box p,
.testimonial-card p,
.testimonial-card span,
.site-footer p,
.site-footer li a,
.footer-bottom p {
  color: var(--muted);
}

.testimonial-card p {
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.faq-list summary {
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
}

.faq-list p {
  margin-top: 10px;
  color: var(--muted);
}

.site-footer {
  background: var(--dark);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 30px;
}

.site-footer h3,
.site-footer a,
.site-footer p,
.footer-bottom p {
  color: rgba(255,255,255,0.9);
}

.site-footer h3 {
  margin-bottom: 16px;
}

.site-footer ul {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-wrap {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.floating-btn {
  position: fixed;
  right: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 1000;
  font-size: 24px;
  color: var(--white);
}

.floating-btn.whatsapp {
  bottom: 88px;
  background: #25d366;
}

.floating-btn.call {
  bottom: 18px;
  background: var(--secondary);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--primary);
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .faq-wrap,
  .cards-grid,
  .features-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid,
  .route-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 16px;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 12px 0;
  }

  .hero-grid,
  .about-grid,
  .faq-wrap,
  .cards-grid,
  .features-grid,
  .testimonial-grid,
  .footer-grid,
  .trust-grid,
  .route-grid,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .quote-card,
  .feature-box,
  .testimonial-card {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

.about-hero{
background: linear-gradient(135deg,#f5f9ff,#e9f2ff);
padding:80px 0;
position:relative;
overflow:hidden;
}

.about-hero::before{
content:"";
position:absolute;
top:-100px;
left:-100px;
width:300px;
height:300px;
background:radial-gradient(circle,#ff8c00 0%,transparent 70%);
opacity:0.2;
}

.about-hero::after{
content:"";
position:absolute;
bottom:-100px;
right:-100px;
width:300px;
height:300px;
background:radial-gradient(circle,#0b2a5b 0%,transparent 70%);
opacity:0.15;
}

.section p{
text-align: justify;
line-height: 1.8;
margin-bottom: 18px;
color:#555;
font-size:16px;
}

.section h2{
margin-bottom:20px;
font-weight:600;
}