/* =========================================================
   BEST PACKERS AND MOVERS — DESIGN TOKENS
   Palette drawn from the brand logo: deep navy + moving-truck orange.
   Display: Poppins (bold, blocky — echoes the logo's chunky lettering)
   Body: Inter
   Signature motif: dashed "route line" dividers + route-pin markers,
   used because this is literally a route-planning business.
   ========================================================= */
:root {
  --navy-900: #0E1729;
  --navy-800: #152238;
  --navy-700: #1E3050;
  --navy-600: #2B4267;
  --orange-600: #E85A1A;
  --orange-500: #F26522;
  --orange-400: #FF8A4C;
  --orange-50: #FFF1E8;
  --bg: #F7F8FA;
  --surface: #FFFFFF;
  --border: #E4E7EE;
  --text: #1C2333;
  --text-muted: #5B6478;
  --text-on-navy: #E9EDF5;
  --text-on-navy-muted: #A9B4C9;
  --success: #1F9D55;
  --success-bg: #EAF9EF;
  --error: #D53F3F;
  --error-bg: #FDECEC;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(14, 23, 41, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 23, 41, 0.10);
  --shadow-lg: 0 16px 48px rgba(14, 23, 41, 0.16);
  --container: 1200px;
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --header-height: 64px;
}

/* ---------------------------------------------------------
   RESET
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; margin: 0 0 0.5em; color: var(--navy-900); }
p { margin: 0 0 1em; color: var(--text-muted); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--orange-500); color: #fff;
  padding: 12px 20px; z-index: 200; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* Visible focus states */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange-400);
  outline-offset: 2px;
}

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

/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 12px 22px; border-radius: var(--radius-sm); border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-primary { background: var(--orange-500); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--orange-600); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.btn-outline-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.6); backdrop-filter: blur(4px); }
.btn-outline-light:hover { background: #fff; color: var(--navy-900); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1EBE5A; }

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner { display: flex; align-items: center; gap: 14px; min-height: var(--header-height); }
.brand-logo-wide { display: block; width: auto; max-width: 176px; height: 44px; object-fit: contain; border-radius: 8px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; min-width: 0; flex: 0 1 250px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-name { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.05rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-tag { font-size: 0.7rem; color: var(--orange-400); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

.main-nav { flex: 0 0 auto; }
.main-nav ul { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.main-nav > ul > li { position: relative; }
.nav-parent-link { display: flex; align-items: center; }
.nav-parent-link > a { padding-right: 5px; }
.submenu-toggle { border: 0; background: transparent; color: var(--text-on-navy-muted); padding: 10px 7px; line-height: 1; }
.submenu-toggle i { font-size: 0.7rem; transition: transform .2s ease; }
.has-submenu:hover .submenu-toggle, .has-submenu:focus-within .submenu-toggle { color: #fff; }
.has-submenu:hover .submenu-toggle i, .has-submenu:focus-within .submenu-toggle i, .has-submenu.submenu-open .submenu-toggle i { transform: rotate(180deg); }
.main-nav .submenu { display: block; position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px; padding: 8px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu, .has-submenu.submenu-open .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li { display: block; }
.main-nav .submenu a { color: var(--navy-800); padding: 10px 12px; border-radius: 8px; font-size: 0.86rem; }
.main-nav .submenu a:hover, .main-nav .submenu a:focus-visible { color: var(--orange-600); background: var(--orange-50); }
.nav-parent-link > a::after, .submenu a::after { content: none; }
.main-nav a {
  color: var(--text-on-navy-muted); font-weight: 500; font-size: 0.92rem;
  padding: 10px 12px; border-radius: var(--radius-sm); transition: color 0.15s, background 0.15s;
  display: block;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a:focus-visible { color: #fff; background: rgba(255,255,255,0.06); }
.mobile-nav-cta { display: none; }

.header-cta { display: flex; gap: 10px; flex: 0 0 auto; }
.header-cta .btn { padding: 10px 14px; font-size: 0.88rem; }
.header-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.06); }
.header-cta .btn-outline:hover { color: var(--navy-900); border-color: #fff; background: #fff; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px; background: transparent; border: none; padding: 0; flex: 0 0 auto;
}
.hamburger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger b { display: none; }

/* Breadcrumbs */
.breadcrumbs { background: var(--surface); border-bottom: 1px solid var(--border); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 0; font-size: 0.85rem; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--orange-500); }
.breadcrumbs span[aria-current] { color: var(--navy-800); font-weight: 600; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }

/* ---------------------------------------------------------
   HERO (homepage slider)
   --------------------------------------------------------- */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; background: var(--navy-900); isolation: isolate; }
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: saturate(1.08) contrast(1.04);
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(14,23,41,0.72) 0%, rgba(14,23,41,0.46) 42%, rgba(14,23,41,0.16) 100%);
}
.hero-slider-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hero-slider-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6); background: transparent; padding: 0;
}
.hero-slider-dots button.active { background: var(--orange-500); border-color: var(--orange-500); }

.hero-content { position: relative; z-index: 1; padding: clamp(70px, 9vw, 120px) 24px; }
.hero-text { max-width: 680px; }
.hero-text h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.35rem); margin-bottom: 0.35em; text-wrap: balance; }
.hero-subhead { color: var(--orange-400); font-weight: 600; font-size: clamp(1rem, 2vw, 1.15rem); margin-bottom: 0.75em; }
.hero-desc { color: var(--text-on-navy-muted); font-size: clamp(0.95rem, 1.4vw, 1.05rem); max-width: 600px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.5em; }

/* ---------------------------------------------------------
   ROUTE-LINE SIGNATURE DIVIDER
   Used between major homepage sections as a nod to the routes/
   logistics subject matter — a dashed road line with a pin marker.
   --------------------------------------------------------- */
.content-section { padding: 72px 0; position: relative; }
.content-section.alt-bg { background: var(--surface); border-top: 1px dashed var(--border); border-bottom: 1px dashed var(--border); }
.content-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  position: relative; padding-left: 22px; margin-bottom: 0.9em;
}
.content-section h2::before {
  content: ''; position: absolute; left: 0; top: 6px; width: 12px; height: 12px;
  background: var(--orange-500); border-radius: 50%;
}
.content-section h2::after {
  content: ''; position: absolute; left: 5px; top: 20px; bottom: -8px; width: 2px;
  background-image: linear-gradient(var(--orange-500) 60%, transparent 0%);
  background-size: 2px 8px; background-repeat: repeat-y;
}
.content-section h3 { font-size: 1.15rem; }
.lead-para { font-size: 1.08rem; color: var(--text); max-width: 850px; }
.media-content-list { display: grid; gap: 56px; }
.media-content-section {
  display: grid; grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 76px); align-items: center;
  min-width: 0;
  opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.media-content-section.is-visible, .media-content-section:not(.reveal-ready) { opacity: 1; transform: none; }
.media-content-section-reverse .media-content-image { order: 2; }
.media-content-section-reverse .media-content-copy { order: 1; }
.media-content-image { position: relative; min-height: 320px; padding: 0 12px 12px 0; min-width: 0; }
.media-content-image::before {
  content: ''; position: absolute; inset: 12px 0 0 12px; border: 2px dashed var(--orange-400);
  border-radius: 18px; opacity: 0.65; z-index: 0;
}
.media-content-image img {
  position: relative; z-index: 1; width: 100%; height: 320px; object-fit: cover; max-width: 100%;
  border-radius: 16px; box-shadow: var(--shadow-lg); transition: transform 0.45s ease, filter 0.45s ease;
}
.media-content-section:hover .media-content-image img { transform: translateY(-6px) scale(1.015); filter: saturate(1.08); }
.media-content-section + .media-content-section { margin-top: clamp(48px, 6vw, 78px); }
.media-content-section { scroll-margin-top: calc(var(--header-height) + 24px); }
.media-content-image::after {
  content: ''; position: absolute; inset: 0 12px 12px 0; z-index: 2; pointer-events: none;
  border: 1px solid rgba(255,255,255,.42); border-radius: 16px;
  background: linear-gradient(125deg, rgba(255,255,255,.22), rgba(255,255,255,.02) 38%, rgba(255,255,255,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), inset 0 -20px 40px rgba(14,23,41,.06);
}
.media-content-line {
  position: absolute; z-index: 2; left: 20px; bottom: -12px; width: 64px; height: 5px;
  border-radius: 99px; background: var(--orange-500); box-shadow: 0 0 0 7px rgba(242,101,34,0.14);
}
.media-content-copy { min-width: 0; overflow-wrap: anywhere; }
.media-content-copy h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); margin-bottom: 0.55em; }
.media-content-copy p { font-size: 1.03rem; max-width: 640px; }
.media-content-copy .media-support-text { display: flex; gap: 9px; align-items: flex-start; margin-top: 18px; padding: 13px 15px; max-width: 640px; color: var(--navy-700); background: rgba(255,241,232,.72); border-left: 3px solid var(--orange-500); border-radius: 8px; font-size: .9rem; }
.media-support-text i { color: var(--orange-600); margin-top: 4px; }
.media-content-copy a { color: var(--orange-600); font-weight: 700; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.media-content-copy .section-kicker { margin-bottom: 14px; }
.local-seo-intro { max-width: 920px; margin: 0 auto 64px; padding: clamp(24px, 4vw, 42px); background: rgba(255,255,255,.72); border: 1px solid rgba(43,66,103,.12); border-radius: 18px; box-shadow: var(--shadow-sm); }
.local-seo-intro h2 { margin-bottom: .55em; }
.local-seo-intro p { max-width: 800px; font-size: 1.02rem; }
.local-seo-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.local-seo-facts span { display: flex; flex-direction: column; gap: 3px; padding: 14px; background: var(--orange-50); border: 1px solid rgba(242,101,34,.16); border-radius: 10px; color: var(--navy-800); font-size: .88rem; }
.local-seo-facts i { color: var(--orange-600); margin-bottom: 3px; }
.local-seo-facts strong { font-family: var(--font-display); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px;
  color: var(--orange-600); font-family: var(--font-display); font-size: 0.78rem;
  font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.section-kicker::before {
  content: ''; width: 28px; height: 3px; border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
}
.home-about-section { background: #fff; border-top: 1px solid var(--border); }
.home-about-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 44px; align-items: center;
}
.home-about-copy h2 { margin-bottom: 0.55em; }
.home-about-points {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px; margin: 22px 0 26px;
}
.home-about-points span {
  display: flex; align-items: center; gap: 8px; min-height: 48px;
  padding: 10px 12px; background: var(--orange-50); border: 1px solid #F7D9C7;
  border-radius: 10px; color: var(--navy-800); font-weight: 700; font-size: 0.88rem;
}
.home-about-points i { color: var(--orange-500); flex: 0 0 auto; }
.home-about-panel {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  padding: 18px; border-radius: 18px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.home-about-panel-image { width: 100%; height: 150px; grid-column: 1 / -1; object-fit: cover; border-radius: 12px; position: relative; z-index: 1; }
.home-about-panel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(255,138,76,0.24), transparent 42%);
  pointer-events: none;
}
.home-about-panel div {
  position: relative; min-height: 140px; padding: 18px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
}
.home-about-panel strong {
  display: block; color: #fff; font-family: var(--font-display);
  font-size: 1.08rem; margin-bottom: 8px;
}
.home-about-panel span { display: block; color: var(--text-on-navy-muted); font-size: 0.9rem; }

/* ---------------------------------------------------------
   PAGE HERO (inner pages)
   --------------------------------------------------------- */
.page-hero { position: relative; background: var(--navy-900); background-size: cover; background-position: center; padding: 90px 0 70px; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(14,23,41,0.92), rgba(14,23,41,0.72)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.page-hero p { color: var(--text-on-navy-muted); font-size: 1.05rem; max-width: 640px; }
.page-hero-plain { background: var(--navy-900); }
.page-hero-plain::before { display: none; }
.page-hero-plain .page-hero-overlay { display: none; }
.blog-category-tag {
  display: inline-block; background: var(--orange-500); color: #fff; font-weight: 600;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.page-hero time { color: var(--text-on-navy-muted); font-size: 0.9rem; }

/* ---------------------------------------------------------
   FEATURE / CARD GRIDS
   --------------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px; text-align: left; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card i { font-size: 1.6rem; color: var(--orange-500); margin-bottom: 14px; display: block; }
.feature-card h3 { margin-bottom: 0.4em; font-size: 1.05rem; }
.feature-card p { margin: 0; font-size: 0.92rem; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin: 24px 0; }
.card-grid-wide { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-image-link img { width: 100%; height: 190px; object-fit: cover; background: var(--navy-700); }
.card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.card-body p { font-size: 0.92rem; flex: 1; }
.card-link { color: var(--orange-500); font-weight: 600; font-size: 0.9rem; margin-top: 8px; display: inline-flex; align-items: center; gap: 6px; }
.card-link:hover { color: var(--orange-600); gap: 10px; }

.location-card .card-icon-link {
  height: 90px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); color: var(--orange-400); font-size: 1.8rem;
}
.location-card .card-image-link img, .route-card .card-image-link img { height: 155px; object-fit: cover; }
.location-card .card-body p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.3em; }

.route-card { background: var(--orange-50); border-color: #F5D9C4; }
.route-card h3 { font-size: 1rem; color: var(--navy-900); }
.route-card h3 i { color: var(--orange-500); margin-right: 4px; }

.blog-card .card-image-link { position: relative; }
.blog-category { position: absolute; top: 12px; left: 12px; background: var(--navy-900); color: #fff; font-size: 0.7rem; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-card time { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em; }

.section-cta-link { text-align: center; margin-top: 32px; }

/* ---------------------------------------------------------
   PROCESS LIST (route-marker signature numbering — this content
   IS a real ordered sequence, so numbering is meaningful here)
   --------------------------------------------------------- */
.process-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; counter-reset: step; }
.process-list li {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 22px 20px 20px; position: relative; border-top: 3px solid var(--orange-500);
}
.process-list h3 { font-size: 0.98rem; margin-bottom: 0.35em; color: var(--navy-900); }
.process-list p { font-size: 0.85rem; margin: 0; }
.process-list-7 { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.media-content-section + h2,
.media-content-section + .check-grid,
.media-content-section + .process-list { margin-top: clamp(28px, 4vw, 48px); }

/* ---------------------------------------------------------
   CHECK GRID / BENEFIT LIST
   --------------------------------------------------------- */
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin: 20px 0 32px; }
.check-item { display: flex; align-items: flex-start; gap: 11px; min-height: 64px; padding: 15px 16px; font-size: 0.92rem; color: var(--navy-800); background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,241,232,.58)); border: 1px solid rgba(242,101,34,.16); border-radius: 12px; box-shadow: 0 8px 22px rgba(14,23,41,.06); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.check-item:hover { transform: translateY(-3px); border-color: rgba(242,101,34,.4); box-shadow: 0 14px 28px rgba(14,23,41,.1); }
.check-item i { color: var(--success); margin-top: 3px; font-size: 1.05rem; }
.service-detail-content > h2 { margin-top: 54px; margin-bottom: 20px; }
.service-detail-content > h2:first-of-type { margin-top: 40px; }
.service-detail-content > .process-list { padding: 18px; margin: 0 0 38px; background: linear-gradient(135deg, rgba(230,238,248,.72), rgba(255,241,232,.7)); border: 1px solid rgba(43,66,103,.12); border-radius: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,.8); }
.service-detail-content > .process-list li { background: rgba(255,255,255,.78); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.86); border-top: 3px solid var(--orange-500); box-shadow: 0 10px 22px rgba(14,23,41,.07); }
.service-detail-content > .process-list li:hover { border-top-color: var(--navy-700); }
.service-detail-content > .benefit-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; margin: 18px 0 32px; }
.service-detail-content > .benefit-list li { padding: 13px 16px 13px 34px; position: relative; color: var(--navy-800); background: rgba(255,255,255,.72); border: 1px solid var(--border); border-radius: 10px; }
.service-detail-content > .benefit-list li::before { content: '\2713'; position: absolute; left: 13px; color: var(--success); font-weight: 800; }
.benefit-list { margin: 0 0 24px; padding-left: 0; }
.benefit-list li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--text); }
.benefit-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--orange-500); font-weight: 700; }

/* ---------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; position: relative; }
.testimonial-card p { color: var(--text); font-style: italic; margin-bottom: 1em; }
.testimonial-card span { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */
.faq-section { padding: 64px 0; background: var(--surface); border-top: 1px dashed var(--border); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; text-align: left;
  background: none; border: none; padding: 18px 4px; font-family: var(--font-display); font-weight: 600;
  font-size: 1rem; color: var(--navy-900);
}
.faq-question i { color: var(--orange-500); transition: transform 0.2s ease; flex-shrink: 0; margin-left: 12px; }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-answer p { padding: 0 4px 18px; margin: 0; }

/* ---------------------------------------------------------
   BOOKING / CONTACT FORM
   --------------------------------------------------------- */
.cta-section { padding: 72px 0; background: var(--navy-900); }
.cta-section h2 { color: #fff; text-align: center; }
.cta-section h2::before, .cta-section h2::after { display: none; }
.booking-form-wrap {
  background: var(--surface); border-radius: var(--radius-lg); padding: 40px; max-width: 960px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.booking-form-wrap h2 { text-align: left; color: var(--navy-900); }
.booking-form-wrap h2::before, .booking-form-wrap h2::after { display: none; }
.form-subtext { margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.quote-form-compact {
  max-width: none; padding: 26px; border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #fff7f2 100%);
  border: 1px solid rgba(242,101,34,0.18);
}
.quote-form-compact h2 {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}
.quote-form-compact h2::before {
  content: ''; display: inline-block; width: 10px; height: 30px;
  border-radius: 999px; background: linear-gradient(180deg, var(--orange-400), var(--orange-600));
}
.compact-form-grid {
  display: grid; grid-template-columns: 1.05fr 1.05fr 1.15fr 1fr 1fr auto;
  gap: 12px; align-items: end;
}
.compact-form-grid .form-field label {
  margin-bottom: 6px; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.03em; color: var(--navy-700);
}
.compact-form-grid .form-field input,
.compact-form-grid .form-field select {
  height: 48px; background: #fff; border-color: rgba(43,66,103,0.18);
  box-shadow: 0 8px 20px rgba(14,23,41,0.05);
}
.compact-submit { min-height: 48px; padding: 11px 20px; border-radius: 10px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--navy-900); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--bg); color: var(--text);
  transition: border-color 0.15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--orange-500); outline: none; background: #fff; }
.form-field textarea { resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 16px; margin-bottom: 0; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.alert { display: flex; gap: 14px; padding: 18px 22px; border-radius: var(--radius-md); margin-bottom: 24px; align-items: flex-start; }
.alert i { font-size: 1.3rem; margin-top: 2px; }
.alert strong { display: block; margin-bottom: 4px; }
.alert p, .alert ul { margin: 0; }
.alert-success { background: var(--success-bg); color: #14622F; }
.alert-success i { color: var(--success); }
.alert-error { background: var(--error-bg); color: #8C2323; }
.alert-error i { color: var(--error); }
.alert-error ul { padding-left: 18px; list-style: disc; }

/* ---------------------------------------------------------
   CONTACT PAGE
   --------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.contact-list i { color: var(--orange-500); width: 18px; text-align: center; }
.map-embed { margin-top: 24px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.contact-form-wrap .form-field { margin-bottom: 4px; }

/* ---------------------------------------------------------
   ESTIMATE TOOL
   --------------------------------------------------------- */
.estimate-tool { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; max-width: 780px; }
.estimate-result { margin-top: 18px; font-weight: 600; color: var(--navy-900); background: var(--orange-50); padding: 14px 18px; border-radius: var(--radius-sm); display: none; }
.estimate-result.show { display: block; }

/* ---------------------------------------------------------
   GALLERY
   --------------------------------------------------------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-btn {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 999px;
  padding: 8px 18px; font-size: 0.88rem; font-weight: 600; color: var(--text-muted);
}
.filter-btn.active, .filter-btn:hover { border-color: var(--orange-500); color: var(--orange-500); background: var(--orange-50); }
.gallery-grid { columns: 4 260px; column-gap: 18px; }
.gallery-item { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius-md); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(14,23,41,0.85)); color: #fff; font-size: 0.8rem; padding: 24px 12px 10px; }
.gallery-item[hidden] { display: none; }

.lightbox {
  position: fixed; inset: 0; background: rgba(14,23,41,0.94); z-index: 300;
  display: none; align-items: center; justify-content: center; flex-direction: column; gap: 16px; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 78vh; border-radius: var(--radius-md); }
.lightbox p { color: #fff; margin: 0; }
.lightbox-close { position: absolute; top: 24px; right: 32px; background: none; border: none; color: #fff; font-size: 2.4rem; line-height: 1; }

.gallery-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 20px; }
.gallery-preview-grid img { border-radius: var(--radius-md); height: 160px; object-fit: cover; }

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: var(--text-on-navy-muted); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand { margin-bottom: 14px; }
.footer-brand .brand-name { font-size: 1.1rem; }
.footer-col h3 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--orange-400); }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--orange-500); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { margin: 0; font-size: 0.82rem; }
.footer-bottom ul { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom ul a { font-size: 0.82rem; }
.footer-bottom ul a:hover { color: var(--orange-400); }

/* ---------------------------------------------------------
   MOBILE STICKY CTA BAR
   --------------------------------------------------------- */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--navy-900); border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}
.mobile-cta-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: var(--text-on-navy-muted); font-size: 0.68rem; font-weight: 600; padding: 10px 0 8px;
}
.mobile-cta-bar a i { font-size: 1.15rem; }
.mobile-cta-bar a:nth-child(2) { color: #25D366; }
.mobile-cta-bar a:nth-child(3) { color: var(--orange-400); }

/* ---------------------------------------------------------
   MISC
   --------------------------------------------------------- */
.legal-content { max-width: 820px; }
.legal-content h2 { margin-top: 1.6em; }
.error-404 { text-align: center; padding: 120px 0; }
.error-404 h1 { font-size: 3rem; }
.blog-post .content-section h2 { margin-top: 1.4em; }

/* ---------------------------------------------------------
   BRAND EXPERIENCE LAYER
   Navy and orange are kept high-contrast so the interface feels
   unmistakably connected to the moving-truck identity.
   --------------------------------------------------------- */
:root {
  --navy-950: #080f1f;
  --orange-glow: rgba(242, 101, 34, 0.28);
  --glass: rgba(255, 255, 255, 0.78);
  --glass-dark: rgba(16, 29, 53, 0.76);
  --shadow-float: 0 18px 45px rgba(14, 23, 41, 0.14);
}

body {
  background: radial-gradient(circle at 8% 12%, rgba(242, 101, 34, 0.07), transparent 24rem), var(--bg);
}
.site-header {
  background: rgba(8, 15, 31, 0.88);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  box-shadow: 0 8px 24px rgba(8, 15, 31, 0.16);
}
.brand-mark {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(145deg, var(--orange-400), var(--orange-600));
  box-shadow: 0 8px 20px var(--orange-glow);
  transform: rotate(-3deg);
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand:hover .brand-mark { transform: rotate(0) translateY(-2px); box-shadow: 0 12px 28px var(--orange-glow); }
.brand-logo { width: 100%; height: 100%; object-fit: contain; border-radius: inherit; }
.main-nav a { position: relative; }
.main-nav a::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px; background: var(--orange-400); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.hero { min-height: min(720px, calc(100vh - var(--header-height))); }
.hero::after, .page-hero::after { content: ''; position: absolute; inset: auto 0 0; height: 64px; background: linear-gradient(transparent, rgba(8, 15, 31, .32)); pointer-events: none; }
.hero-text { animation: hero-rise .7s ease both; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.content-section { padding: clamp(46px, 5vw, 68px) 0; }
.content-section:nth-of-type(even) { background-image: linear-gradient(135deg, rgba(255,255,255,.55), transparent 55%); }
.content-section h2 { letter-spacing: -.02em; }
.feature-card, .card, .process-list li, .contact-form-wrap, .estimate-tool, .booking-form-wrap {
  box-shadow: var(--shadow-sm);
  transition: transform .28s cubic-bezier(.2,.75,.25,1), box-shadow .28s ease, border-color .28s ease;
}
.feature-card:hover, .card:hover, .process-list li:hover, .contact-form-wrap:hover, .estimate-tool:hover {
  transform: translateY(-8px) rotateX(1deg);
  box-shadow: var(--shadow-float);
  border-color: rgba(242, 101, 34, .4);
}
.feature-card { position: relative; overflow: hidden; }
.feature-card::after { content: ''; position: absolute; width: 100px; height: 100px; right: -45px; top: -45px; border-radius: 50%; background: rgba(242, 101, 34, .09); }
.card-image-link img { transition: transform .5s cubic-bezier(.2,.75,.25,1), filter .5s ease; }
.card-image-link { position: relative; overflow: hidden; }
.card:not(.service-card) .card-image-link::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border: 1px solid rgba(255,255,255,.35); background: linear-gradient(125deg, rgba(255,255,255,.2), transparent 42%, rgba(255,255,255,.07));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.48);
}
.card:hover .card-image-link img { transform: scale(1.06); filter: saturate(1.08); }
.btn { box-shadow: 0 8px 18px rgba(14, 23, 41, .10); }
.btn-primary { background: linear-gradient(135deg, var(--orange-400), var(--orange-600)); }
.btn-primary:hover { background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); }
.page-hero { padding: clamp(42px, 5vw, 64px) 0 clamp(34px, 4vw, 52px); }
.page-hero-plain { background: linear-gradient(118deg, var(--navy-950), var(--navy-800) 62%, #244265); }
.booking-form-wrap, .contact-form-wrap, .estimate-tool { background: var(--glass); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.72); }
.form-field input, .form-field select, .form-field textarea { background: rgba(247,248,250,.74); border-color: rgba(43,66,103,.18); }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: rgba(242,101,34,.5); }
.site-footer { background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; width: 340px; height: 340px; right: -140px; top: -180px; border: 1px solid rgba(242,101,34,.28); border-radius: 50%; box-shadow: 0 0 0 32px rgba(242,101,34,.04), 0 0 0 64px rgba(242,101,34,.025); }
.footer-grid, .footer-bottom-inner { position: relative; z-index: 1; }
.footer-brand .brand-mark { width: 42px; height: 42px; }
.footer-brand .brand-tag { display: block; }
.mobile-cta-bar { background: rgba(8,15,31,.94); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.reveal-ready { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal-ready.is-visible { opacity: 1; transform: translateY(0); }
.page-hero.reveal-ready { transform: none; }
.media-content-section:not(.reveal-ready) { opacity: 1; transform: none; }

@media (max-width: 900px) {
  body.nav-open { overflow: hidden; }
  .main-nav { background: rgba(8,15,31,.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
  .hamburger { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.08); align-items: center; gap: 4px; }
  .hamburger b { display: block; color: rgba(255,255,255,.72); font-size: .52rem; font-weight: 600; line-height: 1; }
  .hamburger span { width: 22px; }
  .hamburger.open { background: var(--orange-600); }
}
@media (max-width: 480px) {
  .header-inner { gap: 10px; }
  .brand { gap: 9px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: .96rem; }
  .hero { min-height: 630px; }
  .hero-text h1 { font-size: clamp(1.8rem, 9vw, 2.35rem); }
  .hero-desc { font-size: .95rem; }
  .booking-form-wrap, .contact-form-wrap, .estimate-tool { padding: 22px 18px; border-radius: 16px; }
  .mobile-cta-bar a { min-height: 62px; }
}

/* Keep the mobile action bar evenly sized on narrow screens and safe-area phones. */
@media (max-width: 900px) {
  .mobile-cta-bar {
    width: 100%;
    min-height: 62px;
    padding: 4px max(6px, env(safe-area-inset-left)) max(4px, env(safe-area-inset-bottom)) max(6px, env(safe-area-inset-right));
    overflow: hidden;
    box-sizing: border-box;
  }
  .mobile-cta-bar a {
    flex: 1 1 0;
    min-width: 0;
    min-height: 54px;
    width: 33.333%;
    padding: 7px 2px 5px;
    justify-content: center;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
  }
  .mobile-cta-bar a span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-cta-bar a i { line-height: 1; }
}


/* ---------------------------------------------------------
   BRAND SERVICE CARD INTERACTIONS
   Uses the supplied logo palette: deep navy + moving-truck orange.
   --------------------------------------------------------- */
.service-card {
  --card-pointer-x: 50%;
  --card-pointer-y: 50%;
  --card-tilt-x: 0deg;
  --card-tilt-y: 0deg;
  position: relative;
  isolation: isolate;
  border-color: rgba(14, 23, 41, 0.12);
  box-shadow: 0 10px 25px rgba(14, 23, 41, 0.08);
  transform: perspective(1000px) translateY(0) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x));
  transition: transform .32s cubic-bezier(.2,.75,.25,1), box-shadow .32s ease, border-color .32s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(242,101,34,.75), rgba(14,23,41,.18) 45%, rgba(242,101,34,.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .32s ease;
  pointer-events: none;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,.18), transparent 68%);
  transform: translate(calc(var(--card-pointer-x) - 90px), calc(var(--card-pointer-y) - 90px));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
  z-index: 2;
}
.service-card .card-image-link {
  position: relative;
  display: block;
  height: 215px;
  overflow: hidden;
  background: var(--navy-800);
}
.service-card .card-image-link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.24) 48%, transparent 72%);
  transform: translateX(-125%);
  transition: transform .75s ease;
  pointer-events: none;
}
.service-card .card-image-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 44%, rgba(8,15,31,.3) 100%);
  opacity: .5;
  transition: opacity .3s ease;
  pointer-events: none;
}
.service-card .card-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  filter: saturate(.98) contrast(1.01);
  transition: transform .6s cubic-bezier(.2,.75,.25,1), filter .45s ease;
}
.service-card .card-body {
  position: relative;
  z-index: 3;
  background: linear-gradient(180deg, #fff 0%, #fff 78%, #fff8f3 100%);
}
.service-card .card-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400), transparent);
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform .32s ease;
}
.service-card .card-link {
  position: relative;
  width: fit-content;
  color: var(--orange-600);
  transition: color .2s ease, gap .25s ease, transform .25s ease;
}
.service-card .card-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 18px;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.service-card .card-link i { transition: transform .25s ease; }
.service-card:hover,
.service-card:focus-within {
  transform: perspective(1000px) translateY(-12px) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x));
  border-color: rgba(242,101,34,.42);
  box-shadow: 0 22px 42px rgba(14,23,41,.16), 0 8px 24px rgba(242,101,34,.12);
}
.service-card:hover::before,
.service-card:focus-within::before,
.service-card:hover::after,
.service-card:focus-within::after { opacity: 1; }
.service-card:hover .card-image-link::before,
.service-card:focus-within .card-image-link::before { transform: translateX(125%); }
.service-card:hover .card-image-link::after,
.service-card:focus-within .card-image-link::after { opacity: .18; }
.service-card:hover .card-image-link img,
.service-card:focus-within .card-image-link img {
  transform: scale(1.09);
  filter: saturate(1.14) contrast(1.04);
}
.service-card:hover .card-body::before,
.service-card:focus-within .card-body::before { transform: scaleX(1); }
.service-card:hover .card-link,
.service-card:focus-within .card-link { color: var(--orange-500); gap: 10px; transform: translateX(2px); }
.service-card:hover .card-link::after,
.service-card:focus-within .card-link::after { transform: scaleX(1); }
.service-card:hover .card-link i,
.service-card:focus-within .card-link i { transform: translateX(3px); }
.service-card .card-image-link:focus-visible { outline: 3px solid var(--orange-400); outline-offset: -3px; }

@media (max-width: 768px) {
  .service-card .card-image-link { height: 220px; }
  .service-card:hover,
  .service-card:focus-within { transform: perspective(1000px) translateY(-6px) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x)); }
}
@media (hover: none) {
  .service-card:hover { transform: none; box-shadow: 0 10px 25px rgba(14,23,41,.08); }
  .service-card:hover .card-image-link img { transform: none; filter: saturate(.98) contrast(1.01); }
  .service-card:hover .card-image-link::before { transform: translateX(-125%); }
  .service-card:hover .card-link { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card::before,
  .service-card::after,
  .service-card .card-image-link::before,
  .service-card .card-image-link::after,
  .service-card .card-image-link img,
  .service-card .card-body::before,
  .service-card .card-link,
  .service-card .card-link::after,
  .service-card .card-link i { transition: none !important; }
  .service-card:hover,
  .service-card:focus-within { transform: none; }
}

/* Full supplied logo sizing: artwork already contains the brand name/tagline. */
.brand-logo-wide {
  display: block;
  width: 176px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
  background: #fff;
  padding: 2px 7px;
  box-shadow: 0 8px 20px rgba(242,101,34,.16);
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand:hover .brand-logo-wide,
.brand:focus-visible .brand-logo-wide {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(242,101,34,.28);
}
.footer-brand .brand-logo-wide {
  width: 240px;
  height: 82px;
  padding: 4px 10px;
}
@media (max-width: 900px) {
  .brand-logo-wide { width: 154px; height: 42px; }
}
@media (max-width: 480px) {
  .brand-logo-wide { width: 144px; height: 44px; padding: 2px 5px; }
  .footer-brand .brand-logo-wide { width: 220px; height: 74px; }
}


/* ---------------------------------------------------------
   HOMEPAGE CONTENT FLOW POLISH
   --------------------------------------------------------- */
.section-intro {
  max-width: 780px;
  margin: -0.35rem 0 2rem;
  color: var(--text-muted);
  font-size: 1.02rem;
}
.services-preview-section {
  background: linear-gradient(180deg, #fff 0%, #fff9f5 100%);
  border-top: 1px solid rgba(242,101,34,.12);
  border-bottom: 1px solid rgba(242,101,34,.1);
}
.services-preview-section .card-grid {
  margin-top: 26px;
}
.services-preview-section .section-cta-link {
  margin-top: 38px;
}
.services-preview-section .btn-primary {
  border: 0;
  color: #fff;
}
.why-choose-section {
  background: linear-gradient(135deg, #fff 0%, #fff7f1 54%, #f6f8fb 100%);
}
.why-choose-section .feature-grid {
  gap: 18px;
}
.why-choose-section .feature-card {
  position: relative;
  min-height: 180px;
  padding: 26px 24px 24px;
  overflow: hidden;
  border-color: rgba(242,101,34,.16);
  background: rgba(255,255,255,.9);
}
.why-choose-section .feature-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange-400), var(--orange-600));
}
.why-choose-section .feature-card i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--orange-50);
  color: var(--orange-600);
}
.process-section {
  background: linear-gradient(135deg, #f7f8fa 0%, #fff 58%, #fff7f2 100%);
}
.process-section .section-intro {
  margin-bottom: 28px;
}
.process-list-7 {
  gap: 18px;
}
.process-list-7 li {
  min-height: 168px;
  padding: 28px 22px 22px;
  border-top-width: 4px;
  transition: transform .28s cubic-bezier(.2,.75,.25,1), box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.process-list-7 li:hover,
.process-list-7 li:focus-within {
  transform: translateY(-7px);
  border-color: var(--orange-400);
  background: #fff;
  box-shadow: 0 16px 32px rgba(14,23,41,.12), 0 5px 15px rgba(242,101,34,.1);
}
.process-list-7 li::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 22px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--orange-500);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(242,101,34,.1);
}
.process-list-7 h3 {
  color: var(--navy-900);
}
.process-list-7 p {
  margin-bottom: 0;
}
.areas-section {
  background: linear-gradient(180deg, #f7f8fa 0%, #fff 100%);
}
@media (max-width: 768px) {
  .section-intro { font-size: .96rem; margin-bottom: 1.5rem; }
  .services-preview-section .card-grid { margin-top: 18px; }
  .why-choose-section .feature-card { min-height: 0; }
  .process-list-7 li { min-height: 0; padding-top: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .process-list-7 li { transition: none !important; }
  .process-list-7 li:hover,
  .process-list-7 li:focus-within { transform: none; }
}


/* ---------------------------------------------------------
   MODERN CONTACT FORM + FOOTER
   --------------------------------------------------------- */
.booking-form-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242,101,34,.16);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,247,241,.92));
  box-shadow: 0 22px 55px rgba(14,23,41,.13), 0 6px 18px rgba(242,101,34,.06);
}
.booking-form-wrap::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  top: -150px;
  right: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,.18), rgba(242,101,34,0) 70%);
  pointer-events: none;
}
.booking-form-wrap::after {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  bottom: -130px;
  left: -90px;
  border: 1px solid rgba(14,23,41,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(14,23,41,.025), 0 0 0 44px rgba(242,101,34,.035);
  pointer-events: none;
}
.booking-form-wrap > * { position: relative; z-index: 1; }
.booking-form-wrap h2 {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}
.booking-form-wrap h2::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 34px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-400), var(--orange-600));
  box-shadow: 0 6px 14px var(--orange-glow);
}
.booking-form .form-field { position: relative; }
.booking-form .form-field label {
  margin-bottom: 7px;
  color: var(--navy-800);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.booking-form .form-field input,
.booking-form .form-field select,
.booking-form .form-field textarea {
  border: 1px solid rgba(43,66,103,.18);
  background: rgba(255,255,255,.78);
  box-shadow: 0 5px 16px rgba(14,23,41,.035);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}
.booking-form .form-field input:hover,
.booking-form .form-field select:hover,
.booking-form .form-field textarea:hover {
  border-color: rgba(242,101,34,.48);
  background: #fff;
}
.booking-form .form-field input:focus,
.booking-form .form-field select:focus,
.booking-form .form-field textarea:focus {
  border-color: var(--orange-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(242,101,34,.12), 0 8px 20px rgba(14,23,41,.07);
  transform: translateY(-1px);
}
.booking-form .form-field textarea { min-height: 100px; }
.booking-form .form-actions {
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed rgba(242,101,34,.26);
}
.booking-form .form-actions .btn {
  min-height: 52px;
  border-radius: 11px;
  font-weight: 800;
  box-shadow: 0 11px 22px rgba(14,23,41,.12);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.booking-form .form-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(14,23,41,.16);
}
.booking-form .form-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  max-width: 720px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: .78rem;
}
.booking-form .form-note::before {
  content: '\f023';
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--orange-600);
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.quote-form-compact {
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(14,23,41,.12), 0 5px 16px rgba(242,101,34,.08);
}
.quote-form-compact .compact-form-grid { position: relative; z-index: 1; }
.quote-form-compact .form-field input,
.quote-form-compact .form-field select { min-height: 50px; }
.quote-form-compact .compact-submit { min-height: 50px; }

/* Footer content hierarchy and brand-led surfaces. */
.site-footer {
  padding-top: 78px;
  background: radial-gradient(circle at 10% 0%, rgba(242,101,34,.12), transparent 22rem), linear-gradient(135deg, #080f1f 0%, #10213b 62%, #162d4e 100%);
}
.footer-grid {
  grid-template-columns: minmax(240px, 1.55fr) repeat(4, minmax(130px, 1fr));
  gap: 24px;
  align-items: start;
}
.footer-grid > .footer-col {
  min-width: 0;
}
.footer-grid > .footer-col:first-child {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 35px rgba(0,0,0,.12);
}
.footer-brand { margin-bottom: 18px; }
.footer-brand .brand-logo-wide {
  box-shadow: 0 10px 24px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.12);
}
.footer-description {
  max-width: 320px;
  color: rgba(233,237,245,.76);
  font-size: .9rem;
  line-height: 1.7;
}
.footer-promise {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 18px 0;
  padding: 12px 13px;
  border: 1px solid rgba(242,101,34,.24);
  border-radius: 12px;
  background: rgba(242,101,34,.08);
}
.footer-promise > i {
  color: var(--orange-400);
  font-size: 1.15rem;
  margin-top: 2px;
}
.footer-promise strong,
.footer-promise small { display: block; }
.footer-promise strong { color: #fff; font-size: .86rem; }
.footer-promise small { margin-top: 2px; color: rgba(233,237,245,.7); font-size: .74rem; line-height: 1.45; }
.footer-col h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #fff;
  font-size: .86rem;
  letter-spacing: .085em;
}
.footer-col h3::after {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange-400), transparent);
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(233,237,245,.7);
  transition: color .2s ease, transform .2s ease;
}
.footer-col ul li a::before {
  content: '\203A';
  color: var(--orange-400);
  font-size: 1rem;
  opacity: .8;
  transition: transform .2s ease;
}
.footer-col ul li a:hover,
.footer-col ul li a:focus-visible { color: #fff; transform: translateX(4px); }
.footer-col ul li a:hover::before,
.footer-col ul li a:focus-visible::before { transform: translateX(2px); }
.footer-contact li { align-items: flex-start; line-height: 1.45; }
.footer-contact li > i {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
  border-radius: 9px;
  background: rgba(242,101,34,.12);
  color: var(--orange-400);
}
.footer-contact li a::before { display: none; }
.footer-social { gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.08);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-4px);
  border-color: var(--orange-400);
  background: var(--orange-500);
  box-shadow: 0 9px 18px rgba(242,101,34,.25);
}
.footer-bottom {
  margin-top: 54px;
  background: rgba(0,0,0,.16);
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom p { color: rgba(233,237,245,.62); }
.footer-bottom ul a { color: rgba(233,237,245,.62); transition: color .2s ease; }
.footer-bottom ul a:hover { color: var(--orange-400); }

@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.35fr repeat(2, 1fr); }
  .footer-grid > .footer-col:nth-child(4) { grid-column: auto; }
  .footer-grid > .footer-col:nth-child(5) { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > .footer-col:first-child { grid-column: 1 / -1; }
  .footer-grid > .footer-col:nth-child(5) { grid-column: auto; }
}
@media (max-width: 600px) {
  .booking-form-wrap { padding: 25px 20px; border-radius: 18px; }
  .booking-form-wrap h2 { font-size: 1.35rem; }
  .booking-form .form-actions { padding-top: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid > .footer-col:first-child,
  .footer-grid > .footer-col:nth-child(5) { grid-column: auto; }
  .footer-grid > .footer-col:not(:first-child) { padding: 10px 0; }
  .footer-bottom { margin-top: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .booking-form .form-field input,
  .booking-form .form-field select,
  .booking-form .form-field textarea,
  .booking-form .form-actions .btn,
  .footer-col ul li a,
  .footer-social a { transition: none !important; }
}


/* Dedicated contact page refinement. */
.contact-details {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(242,101,34,.14);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff 0%, #fff8f3 58%, #f3f6fb 100%);
  box-shadow: 0 16px 36px rgba(14,23,41,.08);
}
.contact-details::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  right: -90px;
  top: -80px;
  border-radius: 50%;
  border: 1px solid rgba(242,101,34,.2);
  box-shadow: 0 0 0 18px rgba(242,101,34,.04), 0 0 0 36px rgba(14,23,41,.025);
  pointer-events: none;
}
.contact-details h2,
.contact-form-wrap h2 {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}
.contact-details h2::before,
.contact-form-wrap h2::before {
  content: '';
  width: 7px;
  height: 30px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-400), var(--orange-600));
}
.contact-details h2:nth-of-type(2) { margin-top: 34px; }
.contact-list {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  padding: 5px 0;
  border-top: 1px dashed rgba(242,101,34,.25);
}
.contact-list li {
  min-height: 48px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(43,66,103,.1);
}
.contact-list li i {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--orange-50);
  color: var(--orange-600);
}
.contact-list a { color: var(--navy-800); font-weight: 600; transition: color .2s ease, transform .2s ease; }
.contact-list a:hover { color: var(--orange-600); transform: translateX(3px); }
.contact-details > p a { color: var(--orange-600); font-weight: 700; }
.contact-details > p a:hover { color: var(--navy-800); }
.map-embed {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  border: 5px solid #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(14,23,41,.12);
}
.map-embed iframe { display: block; filter: saturate(.8) contrast(1.02); }
.contact-form-wrap {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(242,101,34,.18);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.97), rgba(255,247,241,.94));
  box-shadow: 0 20px 48px rgba(14,23,41,.11), 0 6px 18px rgba(242,101,34,.06);
}
.contact-form-wrap::after {
  content: 'WE REPLY QUICKLY';
  position: absolute;
  top: 25px;
  right: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(242,101,34,.22);
  border-radius: 999px;
  background: var(--orange-50);
  color: var(--orange-600);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.contact-form-wrap > * { position: relative; z-index: 1; }
.contact-form-wrap .booking-form { margin-top: 22px; }
.contact-form-wrap .form-field { margin-bottom: 10px; }
.contact-form-wrap .form-actions { margin-top: 20px; }

@media (max-width: 600px) {
  .contact-details,
  .contact-form-wrap { padding: 23px 19px; border-radius: 17px; }
  .contact-form-wrap::after { position: static; display: inline-block; margin: 0 0 10px 18px; }
  .contact-form-wrap h2 { display: inline-flex; }
}
