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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #eef3f8;
  color: #142235;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

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

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* TOP BAR */
.top-bar {
  background: #f5f8fc;
  border-bottom: 1px solid #dbe5f0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  gap: 18px;
  flex-wrap: wrap;
}

.top-left-links,
.top-right-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-contact,
.top-link {
  color: #30455e;
  font-size: 14px;
  font-weight: 700;
}

.top-contact:hover,
.top-link:hover {
  color: #0d2238;
}

/* HEADER */
.header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #dbe5f0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 20px;
}

.logo img {
  height: 65px;
  width: auto;
  display: block;
}

.logo {
    display: flex;
    align-items: center;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.menu a {
  color: #1d334d;
  font-size: 15px;
  font-weight: 700;
}

.menu a:hover {
  color: #0a63d8;
}

.call-btn,
.primary-btn,
.secondary-btn,
.submit-btn,
.radio-pill {
  display: inline-block;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.call-btn {
  background: #0a63d8;
  color: #ffffff;
  padding: 13px 22px;
  box-shadow: 0 10px 24px rgba(10, 99, 216, 0.18);
}

.call-btn:hover {
  background: #084fae;
}

.primary-btn {
  background: #0a63d8;
  color: #ffffff;
  padding: 14px 24px;
  box-shadow: 0 10px 24px rgba(10, 99, 216, 0.18);
}

.primary-btn:hover {
  background: #084fae;
}

.secondary-btn {
  border: 1px solid #b8c8da;
  color: #18304a;
  background: #ffffff;
  padding: 14px 24px;
}

.secondary-btn:hover {
  background: #f4f8fc;
}

.dark-secondary {
  border-color: rgba(255,255,255,0.3);
  color: #ffffff;
  background: transparent;
}

.dark-secondary:hover {
  background: rgba(255,255,255,0.08);
}

/* HERO */
.hero {
  padding: 72px 0 84px;
  background:
  linear-gradient(135deg, rgba(255,255,255,0.35), rgba(236,243,251,0.30)),
  url("../images/hero-big.jpg") center center / cover no-repeat;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  max-width: 720px;
}

.hero-tag,
.section-tag {
  color: #0a63d8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.light-tag {
  color: #9dc8ff;
}

.hero-text h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #102236;
    font-weight: 800;
    letter-spacing: 0;
    max-width: 700px;
}

.hero-description {
  color: #1b2b3a;   /* ← changed */
  font-size: 18px;
  max-width: 650px;
  margin-bottom: 28px;

  background: rgba(255,255,255,0.55);  /* ← added */
  padding: 10px 14px;                  /* ← added */
  border-radius: 10px;                 /* ← added */
  display: inline-block;               /* ← added */

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

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

.hero-trust-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust-list span {
  background: #ffffff;
  border: 1px solid #dfe7f1;
  color: #29445f;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

/* QUOTE FORM */
.quote-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  box-shadow: 0 25px 60px rgba(24, 49, 79, 0.16);
  border: 1px solid #e4ebf3;
}

.quote-box-compact {
  max-width: 500px;
  padding: 24px;
}

.quote-box h2 {
  font-size: 30px;
  margin-bottom: 8px;
  color: #132538;
}

.quote-subtext {
  color: #5d7086;
  font-size: 14px;
  margin-bottom: 20px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group label {
  display: block;
  color: #16304b;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d6e0eb;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  background: #f8fbfe;
  color: #12263b;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #0a63d8;
  background: #ffffff;
}

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

.readonly-route {
  background: #f3f7fb !important;
  color: #29445f !important;
  font-weight: 700;
}

.consent-box {
  margin-top: 2px;
  margin-bottom: 4px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #45596f;
  font-size: 12px;
  line-height: 1.6;
}

.consent-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.consent-label a {
  color: #0a63d8;
  font-weight: 700;
}

.submit-btn {
  width: 100%;
  border: none;
  background: #0a63d8;
  color: #ffffff;
  padding: 15px 18px;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(10, 99, 216, 0.18);
}

.submit-btn:hover {
  background: #084fae;
}

.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-pill {
  position: relative;
  cursor: pointer;
  border: 1px solid #d6e0eb;
  background: #f8fbfe;
  color: #16304b;
  padding: 12px 16px;
  min-width: 130px;
  text-align: center;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-pill.active {
  background: #0a63d8;
  border-color: #0a63d8;
  color: #ffffff;
}

/* QUOTE STEP PAGE */
.quote-page-section {
  padding: 72px 0 84px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(236,243,251,0.96)),
    url("../images/hero-bg.jpg") center center / cover no-repeat;
}

.quote-page-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.quote-page-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 25px 60px rgba(24, 49, 79, 0.16);
  border: 1px solid #e4ebf3;
}

.quote-page-top {
  margin-bottom: 24px;
}

.quote-page-top h1 {
  font-size: 42px;
  line-height: 1.15;
  color: #102236;
  margin-bottom: 10px;
}

.quote-page-top p {
  color: #5d7086;
  font-size: 16px;
}

.back-link {
  display: inline-block;
  margin-bottom: 16px;
  color: #0a63d8;
  font-weight: 700;
}

.route-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.route-preview-box {
  background: #f7fbff;
  border: 1px solid #dfe8f1;
  border-radius: 16px;
  padding: 16px;
}

.route-preview-box small {
  display: block;
  color: #5d7086;
  font-size: 12px;
  margin-bottom: 4px;
}

.route-preview-box strong {
  color: #132538;
  font-size: 16px;
}

/* GENERIC SECTIONS */
.section-light {
  background: #eef3f8;
  padding: 82px 0;
}

.section-white {
  background: #ffffff;
  padding: 82px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.section-text h2,
.cta-band h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #102236;
}

.section-heading p,
.section-text p,
.cta-band p {
  color: #5c7087;
  font-size: 17px;
}

/* TRUST STRIP */
.trust-strip {
  background: #ffffff;
  padding: 34px 0 28px;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-item {
  background: #f7fafd;
  border: 1px solid #e3ebf4;
  border-radius: 18px;
  padding: 24px;
}

.trust-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #11263d;
}

.trust-item p {
  color: #5a7088;
}

/* TWO COLUMN */
.two-column-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.section-image-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(17, 37, 61, 0.12);
}

.section-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-text p {
  margin-bottom: 18px;
}

.section-text .primary-btn {
  margin-top: 10px;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #f8fbfe;
  border: 1px solid #e1ebf4;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(22, 42, 66, 0.08);
}

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

.service-card-content {
  padding: 24px;
}

.service-card-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #11263b;
}

.service-card-content p {
  color: #5b7086;
  margin-bottom: 14px;
}

.text-link {
  color: #0a63d8;
  font-weight: 700;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  background: #ffffff;
  border: 1px solid #dfe8f1;
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 14px 36px rgba(17, 37, 61, 0.08);
}

.process-card span {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  background: #0a63d8;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 16px;
}

.process-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #13273e;
}

.process-card p {
  color: #5a7086;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(17, 37, 61, 0.1);
}

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

/* BENEFITS */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #dfe8f1;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(17, 37, 61, 0.08);
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #102337;
}

.benefit-card p {
  color: #5a7086;
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, #0f2135, #183553);
  padding: 78px 0;
  color: #ffffff;
}

.cta-band-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cta-band h2 {
  color: #ffffff;
}

.cta-band p {
  color: #d5e2f1;
}

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

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.faq-card {
  background: #f8fbfe;
  border: 1px solid #e1ebf4;
  border-radius: 20px;
  padding: 24px;
}

.faq-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #13273d;
}

.faq-card p {
  color: #5b7086;
}

.faq-card a {
  color: #0a63d8;
  font-weight: 700;
}

/* FOOTER */
.footer {
  background: #0e1b2a;
  padding: 54px 0 24px;
}

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

.footer-col {
  color: #c7d7e8;
  line-height: 1.9;
}

.footer-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-col a {
  color: #8ec1ff;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  text-align: center;
  color: #b6c8dc;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .hero-content,
  .two-column-section,
  .route-preview {
    grid-template-columns: 1fr;
  }

  .quote-box {
    margin-left: 0;
  }

  .service-grid,
  .process-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0;
  }

  .menu {
    justify-content: center;
    gap: 18px;
  }

  .trust-strip-grid,
  .benefit-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1,
  .quote-page-top h1 {
    font-size: 46px;
  }

  .section-heading h2,
  .section-text h2,
  .cta-band h2 {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .form-row,
  .service-grid,
  .process-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .quote-page-section {
    padding: 56px 0 64px;
  }

  .hero-text h1,
  .quote-page-top h1 {
    font-size: 38px;
  }

  .hero-description {
    font-size: 16px;
  }

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

  .logo img {
    height: 52px;
  }

  .call-btn,
  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }

  .hero-buttons,
  .cta-band-buttons {
    flex-direction: column;
    width: 100%;
  }

  .top-bar-inner {
    align-items: flex-start;
  }

  .radio-pill {
    width: 100%;
  }
}
.section-text {
    max-width: 900px;
    margin: 0 auto;
}

.section-text p {
    line-height: 1.7;
    margin-bottom: 16px;
}
.reviews-platforms {
    padding: 70px 0;
    background: #f8fafc;
}

.reviews-header {
    text-align: center;
    margin-bottom: 35px;
}

.reviews-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviews-header p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.reviews-platforms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.review-platform-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px 18px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.review-platform-card img {
    max-width: 150px;
    max-height: 38px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.review-platform-card span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
}

@media (max-width: 1100px) {
    .reviews-platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .reviews-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .reviews-platforms-grid {
        grid-template-columns: 1fr;
    }
}
.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border: 2px solid #4f7cff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f7cff;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #4f7cff;
    color: #fff;
}
