@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #eef3f8;
  --card: #f0f4f9;
  --text: #1b2430;
  --muted: #5f6b7a;
  --accent: #0ea5e9;
  --accent-2: #2d6cdf;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

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

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.call-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--accent), #7dd3fc);
  color: #0b1018;
  font-weight: 600;
  font-size: 0.95rem;
}

.call-strip a {
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 12px;
  border-radius: 999px;
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

img {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.logo-img {
  width: 160px;
  max-width: 100%;
  border-radius: 0;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
}

.orb-1 {
  background: rgba(14, 165, 233, 0.2);
  top: -140px;
  left: -120px;
}

.orb-2 {
  background: rgba(45, 108, 223, 0.2);
  top: 30%;
  right: -180px;
}

.orb-3 {
  background: rgba(148, 163, 184, 0.3);
  bottom: -160px;
  left: 25%;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 249, 252, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #7dd3fc);
  color: #0b1018;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.2);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-hero {
  padding: 16px 30px;
  font-size: 1rem;
}

main section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.divider {
  max-width: 1200px;
  margin: 8px auto;
  padding: 0 24px;
  height: 24px;
  display: flex;
  align-items: center;
}

.divider::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 32px;
}

.hero-note {
  color: var(--muted);
  margin-top: -12px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.trust-badges {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 24px;
  overflow: hidden;
}

.trust-badges li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
  flex: 1 1 auto;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.hero-meta strong {
  font-size: 1.4rem;
  display: block;
}

.hero-panel {
  background: var(--surface);
  padding: 24px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-media {
  display: grid;
  gap: 14px;
}

.hero-media img {
  border-radius: 20px;
  height: 320px;
}

.hero-media figcaption {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.services {
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.08), transparent);
  border-radius: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.coverage-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  background: var(--surface);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.coverage-primary {
  display: grid;
  gap: 12px;
}

.coverage-primary h3 {
  font-family: 'Space Grotesk', sans-serif;
}

.coverage-primary p {
  color: var(--muted);
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.coverage-stats div {
  background: var(--surface-soft);
  border-radius: 16px;
  padding: 10px 12px;
  text-align: center;
}

.coverage-stats strong {
  display: block;
  font-size: 1.05rem;
}

.coverage-stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.coverage-list {
  background: var(--surface-soft);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 10px;
  color: var(--muted);
}

.coverage-note {
  color: var(--muted);
  font-size: 0.9rem;
}


.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.highlight-card {
  background: var(--surface);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--border);
}

.highlight-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 10px;
}

.highlight-card p {
  color: var(--muted);
}

.highlight-list {
  list-style: none;
  background: var(--surface);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
}

.highlight-list li {
  color: var(--muted);
  padding-left: 22px;
  position: relative;
}

.highlight-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.service-card {
  background: var(--surface);
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--border);
  min-height: 200px;
}

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

.transport-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  background: var(--surface);
  border-radius: 34px;
  padding: 70px 32px;
  margin-top: 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.checklist {
  list-style: none;
  margin-top: 24px;
}

.checklist li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: var(--muted);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.transport-card {
  background: var(--card);
  border-radius: 26px;
  padding: 20px 24px 18px;
  border: 1px solid var(--border);
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  align-self: start;
  margin-top: 64px;
}

.route-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 12px;
}

.route-list:last-of-type {
  margin-bottom: 8px;
}

.transport-card .btn {
  margin-top: 6px;
}

.route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.route span {
  justify-self: end;
  text-align: right;
}

.route em {
  font-style: normal;
  color: var(--accent-2);
  font-weight: 600;
  text-align: center;
}

.route strong {
  justify-self: start;
  text-align: left;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.quote-form {
  display: grid;
  gap: 16px;
  background: var(--surface);
  border-radius: 26px;
  padding: 26px;
  border: 1px solid var(--border);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-strip span {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.feedback-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
}

.feedback-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}

.feedback-card p {
  color: var(--muted);
}

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

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

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

.step {
  background: var(--surface);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--border);
}

.step-num {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--accent);
}

.about-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.badge {
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.about-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 12px;
}

.insta-embed {
  background: var(--surface);
  border-radius: 22px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.insta-frame {
  min-height: 320px;
}

.latest {
  padding-top: 70px;
}

.gallery-placeholder {
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

.insta-cta {
  justify-self: start;
}

.contact {
  background: linear-gradient(180deg, rgba(45, 108, 223, 0.08), transparent);
}

.contact-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
}

.contact-card a {
  display: block;
  font-size: 1.1rem;
  margin: 8px 0;
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--surface);
  border-radius: 26px;
  padding: 26px;
  border: 1px solid var(--border);
  margin-top: 12px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 12px 14px;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.honey {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  background: var(--surface);
}

.call-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #7dd3fc);
  color: #0b1018;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.25);
  z-index: 20;
  display: none;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  color: var(--muted);
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 4px;
  align-content: start;
}

.footer-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.footer-contact {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.social-links {
  display: grid;
  gap: 6px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 72px;
    right: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    flex-direction: column;
    gap: 16px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .call-fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .call-strip {
    font-size: 0.9rem;
    flex-wrap: wrap;
  }
}

@media (min-width: 900px) {
  .quote-form,
  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-form button,
  .quote-form .form-note,
  .contact-form button,
  .contact-form .form-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  main section {
    padding: 40px 20px;
  }

  .divider {
    margin: 4px auto;
    height: 20px;
  }

  .trust-badges {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 110px;
  }

  .trust-badges {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .coverage-stats {
    grid-template-columns: 1fr 1fr;
  }

  .logo-img {
    width: 140px;
  }

  .hero-media img {
    height: 240px;
  }

  .call-fab {
    left: 16px;
    right: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
}
.hero-section {
  padding-top: 90px;
  padding-bottom: 52px;
}
