@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bluetint: #00173c;
  --redtint: #e1251a;
  --yellowtint: #ffd899;
  --whitetint: #ffffff;
  --greytint: #f9f9f9;
  --greyhovertint: #b9b9b9;
}

main {
  padding-top: 20px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Exo 2", sans-serif;
  color: var(--bluetint);
  background: var(--whitetint);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px;
}

nav {
  background-color: var(--whitetint);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* height: 80px; */
  flex-wrap: wrap;
  font-size: 1.3em;
  line-height: normal;
}

nav a {
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-grow: 1;
  justify-content: flex-end;
}
/* ================= HEADER CONTACT (DESKTOP + MOBILE) ================= */

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 4px 0;
  font-size: 0.75rem;
  line-height: 1.2;
}

/* Icon */
.header-contact-icon {
  width: 100px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Text wrapper */
.header-contact-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.2;
}

/* "Question?" */
.header-question {
  font-size: 0.75rem;
  font-weight: 600;
  color: #00173c;
  margin-bottom: 2px;
}

.header-question strong {
  font-weight: 700;
  font-size: 0.9rem;
}

/* Phone line */
.header-phone {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bluetint);
  text-decoration: none;
  white-space: nowrap; /* keep Call us + number in one line */
}

.header-phone strong {
  font-weight: 600; /* SAME weight as text */
}

.header-phone:hover {
  text-decoration: underline;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--bluetint);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

nav a {
  color: var(--bluetint);
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: var(--bluetint);
  color: var(--whitetint);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
  margin-top: 0;
  color: var(--bluetint);
}

.close {
  color: #aaa;
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.close:hover {
  color: black;
}

form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

input,
textarea,
select {
  padding: 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Improve form elements on mobile */
@media (max-width: 768px) {
  input,
  textarea,
  select {
    font-size: 16px;
    /* Prevents zoom on iOS */
    padding: 14px 12px;
  }

  input[type="file"] {
    font-size: 14px;
  }
}

button.submit {
  background: var(--bluetint);
  color: var(--whitetint);
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

button.submit:hover {
  background: #163660;
}
/* HERO */
.hero-split {
  padding: 120px 8%;

  background-image:
    linear-gradient(rgba(244, 246, 248, 0.7), rgba(244, 246, 248, 0.7)),
    url("../assets//images/logistic.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-text-side h1 {
  font-size: 2.8rem;
  color: var(--navy);
  margin-bottom: 25px;
}

.hero-text-side h3 {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-cta-box {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 18px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  align-items: center;
  justify-content: space-between; /* text left, arrow right */
  transition: all 0.3s ease;
}

.hero-pricing-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 28px;
  background: linear-gradient(135deg, #0a2540, #061a2f);
  color: #ffffff !important;

  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none !important;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}

.hero-pricing-btn:hover {
  background: linear-gradient(135deg, #061a2f, #041324);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}


.hero-btn-blue {
  background: linear-gradient(135deg, var(--bluetint), #123a6f);
}

/* Service Lists */
.section-heading-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding-left: 100px;
}

.red-bar {
  width: 4px;
  height: 28px;
  background-color: #e30613;
}

.section-icon {
  font-size: 24px;
  color: #0b1c2d;
}

.section-heading {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #0b1c2d;
  text-transform: uppercase;
}
.heading-left {
  display: flex;
  align-items: center;
  gap: 12px;
}


.heading-left h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #0b1c2d;
  text-transform: uppercase;
}

.heading-icon i {
  font-size: 28px;
  color: #0b1c2d;
}
.what-we-do {
  padding: 50px 8%;
  text-align: center;
}
.section-title {
  font-size: 2.2rem;
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
}
.section-subtitle {
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 50px;
}
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-service {
  grid-column: 1 / -1; /* spans full row */
  max-width: 600px; /* wider than other cards */
  width: 100%;
  justify-self: center; /* center it */
}
.service-item {
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}
.service-item::before {
  content: "\f0d1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--red);
  margin-right: 15px;
  margin-top: 4px;
}
.service-text h4 {
  color: var(--navy);
  margin-bottom: 4px;
}
.service-text p {
  color: var(--gray);
  font-size: 0.9rem;
}
.logistics-service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.logistics-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.logistics-service-card i {
  color: var(--redtint);
  margin-bottom: 15px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.logistics-service-card h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

/*How it works-try */



.how-it-works {
  background: linear-gradient(135deg, #0b1f3b, #00173c);
  color: #ffffff;
  padding: 90px 8%;
  text-align: center;
}
.how-it-works h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.how-it-works .subtitle {
  font-size: 1.05rem;
  opacity: 0.85;
}
.steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.step-box {
  background: rgba(255, 255, 255, 0.08); /* glass effect */
  color: #ffffff;
  padding: 40px 35px;
  border-radius: 16px;
  flex: 1;
  max-width: 420px;
  min-height: 260px;
  backdrop-filter: blur(8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.step-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.step-icon {
  font-size: 2.6rem;
  color: #e63946; /* red accent */
  margin-bottom: 18px;
}  
.step-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}
.step-divider {
  color: #ffffff;
  opacity: 0.25;
  font-size: 1.8rem;
}
.payment-note {
  margin-top: 15px;
  font-size: 0.85rem;
  opacity: 0.75;
}
/* Section Transition */
.section-transition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 70px 0 40px;
}

.section-transition .line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #ffffff, transparent);
  opacity: 0.6;
}

.section-transition .label {
  font-size: 0.9rem;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--bluetint);
  opacity: 0.85;
  text-transform: uppercase;
}

/* ===============================
   PRICING PHILOSOPHY SECTION
================================ */

.pricing-philosophy {
  position: relative;
  padding: 100px 8%;
  background: url("../assets//images/pricing.png") center / cover no-repeat;
  overflow: hidden;
}

.pricing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0.85)
  );
  z-index: 1;
}

.pricing-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.pricing-description {
  font-size: 1.05rem;
  max-width: 780px;
  margin: 0 auto 50px;
  color: var(--gray);
  line-height: 1.7;
}

/* Card */
.pricing-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 60px 45px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.pricing-intro {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 35px;
}

/* Factors */
.pricing-factors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 45px;
}

.pricing-factor {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 14px;
  background: #fdf2f0;
  font-weight: 600;
  color: var(--navy);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-factor i {
  color: var(--red);
  font-size: 1.2rem;
}

.pricing-factor:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.pricing-feature-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 40px 35px;
  margin-top: 35px;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(0, 23, 60, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-feature-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(0, 23, 60, 0.15);
}
.pricing-feature-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bluetint);
  margin-bottom: 18px;
}

.pricing-feature-title i {
  color: var(--redtint);
  font-size: 1.4rem;
}
.fees-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 520px;
}

.fees-list li {
  display: flex;
  align-items: center;
  justify-content: center;   /* centers the whole row */
  gap: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.fees-list li::before {
  content: "✓";
  color: #c62828;           /* red tint */
  font-weight: 700;
}

.pricing-note {
  font-size: 0.95rem;
  font-style: italic;
  color: #475569;
  border-left: 4px solid var(--yellowtint);
  padding-left: 14px;
}
.pricing-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}
.pricing-split-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-split-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 5px;
  background: var(--yellowtint);
  border-radius: 5px;
}

.pricing-split-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.pricing-split-box h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bluetint);
  margin-bottom: 14px;
}

.pricing-split-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.pricing-split-box ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-weight: 600;
}

.pricing-split-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3c7c4a;
  font-weight: 800;
}

.pricing-split-box .muted {
  font-size: 0.9rem;
  font-style: italic;
  color: #5f6b7a;
}


@media (max-width: 900px) {
  .pricing-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.pricing-footer {
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.online-note {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 18px;
}

.final-price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 26px 42px;
  background: linear-gradient(135deg, #00173c, #0b3a75);
  color: #ffffff;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  box-shadow:
    0 18px 40px rgba(0, 23, 60, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.final-price-box i {
  color: var(--yellowtint);
  font-size: 1.6rem;
}

.final-price-box span {
  max-width: 620px;
  line-height: 1.5;
}

/* ---------- PRICING BLOCKS ---------- */

.pricing-block {
  margin-bottom: 50px;
}

.pricing-block-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 25px;
}

.fees-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.pricing-note {
  margin-top: 25px;
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
}

.pricing-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 40px;
}

/* Existing card — nudged left naturally */
.pricing-note-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: linear-gradient(180deg, #072654, #041a3a);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  max-width: 600px;
}

.pricing-note-icon {
  background: #ffd38d;
  color: #041a3a;
  font-weight: bold;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right-side button */
.pricing-cta-btn {
  padding: 20px 48px;        /* bigger */
  font-size: 1.15rem;        /* more presence */
  font-weight: 700;
  border-radius: 999px;
  background: #c62828;
  color: #fff;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(198, 40, 40, 0.35);
}

.pricing-cta-btn:hover {
  background: #a61f1f;
  transform: translateY(-3px);
}



/* ---------- NO HIDDEN FEES HIGHLIGHT ---------- */

.pricing-highlight {
  background: #fdf2f0;
  border-radius: 18px;
  padding: 40px;
  margin: 50px 0;
}

.pricing-highlight h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.pricing-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing-highlight li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 600;
}

.pricing-highlight li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

/* ---------- SPLIT SECTIONS ---------- */

.pricing-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.pricing-split-box {
  background: #f7f9fc;
  border-radius: 16px;
  padding: 35px;
}

.pricing-split-box h4 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--navy);
}

.pricing-split-box ul {
  margin: 10px 0 15px;
  padding-left: 20px;
}

.pricing-split-box li {
  margin-bottom: 10px;
  font-weight: 600;
}

.muted {
  font-size: 0.95rem;
  color: var(--gray);
}


/* ---------- Founder        ---------- */

.founder-box {
  color: var(--whitetint);
  padding: 40px 100px;
  display: flex;
  border-radius: 8px;
  box-shadow: 0 16px 16px rgba(0, 0, 0, 0.2);
  margin-bottom: 5px;
}

.red-box {
  background: linear-gradient(to right, #505050, #acacac);
  width: 70vw;
  margin-left: calc(-50vw + 50%);
  justify-content: flex-start;
}

.blue-box {
  background: linear-gradient(to left, var(--bluetint), #2e72b6);
  width: 70vw;
  margin-right: calc(-50vw + 50%);
  margin-left: auto;
  justify-content: flex-end;
}

.founder-info {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 1000px;
}

.founder-info img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--yellowtint);
  object-fit: cover;
}

.founder-details {
  flex: 1;
}

.founder-details h3 {
  margin: 0;
  font-size: 1.6em;
}

.founder-details h5 {
  margin: 5px 0 15px;
  font-weight: normal;
  font-size: 1.1em;
  color: var(--yellowtint);
}

.founders-heading {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: #00173c;
}

.toggle-button {
  margin-top: 20px;
  padding: 12px 26px;
  background-color: var(--yellowtint);
  color: #00173c;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-button:hover {
  background-color: #f2c266;
}

.quote {
  font-style: italic;
  color: var(--whitetint);
  font-size: 1.1em;
  position: relative;
  padding: 10px 50px;
  margin: 20px 0;
}

.quote::before {
  content: "“";
  font-size: 2em;
  position: absolute;
  left: 10px;
  top: 0;
  color: var(--whitetint);
}

.quote::after {
  content: "”";
  font-size: 2em;
  position: absolute;
  right: 10px;
  bottom: -10px;
  color: var(--whitetint);
}


@media (max-width: 768px) {
  .founder-box {
    padding: 25px 20px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .red-box,
  .blue-box {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .founder-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
  }

  .founder-info img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }

  .founder-details h3 {
    font-size: 1.4em;
  }

  .founder-details h5 {
    font-size: 1em;
  }

  .quote {
    font-size: 1em;
    padding: 10px 30px;
  }
}

/* ---------- FOOTER PROMISE ---------- */

.pricing-footer {
  text-align: center;
  margin-top: 40px;
}
/* Footer company title */
.footer-company-title {
  font-size: 2.2rem;          /* bigger than before */
  font-weight: 800;
  color: var(--yellowtint);
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 1px;
}

/* Division line */
.footer-division {
  font-size: 0.95rem;
  color: #e5e7eb;
  text-align: center;
  margin: 0;
}

/* Clickable parent company */
.footer-parent-link {
  display: inline-block;
  margin-left: 4px;
  font-size: 1.05rem;        /* slightly bigger */
  font-weight: 700;
  color: var(--yellowtint);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}

.footer-parent-link:hover {
  color: #ffffff;
  border-bottom-color: var(--yellowtint);
  transform: translateY(-1px);
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  .pricing-split {
    grid-template-columns: 1fr;
  }

  .pricing-highlight,
  .pricing-split-box {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .final-price-box {
    flex-direction: column;
    padding: 22px;
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background-color: #00173c;
  color: #ffffff;
  flex-wrap: wrap;
}

.footer-left,
.footer-map {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-left,
.footer-map,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-map {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.footer-map h2 {
  border-left: none;
}

.footer-map .site-logo {
  height: 150px;
  width: auto;
  margin-bottom: 20px;
}

.footer-right {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.footer-left p,
.footer-left a {
  color: #f3f3f3;
  margin: 5px 0;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-left strong {
  color: var(--yellowtint);
}

.footer-map strong {
  color: var(--yellowtint);
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
  background: var(--bluetint);
  color: var(--yellowtint);
  border-radius: 50%;
  padding: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--yellowtint);
  color: var(--bluetint);
}

.footer-contact-button {
  padding: 16px 32px;
  font-size: 1.1em;
  border: none;
  background-color: var(--yellowtint);
  color: var(--bluetint);
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.footer-contact-button:hover {
  background: #f2c266;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  width: 30%;
  margin-left: 0%;
  text-decoration: none;
  color: inherit;
}

.logo-container:hover,
.logo-container:visited,
.logo-container:active {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

.site-logo {
  height: 85px;
  width: auto;
  display: block;
}

.company-name-multiline {
  font-size: 1em;
  line-height: 1.3; /* restores breathing space */
  font-weight: 600;
  padding: 6px 0 10px; /* 👈 THIS ADDS GAP BELOW TEXT */
}

.blue-text {
  color: var(--bluetint);
}

@media (max-width: 768px) {
  /* Navigation */
  nav {
    flex-direction: row;
    height: 70px;
    padding: 10px 20px;
    gap: 0;
    justify-content: space-between;
  }

  .logo-container {
    width: auto;
    justify-content: flex-start;
    margin-bottom: 0;
    flex: 1;
    align-items: center;
    height: 50px;
    overflow: hidden;
    gap: 8px;
  }

  /* Reduce logo and text spacing on small screens so nav contains them */
  .logo-container .site-logo {
    height: 45px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }

  .logo-container .company-name-multiline {
    font-size: 0.85rem;
    padding: 0;
    margin: 0;
    line-height: 1;
  }

  .mobile-menu-btn {
    display: flex;
    order: 2;
  }

  /* Header Contact Mobile */
  .header-contact {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--whitetint);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateX(-100%);
    visibility: hidden;
  }

  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
    z-index: 999;
  }

  nav a {
    padding: 15px 20px;
    font-size: 1.2em;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  nav a:last-child {
    border-bottom: none;
  }

  /* Footer */
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 30px 20px;
  }

  .footer-left,
  .footer-right,
  .footer-map {
    width: 100%;
    align-items: center;
  }

  .footer-map h2 {
    font-size: 1.4em;
  }

  iframe {
    width: 100% !important;
    height: 200px !important;
  }

  /* Modals */
  .modal-content {
    margin: 5% auto;
    padding: 20px;
    max-width: 90%;
  }

  /* Contact Modal */
  .modal-content form {
    gap: 15px;
  }

  .modal-content input,
  .modal-content textarea {
    padding: 10px;
  }
  .services-list-grid {
    grid-template-columns: 1fr;
  }

  .hero-service {
    grid-column: auto;
    max-width: 100%;
  }
  .pricing-card {
    padding: 45px 25px;
  }

  .pricing-factors {
    grid-template-columns: 1fr;
  }

  .pricing-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 25px 15px;
  }

  .footer-left p,
  .footer-left a {
    font-size: 0.9rem;
  }

@media (max-width: 600px) {
  .footer-company-title {
    font-size: 1.8rem;
  }

  .footer-parent-link {
    font-size: 1rem;
  }
}


  .modal-content,

  /* Touch-friendly improvements */
  button,
  .nav-link,
  .submit-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  nav {
    flex-direction: row;
    height: 60px;
    padding: 10px 20px;
  }

  .logo-container {
    width: auto;
    margin-bottom: 0;
  }

  nav a {
    padding: 6px 10px;
    font-size: 0.9em;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

main {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

/* Print Styles */
@media print {
  nav,
  .modal,
  section {
    padding: 20px;
    page-break-inside: avoid;
  }
}

/* ===============================
   SERVICE MODAL
================================ */
.service-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10000;
}

.service-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.service-modal-content {
  position: relative;

  background:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url("../assets//images//industries_background.jpg") center / cover no-repeat;

  padding: 45px 40px;
  max-width: 520px;
  width: 100%;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

  max-height: 90vh;
  overflow-y: auto;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Title spacing */
.service-modal-content h2,
.service-modal-content h3 {
  margin: 0;
  color: var(--navy);
}

/* Paragraph / content spacing */
.service-modal-content p {
  margin: 0;
  color: var(--gray);
  line-height: 1.5;
}

/* Buttons or action elements */
.service-modal-content button,
.service-modal-content .btn {
  margin-top: 15px;
}

/* Close button */
.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
  color: var(--gray);
}

.close-modal:hover {
  color: var(--red);
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .service-modal-content {
    padding: 30px 25px;
  }
}

/* Pop-in animation */
@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
  color: var(--gray);
}

.close-modal:hover {
  color: var(--red);
  transform: scale(1.1);
}
#modalDescription {
  white-space: pre-line;
}

.floating-calculator-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0b1f3b; /* dark blue */
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 40px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  /* Dark depth + white glow */
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25),
    0 0 18px rgba(255, 255, 255, 0.35);

  transition: all 0.3s ease;
  z-index: 999;
}

/* LIGHT version when on dark background */
.floating-calculator-btn.invert {
  background: #ffffff;
  color: #0b1f3b;
}

.floating-calculator-btn i {
  font-size: 18px;
}
.floating-calculator-btn:hover {
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(255, 255, 255, 0.6);
}

/* ===============================
   WHAT WE DO SECTION
================================ */

.what-we-do-section {
  position: relative;
  padding: 70px 8% 60px; /* was 100px top & bottom */
  background: url("../assets/images/whatwedo-bg.png") center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}
/* ===== WHAT WE DO HEADING ===== */

.whatwedo-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* center heading */
  gap: 14px;
  margin-bottom: 16px;
}

.whatwedo-red-bar {
  width: 4px;
  height: 28px;
  background-color: #e10600;
}

.whatwedo-icon {
  color: #0a2540; 
  font-size: 20px;
}

.whatwedo-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
}

/* Subtitle */


.whatwedo-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--bluetint);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.whatwedo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 23, 60, 0.25), rgba(0, 23, 60, 0.25));
  z-index: 1;
}

.whatwedo-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-10px);
}

.whatwedo-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  color: var(--navy);
  opacity: 0.9;
  margin-bottom: 40px;
  text-align: left;
}

.whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.whatwedo-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 35px 30px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatwedo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.whatwedo-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 10px;
  color: #ffd899;
}

.whatwedo-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}

.whatwedo-card.wide {
  grid-column: 1 / -1;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .whatwedo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .whatwedo-grid {
    grid-template-columns: 1fr;
  }

  .what-we-do-section {
    padding: 80px 6%;
  }
}

@media (max-width: 768px) {
  .whatwedo-title {
    font-size: 28px;
  }

  .whatwedo-icon {
    font-size: 18px;
  }
}
/* ===============================
   SERVICE AREAS SECTION
================================ */
/* Heading wrapper */
.service-areas-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;/* centered heading */
  gap: 12px;
  margin-bottom: 16px;
}

/* Red vertical bar */
.service-areas-bar {
  width: 4px;
  height: 28px;
  background-color: #e30613;
}

/* Icon */
.service-areas-icon {
  font-size: 22px;
  color: #0b1c2d;
}

/* Heading text */
.service-areas-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0b1c2d;
}

/* Subtitle */
.service-areas-subtitle {
  text-align: left;
  font-size: 16px;
  color: #4a5a6a;
  margin-bottom: 40px;
}

.service-areas-section {
  position: relative;
  padding: 90px 8%;
  background: url("../assets/images/service-areas-bg.png") center / cover
    no-repeat;
  overflow: hidden;
}

.service-areas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.75)
  );
  z-index: 1;
}

.service-areas-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.service-areas-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bluetint);
  margin-bottom: 10px;
}

.service-areas-subtitle {
  font-size: 1.1rem;
  color: #2a3b55;
  margin-bottom: 35px;
}

.service-areas-intro {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 30px 35px;
  margin-bottom: 60px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-areas-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
  text-align: left;
}
.service-areas-note {
  margin-top: 30px;
  max-width: 520px;
}

.service-areas-note p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1f2d3d;
  margin-bottom: 14px;
}

.service-areas-cta-text {
  font-weight: 600;
  color: var(--bluetint);
}

/* Button (reuse site style if you already have one) */
.service-areas-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 16px 42px;   /* bigger click area */
  font-size: 1.1rem;   /* larger text */
  background: var(--bluetint);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-areas-btn:hover {
  background: #0b4fa3;
  transform: translateY(-2px);
}

.centered-note {
  margin: 50px auto 0;
  max-width: 620px;
  text-align: center;
}

.service-areas-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
  text-align: center;
}

.service-areas-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px; /* space between tick and text */
  margin: 4px 0;
  font-size: 15px;
  line-height: 1.4;
}

.service-areas-list li::before {
  content: "✓";
  color: #c94a4a; /* red-tint */
  font-weight: 600;
  font-size: 16px;
}

.coverage-card,
.oop-card,
.remote-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.coverage-card h3,
.oop-card h3,
.remote-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bluetint);
  margin-bottom: 15px;
}

.coverage-map {
  width: 100%;
  max-width: 260px;
  margin-bottom: 20px;
}

.check-list,
.arrow-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.check-list li,
.arrow-list li {
  padding-left: 28px;
  margin-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4a7c3c;
  font-weight: 700;
}

.arrow-list li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: var(--bluetint);
}

.truck-image {
  width: 100%;
  margin-top: 20px;
}

.cta-button {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;

  background-color: #0b2a57; /* True North navy */
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;

  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

/* ================= FAQ SECTION ================= */
.faq-header {
  display: flex;
  align-items: center;   /* vertically center items */
  gap: 12px;             /* spacing between bar, text, and icon */
}

.faq-title {
  font-size: 44px;
  font-weight: bold;
  color: #0a2a66;
  margin: 0;
}



.faq-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}


.faq-header-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-toggle-all {
  margin-left: auto;
}
.faq-header > div {
  max-width: 70%;
}


.faq-subheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 20px;
}
.faq-subtitle {
  margin: 0; /* remove top margin */
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #92400e; /* dark amber */
}
.faq-toggle-all {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 22px;
  background-color: #0b2545;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.faq-toggle-all:hover {
  background-color: #081a33;
  color: #ffffff;
  transform: translateY(-1px);
}

.faq-toggle-all:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.25);
}

.faq-section {
  padding: 60px 20px 100px;;
  background:
    radial-gradient(
      800px circle at 85% 10%,
      rgba(255, 193, 7, 0.18),
      transparent 60%
    ),
    radial-gradient(
      700px circle at 10% 90%,
      rgba(220, 38, 38, 0.12),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffaf3 50%,
      #ffffff 100%
    );
}
.faq-container {
  position: relative;
  z-index: 1;
}

/* FAQ Cards */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  position: relative; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--navy);
}


.faq-icon {
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Mobile tweak */
@media (max-width: 600px) {
  .faq-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .faq-title {
    font-size: 2.4rem;
  }
}
/* Responsive */
@media (max-width: 900px) {
  .service-areas-grid {
    grid-template-columns: 1fr;
  }

  .service-areas-section {
    padding: 70px 6%;
  }
}

section,
footer {
  scroll-margin-top: 90px; /* adjust to your navbar height */
}