/* ============================================================
   Vithi Logistics — global stylesheet
   Design closely modelled on customsandfreight.com:
   white utility header (logo / call-us block / pill button +
   search pill), navy primary nav with dividers, full-width photo
   hero slider with square dots, photo page banners with a short
   orange underline, centred statements, photo tiles, dark photo
   CTA bands and a navy footer.

   Photos live in assets/img/*.jpg and are applied through the
   .ph-* helper classes below.
   ============================================================ */

:root {
  --navy: #1b2a5a;
  --navy-dark: #12204a;
  --navy-deep: #0b1533;
  --orange: #f04c23;
  --orange-dark: #d43e18;
  --grey-bg: #f5f7fb;
  --line: #e2e7f0;
  --text: #444f68;
  --muted: #7c86a0;
  --white: #ffffff;
  --container: 1180px;
  --font: "Mulish", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

a { color: var(--orange); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange-dark); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font); color: var(--navy); line-height: 1.25; font-weight: 800; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff;
  padding: 10px 18px; z-index: 400;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
  line-height: 1.5;
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--orange); color: #fff; }
.btn-sm { padding: 8px 26px; font-size: 11px; letter-spacing: 1.4px; }
.btn-hero {
  background: rgba(20, 33, 74, .85); color: #fff; border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 0 0 3px rgba(240, 76, 35, .0);
}
.btn-hero:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-plain { background: transparent; color: var(--navy); border: 1px solid #c9d2e2; }
.btn-plain:hover { border-color: var(--navy); }

/* ---------------- Top header ---------------- */
.top-header { background: var(--white); }
.top-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-top: 16px; padding-bottom: 16px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 78px; width: auto; display: block; }

.header-right { display: flex; align-items: center; gap: 44px; }

.header-contact { display: flex; align-items: center; gap: 13px; }
.header-contact .icon-circle {
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid var(--navy); display: flex; align-items: center; justify-content: center;
  color: var(--navy); flex-shrink: 0;
}
.header-contact .label {
  display: block; font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase;
  color: #8a93a9; font-weight: 700; line-height: 1.4;
}
.header-contact .value { font-weight: 800; font-size: 16.5px; color: var(--navy); }
.header-contact .value:hover { color: var(--orange); }

.header-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }

.header-search {
  position: relative; display: flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--navy); border-radius: 20px;
  padding: 5px 16px; width: 220px; background: #fff;
}
.header-search svg { width: 15px; height: 15px; color: var(--navy); flex-shrink: 0; }
.header-search input {
  border: 0; outline: none; width: 100%; font-family: var(--font);
  font-size: 11.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--navy);
  background: transparent;
}
.header-search input::placeholder { color: #9aa3b8; }
.search-results {
  position: absolute; top: calc(100% + 6px); right: 0; width: 260px;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 32, 74, .16); z-index: 150;
  display: none; overflow: hidden;
}
.search-results.open { display: block; }
.search-results a {
  display: block; padding: 10px 16px; font-size: 13px; font-weight: 700;
  color: var(--navy); border-bottom: 1px solid var(--line);
  text-transform: none; letter-spacing: 0;
}
.search-results a:last-child { border-bottom: 0; }
.search-results a:hover { background: var(--grey-bg); color: var(--orange); }
.search-results .none { display: block; padding: 10px 16px; font-size: 13px; color: var(--muted); }

/* ---------------- Main nav ---------------- */
.main-nav { background: var(--navy); position: sticky; top: 0; z-index: 100; }
.main-nav .container { display: flex; align-items: center; }
.nav-list { list-style: none; display: flex; align-items: stretch; }
.nav-list > li { position: relative; display: flex; }
.nav-list > li > a {
  display: flex; align-items: center;
  color: #fff; font-weight: 700;
  font-size: 12.5px; letter-spacing: 1.6px; text-transform: uppercase;
  padding: 16px 26px; position: relative;
}
.nav-list > li + li > a::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 14px; width: 1px; background: rgba(255,255,255,.35);
}
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--orange); }
.nav-list .caret { margin-left: 7px; font-size: 8px; }

/* dropdown */
.has-dropdown .dropdown {
  position: absolute; top: 100%; left: 0; min-width: 305px;
  background: var(--navy-dark);
  list-style: none; padding: 4px 0; display: none; z-index: 110;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: block; }
.dropdown a {
  display: block; padding: 12px 24px; color: #fff;
  font-weight: 700; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dropdown li:last-child a { border-bottom: 0; }
.dropdown a:hover { color: var(--orange); background: rgba(255,255,255,.04); }

/* mobile toggle */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 13px 4px; }
.nav-toggle span {
  display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------- Hero slider ---------------- */
.hero-slider {
  position: relative; overflow: hidden;
  height: clamp(440px, 62vh, 560px); background: var(--navy-dark);
}
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  background-size: cover, cover; background-position: center, center;
  display: flex; align-items: center; justify-content: center;
}
.slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,21,51,.45) 0%, rgba(11,21,51,.35) 55%, rgba(11,21,51,.55) 100%);
}
.slide-inner {
  position: relative; z-index: 3; text-align: center; max-width: 940px; padding: 0 24px;
}
.slide-inner h1, .slide-inner h2 {
  color: #fff; font-size: clamp(28px, 4.4vw, 52px); font-weight: 900;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
  text-shadow: 0 2px 22px rgba(11,21,51,.55);
}
.slide-inner p {
  color: #eef1f9; font-size: clamp(16px, 1.7vw, 21px); font-weight: 300;
  letter-spacing: .4px; max-width: 780px; margin: 0 auto 30px;
  text-shadow: 0 1px 14px rgba(11,21,51,.5);
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  background: transparent; color: rgba(255,255,255,.85); border: 0;
  width: 52px; height: 52px; cursor: pointer; font-size: 34px; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s ease;
}
.slider-arrow:hover { color: var(--orange); }
.slider-arrow.prev { left: 14px; }
.slider-arrow.next { right: 14px; }
.slider-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 11px; z-index: 5;
}
.slider-dots button {
  width: 8px; height: 8px; border: 0; background: rgba(255,255,255,.65);
  cursor: pointer; padding: 0; transition: background .2s ease;
}
.slider-dots button.is-active { background: var(--orange); }

/* ---------------- Page banner (inner pages) ---------------- */
.page-banner {
  position: relative;
  background-color: var(--navy-dark);
  background-image: url("../assets/img/banner-inner.jpg");
  background-size: cover, cover; background-position: center, center;
  padding: 86px 0 78px; text-align: center;
}
.page-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,21,51,.45), rgba(11,21,51,.6));
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 {
  color: #fff; font-size: clamp(32px, 4.6vw, 52px); font-weight: 900;
  text-transform: uppercase; letter-spacing: 3px;
  text-shadow: 0 2px 18px rgba(11,21,51,.6);
}
.page-banner .banner-rule {
  width: 74px; height: 4px; background: var(--orange); margin: 18px auto 0;
}
.page-banner .banner-sub {
  color: #dbe2f2; margin-top: 18px; font-size: 17px; font-weight: 300; letter-spacing: .4px;
  max-width: 780px; margin-left: auto; margin-right: auto;
}
.breadcrumb {
  margin-top: 16px; font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase; color: #a5b2d4;
}
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { margin: 0 9px; color: var(--orange); }

/* ---------------- Sections ---------------- */
.section { padding: 80px 0; }
.section.tint { background: var(--grey-bg); }

.section-head { text-align: center; max-width: 860px; margin: 0 auto 52px; }
.section-head h2, .section-head .h2 {
  font-size: clamp(26px, 3vw, 34px); font-weight: 800; margin-bottom: 16px;
}
.section-head .rule { width: 64px; height: 4px; background: var(--orange); margin: 0 auto 20px; }
.section-head p { color: var(--muted); font-size: 17px; }

.lead { font-size: 18px; font-weight: 400; }
.statement {
  text-align: center; max-width: 900px; margin: 0 auto;
  font-size: clamp(19px, 2.1vw, 24px); color: var(--navy); font-weight: 400; line-height: 1.6;
}
.prose p { margin-bottom: 18px; }
.prose h2 { font-size: 25px; margin: 42px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; margin: 28px 0 10px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; }
.prose .updated { color: var(--muted); font-style: italic; margin-bottom: 26px; }

/* ---------------- Photo helpers ---------------- */
.ph { background-size: cover; background-position: center; background-color: var(--navy-dark); background-repeat: no-repeat; }
.ph-hero-customs   { background-image: url("../assets/img/hero-customs.jpg"); }
.ph-hero-sea-air   { background-image: url("../assets/img/hero-sea-air.jpg"); }
.ph-hero-road      { background-image: url("../assets/img/hero-road.jpg"); }
.ph-hero-wholesale { background-image: url("../assets/img/hero-wholesale.jpg"); }
.ph-mode-sea   { background-image: url("../assets/img/mode-sea.jpg"); }
.ph-mode-air   { background-image: url("../assets/img/mode-air.jpg"); }
.ph-mode-road  { background-image: url("../assets/img/mode-road.jpg"); }
.ph-why-us     { background-image: url("../assets/img/why-us.jpg"); }
.ph-about-team { background-image: url("../assets/img/about-team.jpg"); }
.ph-cta-dark   { background-image: url("../assets/img/cta-dark.jpg"); }
.ph-strip-light{ background-image: url("../assets/img/strip-light.jpg"); }

.photo-frame { min-height: 420px; }

/* ---------------- Transport mode tiles ---------------- */
.modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.mode { background: #fff; box-shadow: 0 10px 28px rgba(18,32,74,.08); }
.mode .mode-photo {
  position: relative; height: 230px; display: flex; align-items: flex-end; justify-content: center;
}
.mode .mode-photo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,21,51,.08) 30%, rgba(11,21,51,.72) 100%);
}
.mode .mode-photo h3 {
  position: relative; z-index: 2; color: #fff; font-size: 26px; font-weight: 900;
  letter-spacing: 6px; text-transform: uppercase; padding-bottom: 20px;
}
.mode .mode-body { padding: 24px 26px 30px; text-align: center; }
.mode .mode-body p { color: var(--muted); font-size: 15px; }

/* ---------------- Service columns (home) ---------------- */
.svc-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.svc-cols.cols-3 { grid-template-columns: repeat(3, 1fr); max-width: 1020px; margin: 0 auto; }
.svc-col { text-align: center; display: flex; flex-direction: column; align-items: center; }
.svc-col .svc-icon {
  width: 86px; height: 86px; border-radius: 50%; margin-bottom: 20px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .25s ease;
}
.svc-col .svc-icon svg { width: 42px; height: 42px; }
.svc-col:hover .svc-icon { background: var(--orange); transform: translateY(-4px); }
.svc-col h3 {
  font-size: 18.5px; font-weight: 800; margin-bottom: 6px; color: var(--navy);
}
.svc-col .col-rule { width: 40px; height: 3px; background: var(--orange); margin: 8px auto 16px; }
.svc-col p { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.svc-col .svc-points {
  list-style: none; margin: 0 0 22px; padding: 0; flex-grow: 1; width: 100%;
}
.svc-col .svc-points li {
  font-size: 14.5px; color: var(--muted); padding: 7px 0;
  border-bottom: 1px solid var(--line);
}
.svc-col .svc-points li:last-child { border-bottom: 0; }

/* ---------------- Inner page: centred lead ---------------- */
.page-intro { padding: 76px 0 10px; }
.page-intro .statement { font-weight: 400; }

/* ---------------- Inner page: alternating feature rows ---------------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-photo { order: 1; }
.feature-row .feature-photo { min-height: 420px; }
.feature-row h2 { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 10px; }
.feature-row .rule { width: 64px; height: 4px; background: var(--orange); margin: 0 0 26px; }
.feature-row p { margin-bottom: 16px; }
.feature-row p:last-child { margin-bottom: 0; }

/* ---------------- Inner page: icon feature grid ---------------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-item .fi-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease;
}
.feature-item:hover .fi-icon { background: var(--orange); }
.feature-item .fi-icon svg { width: 24px; height: 24px; }
.feature-item h3 { font-size: 16.5px; margin-bottom: 5px; }
.feature-item p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------------- Inner page: requirement checklist ---------------- */
.req-band { background: var(--grey-bg); }
.req-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 34px; }
.req-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; }
.req-list .tick {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--orange);
  color: #fff; display: flex; align-items: center; justify-content: center; margin-top: 3px;
}
.req-list .tick svg { width: 12px; height: 12px; }

/* ---------------- Inner page: related service tiles ---------------- */
.related-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.rel-tile {
  position: relative; display: block; min-height: 240px; overflow: hidden;
  display: flex; align-items: flex-end;
}
.rel-tile::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,21,51,.25) 30%, rgba(11,21,51,.82) 100%);
  transition: background .25s ease;
}
.rel-tile:hover::before { background: linear-gradient(180deg, rgba(240,76,35,.3) 20%, rgba(11,21,51,.85) 100%); }
.rel-tile .rel-body { position: relative; z-index: 2; padding: 26px; width: 100%; }
.rel-tile h3 {
  color: #fff; font-size: 17px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.4px; margin-bottom: 8px;
}
.rel-tile .rel-more {
  color: var(--orange); font-size: 11.5px; font-weight: 800;
  letter-spacing: 1.6px; text-transform: uppercase;
}

/* ---------------- Why-us split ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 10px; }
.split .rule { width: 64px; height: 4px; background: var(--orange); margin: 0 0 28px; }

.why-list { list-style: none; }
.why-list li { margin-bottom: 20px; }
.why-list strong { display: block; color: var(--navy); font-size: 16.5px; font-weight: 800; margin-bottom: 2px; }
.why-list p { color: var(--muted); font-size: 15px; }

/* ---------------- Statement strip (photo background) ---------------- */
.strip {
  position: relative; padding: 90px 0;
}
.strip::before { content: ""; position: absolute; inset: 0; background: rgba(233, 239, 249, .78); }
.strip .container { position: relative; z-index: 2; }
.strip .statement { font-style: italic; font-weight: 400; }

/* ---------------- CTA band ---------------- */
.cta-band { position: relative; text-align: center; padding: 110px 0; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,21,51,.55), rgba(11,21,51,.66));
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 {
  color: #fff; font-size: clamp(30px, 4.6vw, 56px); font-weight: 900; margin-bottom: 20px;
  letter-spacing: 1px;
}
.cta-band p {
  color: #e2e8f5; font-size: 18px; font-weight: 300; letter-spacing: .3px;
  max-width: 780px; margin: 0 auto 36px;
}
.cta-band p a { color: var(--orange); font-weight: 700; }

/* ---------------- Detail pages ---------------- */
.detail-grid { display: grid; grid-template-columns: 2.1fr 1fr; gap: 52px; align-items: start; }
.detail-main h2 { font-size: 24px; margin: 40px 0 14px; }
.detail-main h2:first-child { margin-top: 0; }
.detail-main p { margin-bottom: 16px; }
.detail-main ul { list-style: none; margin-bottom: 18px; }
.detail-main ul li { position: relative; padding-left: 28px; margin-bottom: 12px; }
.detail-main ul li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px;
  background: var(--orange);
}
.sidebar { position: sticky; top: 78px; display: flex; flex-direction: column; gap: 26px; }
.side-box { background: var(--grey-bg); padding: 30px; border-top: 4px solid var(--orange); }
.side-box.navy { background: var(--navy); }
.side-box.navy h3, .side-box.navy p { color: #fff; }
.side-box.navy p { color: #ccd6ec; font-size: 15px; }
.side-box h3 { font-size: 17px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.side-box ul { list-style: none; }
.side-box ul li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.side-box ul li:last-child { border-bottom: 0; }
.side-box ul a { color: var(--navy); font-weight: 700; font-size: 13.5px; }
.side-box ul a:hover, .side-box ul a.current { color: var(--orange); }
.side-box .btn { width: 100%; margin-top: 12px; }

.callout { background: var(--grey-bg); border-left: 4px solid var(--orange); padding: 24px 28px; margin: 28px 0; }
.callout h3 { margin: 0 0 8px; font-size: 17px; text-transform: uppercase; letter-spacing: 1px; }
.callout p { margin-bottom: 0; }
.callout ul { list-style: none; margin: 0; }
.callout ul li { position: relative; padding-left: 24px; margin-bottom: 8px; }
.callout ul li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; background: var(--orange);
}

/* ---------------- Info blocks (coverage/tech) ---------------- */
.info-blocks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.info-block { background: #fff; box-shadow: 0 10px 28px rgba(18,32,74,.08); padding: 36px; }
.info-block h3 {
  font-size: 17px; margin-bottom: 6px; display: flex; align-items: center; gap: 12px;
  text-transform: uppercase; letter-spacing: 1.4px;
}
.info-block h3 svg { width: 26px; height: 26px; color: var(--orange); flex-shrink: 0; }
.info-block .col-rule { width: 40px; height: 3px; background: var(--orange); margin: 10px 0 16px; }
.info-block p { font-size: 15px; margin-bottom: 12px; }
.info-block p:last-child { margin-bottom: 0; }
.info-block ul { list-style: none; }
.info-block ul li { position: relative; padding-left: 24px; margin-bottom: 9px; font-size: 15px; }
.info-block ul li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; background: var(--orange);
}

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 52px; align-items: start; }
.contact-form { background: #fff; box-shadow: 0 12px 34px rgba(18,32,74,.10); padding: 44px; }
.contact-form h2 {
  font-size: 21px; margin-bottom: 26px; text-transform: uppercase; letter-spacing: 2px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 800; font-size: 11px;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px;
}
.form-group .req { color: var(--orange); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 4px; border: 0; border-bottom: 2px solid #cbd4e4;
  font-family: var(--font); font-size: 15px; color: var(--text); background: transparent;
  transition: border-color .2s ease; border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-bottom-color: var(--orange);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input[type="file"] { border-bottom: 0; padding: 8px 0; cursor: pointer; font-size: 13.5px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 5px; }
.form-msg { display: none; margin-top: 22px; padding: 18px 22px; font-size: 15px; }
.form-msg.show { display: block; }
.form-msg.success { background: #eef7f1; border-left: 4px solid #2f9e63; color: #1c5e3a; }
.form-msg.error { background: #fdefec; border-left: 4px solid var(--orange-dark); color: #a02a10; }

.contact-info .side-box { margin-bottom: 26px; }
.contact-info address { font-style: normal; }
.contact-info .line { display: flex; gap: 14px; margin-bottom: 18px; }
.contact-info .line svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; margin-top: 4px; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy-dark); color: #b4bfda; }
.footer-top { padding: 66px 0 44px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 38px; }
.footer-col h4 {
  color: #fff; font-size: 13px; letter-spacing: 2.4px; text-transform: uppercase; margin-bottom: 8px;
}
.footer-col .rule { width: 34px; height: 3px; background: var(--orange); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { color: #b4bfda; font-size: 14.5px; }
.footer-col a:hover { color: var(--orange); }
.footer-col address { font-style: normal; font-size: 14.5px; line-height: 1.85; }
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 64px; width: auto; }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,.12); padding: 26px 0; font-size: 13px;
  color: #8792b3; text-align: center;
}
.footer-legal p { max-width: 940px; margin: 0 auto 8px; }
.footer-legal a { color: #b4bfda; }
.footer-legal a:hover { color: var(--orange); }

/* ---------------- Cookie banner ---------------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  background: var(--white); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 26px rgba(18,32,74,.14); padding: 13px 0; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner .container { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cookie-banner p { font-size: 13px; flex: 1 1 380px; margin: 0; color: var(--muted); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { padding: 8px 22px; font-size: 11px; letter-spacing: 1px; border-radius: 4px; }

/* ---------------- Back to top ---------------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 44px; height: 44px; border: 0; cursor: pointer;
  background: var(--navy); color: #fff; font-size: 17px;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(18,32,74,.3);
}
.to-top.show { display: flex; }
.to-top:hover { background: var(--orange); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1080px) {
  .svc-cols { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .header-contact { display: none; }
}

@media (max-width: 1080px) {
  .feature-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .related-tiles { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .photo-frame { min-height: 280px; }
  .feature-row { grid-template-columns: 1fr; gap: 34px; }
  .feature-row.reverse .feature-text { order: 1; }
  .feature-row.reverse .feature-photo { order: 2; }
  .feature-row .feature-photo { min-height: 280px; }
  .feature-grid, .feature-grid.cols-3 { grid-template-columns: 1fr; }
  .req-list { grid-template-columns: 1fr; }
  .modes { grid-template-columns: 1fr; }
  .info-blocks { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .header-actions .header-search { display: none; }
  .header-actions { flex-direction: row; }

  /* mobile nav */
  .nav-toggle { display: block; }
  .main-nav .container { flex-wrap: wrap; }
  .nav-list { display: none; flex-direction: column; width: 100%; padding-bottom: 12px; }
  .nav-list.open { display: flex; }
  .nav-list > li { display: block; }
  .nav-list > li > a { padding: 13px 6px; }
  .nav-list > li + li > a::before { display: none; }
  .nav-list > li + li { border-top: 1px solid rgba(255,255,255,.12); }
  .has-dropdown .dropdown { position: static; display: none; background: rgba(255,255,255,.05); min-width: 0; }
  .has-dropdown.open-sub .dropdown { display: block; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open-sub:hover .dropdown { display: block; }
  .dropdown a { padding: 11px 26px; border-bottom: 0; }
}

@media (max-width: 640px) {
  .svc-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand img { height: 54px; }
  .section { padding: 58px 0; }
  .cta-band { padding: 80px 0; }
  .slider-arrow { display: none; }
  .contact-form { padding: 28px 22px; }
  .page-banner { padding: 64px 0 58px; }
}
