/* ============================================================
   Edgebay International — Homepage stylesheet
   ============================================================ */

:root {
  --blue: #0642a0;
  --blue-bright: #1553c4;
  --blue-dark: #0a3070;
  --navy: #0a2f6e;
  --red: #c3241e;
  --red-dark: #a81c17;
  --logo-red: #cd3238;
  --band: #2d61a9;
  --footer: #01204a;
  --footer-deep: #011a3d;
  --ink: #55627b;
  --ink-light: #7c8699;
  --line: #e3e7ee;
  --bg-soft: #f2f5fa;
  --white: #ffffff;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: 'Montserrat', 'Poppins', sans-serif; }

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo-badge { width: 54px; height: 62px; flex: none; }

.logo-text { line-height: 1; }

.logo-text .logo-line1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.5px;
  color: var(--blue);
  display: block;
}

.logo-text .logo-line2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16.1px;
  letter-spacing: 1.35px;
  color: var(--logo-red);
  display: block;
  margin-top: 3px;
}

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

.main-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #16294e;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color .2s;
}

.main-nav a:hover { color: var(--blue); }

.main-nav a.active { color: var(--blue); }

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
}

.nav-caret {
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  margin-left: 6px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 11px;
}

.phone-icon-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.phone-icon-circle svg { width: 20px; height: 20px; }

.header-phone .phone-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--blue-bright);
  line-height: 1.15;
  display: block;
}

.header-phone .phone-hours {
  font-size: 11.5px;
  color: #5d6a80;
  display: block;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 72%;
  height: calc(100% - 40px);
  background: url('../images/hero-truck.jpg') no-repeat right top;
  background-size: cover;
  z-index: 1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.55) 22%, rgba(255,255,255,0) 55%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 34px 0 130px;
  max-width: 470px;
}

.hero h1 {
  font-weight: 800;
  font-size: 46px;
  line-height: 1.13;
  letter-spacing: 0.5px;
  color: var(--blue-dark);
  text-transform: uppercase;
}

.hero h1 .accent { color: var(--red); }

.hero-sub {
  margin-top: 22px;
  font-size: 16.5px;
  color: #4c5a72;
  max-width: 400px;
}

.hero-trust {
  display: flex;
  gap: 30px;
  margin-top: 34px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.trust-item svg { width: 38px; height: 38px; flex: none; }

.trust-item span {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #24355c;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 15px 28px;
  cursor: pointer;
  border: none;
  transition: all .2s;
  white-space: nowrap;
}

.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #053580; transform: translateY(-1px); }

.btn-outline {
  background: rgba(255,255,255,0.85);
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 13.5px 34px;
}
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn .arrow { font-size: 17px; line-height: 1; }

.hero-swoosh {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-swoosh svg { display: block; width: 100%; height: auto; }

/* ============================================================
   Quote section (map + form)
   ============================================================ */

.quote-section {
  background: var(--bg-soft);
  padding: 64px 0 72px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.section-h2 {
  font-weight: 800;
  font-size: 34px;
  line-height: 1.2;
  color: var(--blue-dark);
}

.section-h2 .accent { color: var(--red); }

.quote-copy .section-h2 { font-size: 33px; }

.red-bar {
  width: 46px; height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 16px;
}

.quote-copy p {
  margin-top: 24px;
  font-size: 16px;
  color: #4c5a72;
  max-width: 400px;
}

.quote-map { margin-top: 8px; }

.quote-map img, .quote-map svg { width: 100%; height: auto; }

.quote-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(23, 43, 96, 0.10);
  padding: 34px 38px 30px;
}

.quote-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 27px;
  color: var(--blue-bright);
  margin-bottom: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.form-grid .full { grid-column: 1 / -1; }

.field { position: relative; }

.field input,
.field select {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  color: #33415e;
  background: #fff;
  border: 1.5px solid #d9dee8;
  border-radius: 10px;
  padding: 13px 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}

.field input::placeholder { color: #6b7891; }

.field select:invalid { color: #6b7891; }

.field input:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(6, 66, 160, 0.10);
}

.field .field-icon {
  position: absolute;
  right: 15px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #46536e;
  display: flex;
}

.field .field-icon svg { width: 18px; height: 18px; }

.btn-submit {
  width: 100%;
  margin-top: 20px;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.btn-submit:hover { background: var(--red-dark); transform: translateY(-1px); }

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: #5d6a80;
}

.secure-note svg { width: 14px; height: 14px; flex: none; }

/* ============================================================
   Services
   ============================================================ */

.services {
  background: #fff;
  padding: 60px 0 72px;
  text-align: center;
}

.services .section-h2 { font-size: 30px; }

.center-bar {
  width: 46px; height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 16px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 24px 32px;
  box-shadow: 0 8px 24px rgba(23, 43, 96, 0.05);
  transition: transform .2s, box-shadow .2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(23, 43, 96, 0.10);
}

.service-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon svg, .service-icon img { width: 38px; height: 38px; }

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--blue-bright);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #5d6a80;
  line-height: 1.65;
}

/* ============================================================
   Why choose (blue band)
   ============================================================ */

.why {
  position: relative;
  background: var(--band);
  padding: 56px 0 62px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 78%;
  background: url('../images/skyline.jpg') no-repeat center bottom;
  background-size: cover;
  opacity: 0.13;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 55%, rgba(0,0,0,0));
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 55%, rgba(0,0,0,0));
}

.why .container { position: relative; }

.why h2 {
  font-weight: 700;
  font-size: 27px;
  color: #fff;
}

.why .white-bar {
  width: 46px; height: 3.5px;
  background: #fff;
  border-radius: 2px;
  margin: 15px auto 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.why-item svg {
  width: 46px; height: 46px;
  margin: 0 auto 16px;
  display: block;
}

.why-item h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  margin-bottom: 9px;
  color: #fff;
}

.why-item p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   CTA strip
   ============================================================ */

.cta-strip {
  background: #fbfcfe;
  padding: 40px 0;
}

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

.cta-text h2 {
  font-weight: 800;
  font-size: 25px;
  color: var(--blue-dark);
}

.cta-text p { margin-top: 7px; font-size: 15px; color: #4c5a72; }

.cta-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #e8eefb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.cta-icon svg { width: 24px; height: 24px; }

.cta-block .label { font-size: 14px; color: #35446b; font-weight: 500; display: block; }

.cta-block .value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--blue-bright);
  display: block;
  line-height: 1.25;
}

.cta-block .label-strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--blue-dark);
  display: block;
}

.cta-block .value-red {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--red);
  display: block;
}

.cta-divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--footer);
  color: #b9c6dd;
  padding: 50px 0 0;
  font-size: 13.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1.15fr 0.9fr;
  gap: 38px;
  padding-bottom: 38px;
}

.footer-brand .logo-badge { width: 46px; height: 53px; }

.footer-brand .flogo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }

.footer-brand .logo-line1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.4px;
  color: #fff;
  display: block;
  line-height: 1;
}

.footer-brand .logo-line2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11.3px;
  letter-spacing: 1.1px;
  color: #e05b60;
  display: block;
  margin-top: 3px;
}

.footer-brand p { line-height: 1.75; color: #a7b5cf; max-width: 250px; }

.site-footer h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links li { list-style: none; margin-bottom: 11px; }

.footer-links a { color: #a7b5cf; transition: color .2s; }

.footer-links a:hover { color: #fff; }

.footer-contact li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
  color: #a7b5cf;
}

.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 3px; }

.social-row { display: flex; gap: 12px; }

.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.social-row a:hover { background: var(--blue-bright); }

.social-row svg { width: 17px; height: 17px; }

.footer-reg {
  margin-top: 22px;
  color: #a7b5cf;
  line-height: 1.9;
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  background: var(--footer-deep);
  padding: 18px 0;
  font-size: 12.5px;
  color: #8b9ab6;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a { color: #8b9ab6; }
.footer-bottom a:hover { color: #fff; }

.footer-bottom .sep { margin: 0 10px; }

/* ============================================================
   Interior pages
   ============================================================ */

.site-header--solid {
  position: relative;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}

/* --- Services dropdown --- */
.nav-drop { position: relative; display: inline-flex; align-items: center; }

.nav-drop > a { display: inline-flex; align-items: center; }

.dropdown-menu {
  display: block;
  position: absolute;
  top: 100%; left: -18px;
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .18s ease;
  z-index: 80;
}

.dropdown-inner {
  display: block;
  background: #fff;
  min-width: 235px;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(23, 43, 96, 0.16);
  padding: 10px 0;
  border: 1px solid #edf0f5;
}

.nav-drop:hover .dropdown-menu,
.nav-drop:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown-inner a {
  display: block;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #33415e;
  white-space: nowrap;
}

.dropdown-inner a:hover { background: #f2f6fd; color: var(--blue); }

.dropdown-inner a.all { font-weight: 600; color: var(--blue); border-bottom: 1px solid var(--line); margin-bottom: 6px; padding-bottom: 12px; }

/* --- Page banner --- */
.page-banner {
  position: relative;
  background: linear-gradient(120deg, #092c67 0%, #2d61a9 85%);
  color: #fff;
  padding: 54px 0 58px;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 90%;
  background: url('../images/skyline.jpg') no-repeat center bottom;
  background-size: cover;
  opacity: 0.12;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
}

.page-banner .container { position: relative; }

.page-banner h1 {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.15;
}

.breadcrumb {
  margin-top: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
}

.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb .sep { margin: 0 8px; opacity: 0.6; }

/* --- Generic content section --- */
.page-section { padding: 66px 0; }
.page-section.alt { background: var(--bg-soft); }

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}

.two-col h2, .content-h2 {
  font-weight: 800;
  font-size: 28px;
  color: var(--blue-dark);
  line-height: 1.25;
}

.two-col p, .content-p { margin-top: 18px; font-size: 15.5px; color: #4c5a72; }

/* --- Illustration panel --- */
.illus-panel {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(150deg, #eaf1fc, #d7e3f7);
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.illus-panel::before {
  content: "";
  position: absolute;
  inset: -10% -20%;
  background: url('../images/us-map.svg') no-repeat center;
  background-size: 90%;
  opacity: 0.35;
}

.illus-panel .big-icon {
  position: relative;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 44px rgba(6, 66, 160, 0.35);
}

.illus-panel .big-icon svg, .illus-panel .big-icon img { width: 66px; height: 66px; }

.illus-photo { border-radius: 18px; overflow: hidden; box-shadow: 0 18px 44px rgba(23,43,96,0.14); }
.illus-photo img { width: 100%; height: 100%; object-fit: cover; }

/* --- Check list --- */
.check-list { margin-top: 26px; }

.check-list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px;
  font-size: 15px;
  color: #3c4a66;
}

.check-list svg { width: 21px; height: 21px; flex: none; margin-top: 2px; }

/* --- Info cards --- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 8px 24px rgba(23, 43, 96, 0.05);
}

.info-card h3 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16.5px; color: var(--blue-dark); margin-bottom: 10px; }
.info-card p { font-size: 14px; color: #5d6a80; }

/* --- Service tiles (services overview) --- */
.svc-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 44px;
}

a.svc-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 24px;
  box-shadow: 0 8px 24px rgba(23, 43, 96, 0.05);
  transition: transform .2s, box-shadow .2s;
  display: block;
}

a.svc-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(23, 43, 96, 0.11); }

.svc-tile .service-icon { margin: 0 0 18px; }
.svc-tile h3 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 17px; color: var(--blue-bright); margin-bottom: 9px; }
.svc-tile p { font-size: 14px; color: #5d6a80; }
.svc-tile .more { display: inline-block; margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--blue); }

/* --- Steps (How It Works) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  counter-reset: step;
}

.step {
  position: relative;
  text-align: center;
  padding: 0 6px;
}

.step .step-num {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 26px rgba(6, 66, 160, 0.30);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(50% + 44px);
  width: calc(100% - 88px);
  border-top: 2.5px dashed #b9cae9;
}

.step h3 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16.5px; color: var(--blue-dark); margin-bottom: 9px; }
.step p { font-size: 14px; color: #5d6a80; }

/* --- Stats band --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.stat-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  padding: 28px 18px;
  box-shadow: 0 8px 24px rgba(23,43,96,0.05);
}

.stat-tile .stat-value { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 24px; color: var(--blue); display: block; }
.stat-tile .stat-label { margin-top: 6px; font-size: 13.5px; color: #5d6a80; display: block; }

/* --- FAQ accordion --- */
.faq-list { max-width: 820px; margin: 44px auto 0; }

details.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(23,43,96,0.04);
  overflow: hidden;
}

details.faq-item summary {
  padding: 18px 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--blue-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

details.faq-item summary::after {
  content: "+";
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--blue);
  flex: none;
  transition: transform .2s;
}

details.faq-item[open] summary::after { content: "\2013"; }

details.faq-item .faq-body { padding: 0 24px 20px; font-size: 14.5px; color: #4c5a72; }

/* --- CTA band (blue) --- */
.cta-band {
  background: linear-gradient(120deg, #092c67, #2d61a9);
  color: #fff;
  text-align: center;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 80%;
  background: url('../images/skyline.jpg') no-repeat center bottom;
  background-size: cover;
  opacity: 0.10;
}

.cta-band .container { position: relative; }
.cta-band h2 { font-weight: 800; font-size: 27px; }
.cta-band p { margin-top: 10px; font-size: 15.5px; color: rgba(255,255,255,0.85); }

.cta-band .actions { display: flex; gap: 16px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: #e8eefb; transform: translateY(-1px); }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }

/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(23,43,96,0.04);
}

.contact-card .cta-icon { flex: none; }
.contact-card .label { font-size: 13px; color: #5d6a80; display: block; }
.contact-card .value { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px; color: var(--blue-dark); display: block; margin-top: 2px; }
.contact-card a.value:hover { color: var(--blue); }

/* --- Other services chips --- */
.other-svcs { margin-top: 50px; }
.other-svcs h3 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px; color: var(--blue-dark); margin-bottom: 16px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }

.chip-row a {
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 999px;
  padding: 9px 20px;
  transition: all .2s;
}

.chip-row a:hover { background: var(--blue); color: #fff; }

/* --- WhatsApp float --- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  z-index: 95;
  transition: transform .2s;
}

.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }


/* --- Framed photo + gallery --- */
.photo-frame {
  position: relative;
  padding: 0 18px 18px 0;
}

.photo-frame::before {
  content: "";
  position: absolute;
  top: 22px; right: 0; bottom: 0; left: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue) 0%, #2d61a9 100%);
  z-index: 0;
}

.photo-frame::after {
  content: "";
  position: absolute;
  top: -12px; left: -12px;
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 3px dashed #c5d3ee;
  z-index: 0;
}

.photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 6px solid #fff;
  box-shadow: 0 22px 50px rgba(23, 43, 96, 0.20);
  background: #e8eefb;
}

.photo-frame .photo-badge {
  position: absolute;
  z-index: 2;
  left: 22px; bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--blue-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(23, 43, 96, 0.18);
}

.photo-frame .photo-badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1eb356;
  box-shadow: 0 0 0 3px rgba(30, 179, 86, 0.18);
}


.photo-frame.map-frame .map-card {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  border: 6px solid #fff;
  background: linear-gradient(150deg, #ffffff 0%, #edf2fb 100%);
  box-shadow: 0 22px 50px rgba(23, 43, 96, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 22px;
  overflow: hidden;
}

.photo-frame.map-frame .map-card img { width: 100%; height: auto; }

.photo-frame.map-frame .map-tag {
  position: absolute;
  z-index: 3;
  top: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(23, 43, 96, 0.14);
}

.photo-frame.map-frame .map-tag svg { width: 16px; height: 16px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.gallery-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin-left: auto; margin-right: auto; }

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  padding: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(23, 43, 96, 0.08);
  transition: transform .25s, box-shadow .25s;
}

.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(23, 43, 96, 0.14); }

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.gallery-item .cap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 10px 6px;
  font-size: 13px;
  font-weight: 500;
  color: #35446b;
}

.gallery-item .cap::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}

.gallery-intro { text-align: center; max-width: 620px; margin: 14px auto 0; font-size: 15px; color: #4c5a72; }

/* TikTok / social */
.social-row svg { width: 17px; height: 17px; }


/* --- Legal pages --- */
.legal-content { max-width: 840px; margin: 0 auto; }
.legal-content .updated { font-size: 13.5px; color: #7c8699; margin-bottom: 26px; }
.legal-content h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 21px; color: var(--blue-dark); margin: 34px 0 12px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { font-size: 15px; color: #4c5a72; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 16px 22px; }
.legal-content li { font-size: 15px; color: #4c5a72; margin-bottom: 8px; }
.legal-content a { color: var(--blue); font-weight: 500; }
.legal-content a.btn-blue, .legal-content a.btn-red { color: #fff; }
.legal-content a.btn-outline:hover { color: #fff; }
.legal-content .note { background: var(--bg-soft); border-left: 4px solid var(--blue); border-radius: 8px; padding: 14px 18px; font-size: 14px; color: #4c5a72; margin-top: 30px; }

/* ============================================================
   Mobile navigation (hamburger)
   ============================================================ */

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5.5px;
  border-radius: 8px;
  flex: none;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

.menu-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 18px 40px rgba(23, 43, 96, 0.16);
  border-top: 1px solid var(--line);
  padding: 8px 0 14px;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  z-index: 100;
}

.menu-open .mobile-nav { display: block; }

.mobile-nav a {
  display: block;
  padding: 13px 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--blue-dark);
  border-bottom: 1px solid #f0f2f6;
}

.mobile-nav a.active { color: var(--blue); }

.mobile-nav .mobile-sub a {
  padding: 10px 24px 10px 44px;
  font-weight: 500;
  font-size: 14px;
  color: #4c5a72;
  border-bottom: none;
}

.mobile-nav .mobile-sub { border-bottom: 1px solid #f0f2f6; padding: 4px 0; background: #f8fafd; }

.mobile-nav .mobile-call {
  margin: 14px 24px 0;
  border: none;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 14px;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1080px) {
  .main-nav { gap: 20px; }
  .svc-tiles { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  /* header behaves as a solid bar on every page */
  .site-header {
    position: relative;
    background: #fff;
    box-shadow: 0 1px 0 var(--line);
    padding: 12px 0;
  }
  .header-inner { gap: 12px; }
  .header-phone { margin-left: auto; }

  /* hero: text first, then the truck as a real image */
  .hero { padding-top: 0; display: flex; flex-direction: column; }
  .hero .container { order: 1; width: 100%; }
  .hero-bg {
    order: 2;
    position: relative;
    width: 100%;
    height: 250px;
    background-position: center 40%;
  }
  .hero-bg::before { display: none; }
  .hero-inner { max-width: 100%; padding: 34px 0 26px; }
  .hero-swoosh { z-index: 3; }

  .quote-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
  .cta-divider { display: none; }

  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .step:not(:last-child)::after { display: none; }
  .info-cards, .svc-tiles { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-banner { padding: 40px 0 44px; }
  .page-banner h1 { font-size: 30px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }

  /* header */
  .logo-badge { width: 42px; height: 48px; }
  .logo { gap: 9px; }
  .logo-text .logo-line1 { font-size: 22px; }
  .logo-text .logo-line2 { font-size: 11.8px; letter-spacing: 1px; }
  .header-phone .phone-hours, .header-phone .phone-number { display: none; }
  .phone-icon-circle { width: 40px; height: 40px; }

  /* hero */
  .hero h1 { font-size: 32px; line-height: 1.15; }
  .hero-sub { font-size: 15px; margin-top: 16px; }
  .hero-trust { flex-direction: column; gap: 12px; margin-top: 24px; }
  .trust-item svg { width: 30px; height: 30px; }
  .trust-item span br { display: none; }
  .trust-item span { font-size: 11.5px; }
  .hero-actions { flex-direction: column; gap: 12px; margin-top: 26px; }
  .hero-actions .btn { width: 100%; }
  .hero-bg { height: 210px; }

  /* sections */
  .quote-section { padding: 48px 0 56px; }
  .section-h2, .quote-copy .section-h2 { font-size: 27px; }
  .quote-card { padding: 26px 20px 24px; }
  .quote-card h3 { font-size: 23px; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .services { padding: 48px 0 56px; }
  .services .section-h2 { font-size: 26px; }
  .services-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
  .services-grid { gap: 16px; margin-top: 30px; }
  .service-card { padding: 28px 22px 26px; }
  .why { padding: 46px 0 50px; }
  .why h2 { font-size: 24px; }
  .why-grid { gap: 30px; margin-top: 32px; }
  .cta-strip { padding: 34px 0; }
  .cta-text h2 { font-size: 22px; }

  /* footer */
  .site-footer { padding-top: 40px; }
  .footer-grid { gap: 28px; padding-bottom: 30px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* interior */
  .page-banner { padding: 32px 0 36px; }
  .page-banner h1 { font-size: 26px; }
  .page-section { padding: 46px 0; }
  .two-col h2, .content-h2 { font-size: 24px; }
  .steps-grid, .info-cards, .svc-tiles, .stats-grid { grid-template-columns: 1fr; }
  .steps-grid { gap: 30px; margin-top: 34px; }
  .illus-panel { min-height: 230px; }
  .gallery-grid, .gallery-grid.cols-2 { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
  .photo-frame { padding: 0 12px 12px 0; margin-top: 8px; }
  .photo-frame::before { top: 14px; left: 14px; }
  .photo-frame::after { display: none; }
  .photo-frame .photo-badge { left: 14px; bottom: 26px; font-size: 11.5px; }
  .info-cards { margin-top: 30px; gap: 16px; }
  .svc-tiles { gap: 16px; margin-top: 30px; }
  .cta-band { padding: 44px 0; }
  .cta-band h2 { font-size: 23px; }
  .cta-band .actions .btn { width: 100%; }
  details.faq-item summary { padding: 15px 18px; font-size: 14.5px; }
  details.faq-item .faq-body { padding: 0 18px 16px; }

  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 29px; }
  .logo-text .logo-line1 { font-size: 20px; }
  .logo-text .logo-line2 { font-size: 10.7px; }
  .btn { padding: 14px 20px; font-size: 13px; }
}
