/*
 * ALAQ FREIGHT AGENCY — MAIN STYLESHEET
 *
 * QUICK EDIT GUIDE
 * 1. Brand colours and shared sizes: :root below
 * 2. General desktop/mobile styles: main rules
 * 3. Tablet layout: @media(max-width: 980px)
 * 4. Phone layout: @media(max-width: 650px)
 * 5. Compact PC layout: "Compact desktop presentation" near the bottom
 *
 * Every selector and property is intentionally placed on a separate line
 * so this file remains easy to read and edit without a CSS formatter.
 */

:root {
  --navy: #071b36;
  --navy2: #0c294d;
  --orange: #f47c20;
  --cream: #f4f2ed;
  --white: #fff;
  --ink: #142033;
  --muted: #667085;
  --line: #d9dee7;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(7,27,54,.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope,Arial,sans-serif;
  background: #fff;
  line-height: 1.7;
}
img {
  display: block;
  width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,input,textarea,select {
  font: inherit;
}
.container {
  width: min(1180px,calc(100% - 40px));
  margin: auto;
}
.topbar {
  background: var(--navy);
  color: #b8c5d7;
  font-size: 12px;
}
.topbar .container {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar a:hover {
  color: #fff;
}
.site-header {
  height: 88px;
  background: rgba(255,255,255,.97);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: .3s;
}
.site-header.scrolled {
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  border-color: #edf0f4;
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: Montserrat,sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 5px;
  font: 700 8px Manrope,sans-serif;
  letter-spacing: .22em;
}
.brand-mark {
  width: 43px;
  height: 43px;
  border-radius: 12px 4px 12px 4px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 25px;
  box-shadow: inset -8px -8px 0 rgba(7,27,54,.15);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}
.main-nav>a,.dropdown>button {
  border: 0;
  background: transparent;
  padding: 32px 0;
  cursor: pointer;
}
.main-nav>a:hover,.dropdown>button:hover {
  color: var(--orange);
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 78px;
  left: -24px;
  width: 270px;
  padding: 12px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s;
  border-top: 3px solid var(--orange);
}
.dropdown:hover .dropdown-menu,.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
}
.dropdown-menu a:hover {
  background: #f4f6f9;
  color: var(--orange);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  cursor: pointer;
  transition: .25s;
}
.btn.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 30px rgba(244,124,32,.25);
}
.btn.primary:hover {
  background: #df6812;
  transform: translateY(-2px);
}
.btn.ghost {
  color: #fff;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.05);
}
.btn.ghost:hover {
  background: #fff;
  color: var(--navy);
}
.nav-cta {
  min-height: 44px;
  padding: 0 18px;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 6px;
}
.hero {
  min-height: 680px;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,rgba(5,20,41,.96) 0%,rgba(5,20,41,.72) 50%,rgba(5,20,41,.22) 100%),
    url('../images/bg.jpg') center/cover;
  transform: scale(1.03);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,transparent 55%,rgba(244,124,32,.14));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
}
.eyebrow {
  text-transform: uppercase;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  margin: 0 0 16px;
}
.eyebrow.light {
  color: #ffad6e;
}
.hero h1,.page-hero h1,.service-detail h1 {
  font: 800 clamp(50px,8vw,104px)/.92 Montserrat,sans-serif;
  letter-spacing: -.05em;
  margin: 0;
  max-width: 850px;
}
.hero h1 span {
  color: transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.65);
}
.hero-copy {
  font-size: 18px;
  color: #ccd5e2;
  max-width: 570px;
  margin: 26px 0 34px;
}
.button-row {
  display: flex;
  gap: 12px;
}
.hero-stat {
  position: absolute;
  z-index: 3;
  right: 7vw;
  bottom: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 2px solid var(--orange);
  padding-left: 18px;
}
.hero-stat strong {
  font: 800 48px Montserrat;
}
.hero-stat span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #d8e0ea;
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: #dfe4eb;
  margin-top: -42px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: #fff;
  padding: 36px;
  position: relative;
}
.feature-no {
  font: 800 11px Montserrat;
  color: #a9b3c1;
}
.line-icon {
  position: absolute;
  right: 32px;
  top: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff4eb;
  color: var(--orange);
  font-size: 20px;
}
.feature-card h2 {
  font: 800 20px/1.3 Montserrat;
  margin: 28px 0 12px;
  color: var(--navy);
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
}
.text-link span {
  color: var(--orange);
  transition: .2s;
}
.text-link:hover span {
  transform: translateX(5px);
}
.section {
  padding: 110px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.image-frame {
  position: relative;
}
.image-frame img {
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
}
.image-frame:before {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -14px;
  width: 150px;
  height: 150px;
  background: var(--orange);
  z-index: -1;
  border-radius: 0 0 0 28px;
}
.image-label {
  position: absolute;
  right: -25px;
  bottom: 36px;
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 8px;
}
.content h2,.section-head h2,.inquiry-section h2,.narrow h2 {
  font: 800 clamp(34px,4.5vw,58px)/1.08 Montserrat;
  margin: 0 0 24px;
  color: var(--navy);
  letter-spacing: -.04em;
}
.content h2 span {
  color: var(--orange);
}
.content>p {
  color: var(--muted);
  font-size: 17px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.check-list li {
  margin: 12px 0;
  font-weight: 700;
}
.check-list li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  margin-right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff0e4;
  color: var(--orange);
}
.play-link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 800;
}
.play {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  padding-left: 3px;
  box-shadow: 0 0 0 10px #fff0e4;
}
.play-link small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.services-section {
  background: var(--cream);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}
.section-head h2 {
  margin: 0;
}
.section-head>p {
  max-width: 440px;
  color: var(--muted);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(7,27,54,.07);
  transition: .3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-image {
  height: 245px;
  overflow: hidden;
  display: block;
  position: relative;
}
.service-image img {
  height: 100%;
  object-fit: cover;
  transition: .5s;
}
.service-card:hover img {
  transform: scale(1.06);
}
.service-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent,rgba(7,27,54,.7));
  opacity: 0;
  transition: .3s;
}
.service-image>span {
  position: absolute;
  left: 22px;
  bottom: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: .3s;
}
.service-card:hover .service-image:after,.service-card:hover .service-image>span {
  opacity: 1;
  transform: none;
}
.service-body {
  padding: 28px;
}
.service-body h2,.service-body h3 {
  font: 800 20px/1.3 Montserrat;
  color: var(--navy);
  margin: 0 0 12px;
}
.service-body p {
  color: var(--muted);
  font-size: 14px;
}
.corridor {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.corridor .content h2 {
  color: #fff;
}
.corridor .content>p {
  color: #b9c6d7;
}
.reverse {
  grid-template-columns: 1.05fr .95fr;
}
.metric-row {
  display: flex;
  gap: 38px;
  margin: 36px 0;
}
.metric-row>div {
  display: flex;
  flex-direction: column;
}
.metric-row strong {
  font: 800 34px Montserrat;
  color: var(--orange);
}
.metric-row span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #aebbcf;
}
.metric-row.dark span {
  color: var(--muted);
}
.map-card {
  height: 460px;
  border-radius: var(--radius);
  position: relative;
  background: radial-gradient(circle at 30% 40%,#24486e,transparent 30%),linear-gradient(135deg,#102e52,#06172e);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.map-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size: 40px 40px;
}
.map-card p {
  position: absolute;
  left: 35px;
  bottom: 25px;
  font: 800 36px/1.1 Montserrat;
}
.map-origin,.map-pin {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}
.map-origin {
  width: 55px;
  height: 55px;
  background: var(--orange);
  right: 60px;
  bottom: 80px;
  box-shadow: 0 0 0 12px rgba(244,124,32,.14);
}
.map-pin {
  width: 38px;
  height: 38px;
  background: #fff;
  color: var(--navy);
}
.p1 {
  left: 38%;
  top: 24%;
}
.p2 {
  left: 28%;
  top: 50%;
}
.p3 {
  right: 24%;
  top: 30%;
}
.p4 {
  right: 34%;
  top: 52%;
}
.team-section {
  overflow: hidden;
}
.slider-controls {
  display: flex;
  gap: 10px;
}
.slider-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.slider-controls button:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.team-slider {
  display: flex;
  gap: 24px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.team-slider::-webkit-scrollbar {
  display: none;
}
.team-card {
  min-width: calc(30% - 12px);
  scroll-snap-align: start;
}
.team-photo {
  height: 390px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.team-photo:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.13);
}
.team-photo span {
  position: relative;
  font: 800 110px Montserrat;
  color: rgba(255,255,255,.85);
}
.team-1 {
  background: linear-gradient(145deg,#0c3159,#f47c20);
}
.team-2 {
  background: linear-gradient(145deg,#15263e,#6683a4);
}
.team-3 {
  background: linear-gradient(145deg,#df6812,#ffae70);
}
.team-4 {
  background: linear-gradient(145deg,#183e65,#477e8a);
}
.team-card h3 {
  font: 800 18px Montserrat;
  margin: 20px 0 4px;
  color: var(--navy);
}
.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.inquiry-section {
  background: #edf1f5;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.inquiry-form {
  background: #fff;
  padding: 60px;
}
.inquiry-form h2 {
  font-size: 42px;
}
.inquiry-form form {
  display: grid;
  gap: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: #5c6777;
}
input,textarea,select {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
input:focus,textarea:focus,select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,124,32,.12);
}
.honey {
  position: absolute;
  left: -9999px;
}
.why-us {
  background: var(--navy);
  color: #fff;
  padding: 60px;
}
.why-us h2 {
  color: #fff;
  font-size: 42px;
}
.benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}
.benefit>span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}
.benefit h3 {
  margin: 0 0 8px;
  font: 800 17px Montserrat;
}
.benefit p {
  margin: 0;
  color: #b9c6d7;
  font-size: 13px;
}
.page-hero {
  background:
    linear-gradient(120deg,rgba(7,27,54,.98),rgba(7,27,54,.75)),
    url('https://alaqfreightagency.co.tz/wp-content/uploads/2025/02/B7-copy-scaled-3-1024x683.jpg') center/cover;
  color: #fff;
  padding: 140px 0;
}
.page-hero h1 {
  font-size: clamp(46px,7vw,84px);
}
.page-hero p:last-child {
  font-size: 18px;
  color: #c8d2df;
}
.service-detail {
  height: 650px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: end;
  padding: 90px 0;
  overflow: hidden;
}
.service-detail>img,.service-detail>.overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.service-detail>.overlay {
  background: linear-gradient(90deg,rgba(5,19,39,.96),rgba(5,19,39,.25));
}
.service-detail .container {
  position: relative;
}
.service-detail p:not(.eyebrow) {
  max-width: 600px;
  font-size: 18px;
  color: #d9e0e8;
}
.narrow {
  max-width: 760px;
}
.customer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.customer-card,.contact-details article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: .25s;
}
.customer-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
}
.customer-card>span {
  color: var(--orange);
  font-size: 26px;
}
.customer-card h2,.contact-details h3 {
  font: 800 19px Montserrat;
  color: var(--navy);
}
.customer-card p,.contact-details p {
  color: var(--muted);
  font-size: 14px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: 18px;
}
.gallery-grid figure {
  grid-column: span 4;
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.gallery-grid figure:nth-child(1),.gallery-grid figure:nth-child(6) {
  grid-column: span 8;
}
.gallery-grid img {
  height: 330px;
  object-fit: cover;
  transition: .4s;
}
.gallery-grid figure:hover img {
  transform: scale(1.04);
}
.gallery-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  background: rgba(7,27,54,.88);
  color: #fff;
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer {
  background: #041326;
  color: #a9b7c9;
  padding: 80px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr 1fr;
  gap: 55px;
}
.brand.light {
  color: #fff;
}
.footer h4 {
  color: #fff;
  font: 800 14px Montserrat;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 0;
}
.footer-grid>div>a:not(.brand) {
  display: block;
  margin: 9px 0;
  font-size: 13px;
}
.footer-grid>div>a:hover {
  color: var(--orange);
}
.footer p {
  font-size: 13px;
}
.socials {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid #29405e;
  border-radius: 50%;
  display: grid!important;
  place-items: center;
}
.footer-bottom {
  border-top: 1px solid #20344e;
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.flash {
  position: fixed;
  right: 20px;
  top: 145px;
  z-index: 100;
  max-width: 420px;
  padding: 15px 20px;
  border-radius: 10px;
  color: #fff;
  box-shadow: var(--shadow);
}
.flash.success {
  background: #198754;
}
.flash.error,.alert.error {
  background: #b42318;
}
.installer {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg,var(--navy),#153c67);
  padding: 30px;
}
.install-card {
  width: min(560px,100%);
  background: #fff;
  border-radius: var(--radius);
  padding: 45px;
  box-shadow: var(--shadow);
}
.install-card h1 {
  font: 800 36px Montserrat;
  color: var(--navy);
  margin: 30px 0 10px;
}
.install-card form {
  display: grid;
  gap: 18px;
}
.alert {
  padding: 12px 14px;
  color: #fff;
  border-radius: 8px;
  margin: 12px 0;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s,transform .7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media(prefers-reduced-motion:reduce) {
  * {
    scroll-behavior: auto!important;
    transition: none!important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }

}
@media(max-width:1050px) {
  .main-nav {
    gap: 16px;
  }
  .nav-cta {
    display: none;
  }
  .split {
    gap: 45px;
  }
  .service-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2,1fr);
  }

}
@media(max-width:980px) {
  .topbar {
    display: none;
  }
  .site-header {
    height: 76px;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 16px;
    display: none;
    align-items: stretch;
    padding: 18px;
    max-height: calc(100vh - 110px);
    overflow: auto;
  }
  .main-nav.open {
    display: block;
  }
  .main-nav>a,.dropdown>button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 13px;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: #f5f7fa;
    padding-left: 18px;
  }
  .dropdown.open .dropdown-menu {
    display: block;
  }
  .hero {
    min-height: 620px;
  }
  .hero-stat {
    display: none;
  }
  .feature-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-radius: 0;
  }
  .split,.inquiry-grid {
    grid-template-columns: 1fr;
  }
  .reverse .map-card {
    grid-row: 2;
  }
  .image-frame img {
    height: 430px;
  }
  .team-card {
    min-width: 44%;
  }
  .customer-grid {
    grid-template-columns: repeat(2,1fr);
  }

}
@media(max-width:650px) {
  .container {
    width: min(100% - 28px,1180px);
  }
  .section {
    padding: 75px 0;
  }
  .hero {
    min-height: 610px;
  }
  .hero-content {
    padding-top: 30px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .button-row {
    flex-wrap: wrap;
  }
  .feature-card {
    padding: 28px;
  }
  .split {
    gap: 36px;
  }
  .image-frame img {
    height: 360px;
  }
  .image-label {
    right: 12px;
  }
  .section-head {
    display: block;
  }
  .service-grid,.customer-grid {
    grid-template-columns: 1fr;
  }
  .service-image {
    height: 230px;
  }
  .map-card {
    height: 380px;
  }
  .metric-row {
    gap: 20px;
  }
  .team-card {
    min-width: 82%;
  }
  .inquiry-form,.why-us {
    padding: 35px 24px;
  }
  .inquiry-form h2,.why-us h2 {
    font-size: 32px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    display: block;
  }
  .gallery-grid figure {
    margin-bottom: 15px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    display: block;
  }
  .page-hero {
    padding: 100px 0;
  }
  .service-detail {
    height: 590px;
  }
  .install-card {
    padding: 30px 22px;
  }

}
/* Refined desktop scale: compact, editorial and premium */
@media(min-width:981px) {
  body {
    font-size: 15px;
    line-height: 1.65;
  }
  .container {
    width: min(1120px,calc(100% - 64px));
  }
  .topbar .container {
    height: 34px;
  }
  .site-header {
    height: 76px;
  }
  .brand-mark {
    width: 39px;
    height: 39px;
    border-radius: 10px 3px 10px 3px;
    font-size: 22px;
  }
  .brand {
    font-size: 14px;
  }
  .main-nav {
    gap: 23px;
    font-size: 13px;
  }
  .main-nav>a,.dropdown>button {
    padding: 25px 0;
  }
  .dropdown-menu {
    top: 67px;
  }
  .nav-cta {
    min-height: 40px;
    padding: 0 16px;
  }
  .btn {
    min-height: 48px;
    padding: 0 21px;
    font-size: 12px;
    border-radius: 50px;
  }
  .hero {
    min-height: 590px;
  }
  .hero-content {
    padding-bottom: 25px;
  }
  .hero h1 {
    font-size: clamp(54px,6vw,78px);
    max-width: 720px;
    line-height: .95;
  }
  .hero-copy {
    font-size: 16px;
    max-width: 530px;
    margin: 21px 0 28px;
  }
  .hero-stat {
    right: 5vw;
    bottom: 46px;
  }
  .hero-stat strong {
    font-size: 40px;
  }
  .feature-strip {
    margin-top: -34px;
    border-radius: 18px;
  }
  .feature-card {
    padding: 29px 30px;
  }
  .feature-card h2 {
    font-size: 17px;
    margin: 22px 0 9px;
  }
  .feature-card p {
    font-size: 13px;
    line-height: 1.65;
  }
  .line-icon {
    right: 27px;
    top: 25px;
    width: 40px;
    height: 40px;
  }
  .section {
    padding: 86px 0;
  }
  .split {
    gap: 60px;
  }
  .image-frame img {
    height: 455px;
    border-radius: 20px;
  }
  .image-label {
    right: -18px;
    bottom: 30px;
    padding: 11px 15px;
  }
  .content h2,.section-head h2,.inquiry-section h2,.narrow h2 {
    font-size: clamp(32px,3.55vw,46px);
    line-height: 1.1;
  }
  .content>p {
    font-size: 15px;
  }
  .check-list {
    margin: 23px 0;
  }
  .check-list li {
    margin: 9px 0;
  }
  .play {
    width: 50px;
    height: 50px;
  }
  .section-head {
    margin-bottom: 36px;
  }
  .section-head>p {
    font-size: 14px;
    max-width: 400px;
  }
  .service-grid {
    gap: 20px;
  }
  .service-card {
    border-radius: 18px;
    box-shadow: 0 8px 26px rgba(7,27,54,.055);
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(7,27,54,.11);
  }
  .service-image {
    height: 205px;
  }
  .service-body {
    padding: 23px;
  }
  .service-body h2,.service-body h3 {
    font-size: 17px;
    margin-bottom: 9px;
  }
  .service-body p {
    font-size: 13px;
    line-height: 1.65;
  }
  .text-link {
    font-size: 12px;
  }
  .map-card {
    height: 390px;
    border-radius: 20px;
  }
  .map-card p {
    font-size: 30px;
  }
  .metric-row {
    margin: 28px 0;
    gap: 32px;
  }
  .metric-row strong {
    font-size: 29px;
  }
  .team-photo {
    height: 320px;
    border-radius: 20px;
  }
  .team-photo:before {
    width: 180px;
    height: 180px;
  }
  .team-photo span {
    font-size: 90px;
  }
  .team-card h3 {
    font-size: 16px;
    margin-top: 16px;
  }
  .slider-controls button {
    width: 42px;
    height: 42px;
  }
  .inquiry-form,.why-us {
    padding: 46px;
  }
  .inquiry-form h2,.why-us h2 {
    font-size: 35px;
  }
  .inquiry-form form {
    gap: 15px;
  }
  .field-row {
    gap: 15px;
  }
  input,textarea,select {
    padding: 11px 13px;
  }
  .benefit {
    padding: 19px 0;
  }
  .benefit h3 {
    font-size: 15px;
  }
  .page-hero {
    padding: 105px 0;
  }
  .page-hero h1 {
    font-size: clamp(44px,5.5vw,66px);
    max-width: 760px;
  }
  .page-hero p:last-child,.service-detail p:not(.eyebrow) {
    font-size: 16px;
  }
  .service-detail {
    height: 540px;
    padding: 72px 0;
  }
  .service-detail h1 {
    font-size: clamp(46px,5.8vw,70px);
  }
  .customer-grid {
    gap: 18px;
  }
  .customer-card,.contact-details article {
    padding: 28px;
    border-radius: 18px;
  }
  .customer-card h2,.contact-details h3 {
    font-size: 17px;
  }
  .gallery-grid {
    gap: 15px;
  }
  .gallery-grid img {
    height: 280px;
  }
  .gallery-grid figure {
    border-radius: 15px;
  }
  .footer {
    padding: 64px 0 22px;
  }
  .footer-grid {
    gap: 45px;
  }
  .footer-bottom {
    margin-top: 42px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 13px;
  }
  .install-card h1 {
    font-size: 31px;
  }

}
/* Compact desktop presentation */
.mobile-track {
  display: none!important;
}
.track-cta {
  background: var(--orange)!important;
  color: #fff!important;
  border: 0!important;
  box-shadow: 0 9px 22px rgba(244,124,32,.24)!important;
  white-space: nowrap;
}
.track-cta b {
  font-size: 16px;
  font-weight: 500;
}
.track-cta:hover {
  background: #db6510!important;
  transform: translateY(-1px);
}
@media(min-width:981px) {
  body {
    font-size: 13.5px;
    line-height: 1.58;
  }
  .container {
    width: min(1020px,calc(100% - 72px));
  }
  .site-header {
    height: 68px;
  }
  .brand {
    font-size: 13px;
    gap: 9px;
  }
  
  .brand-logo {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
}
  .brand-mark {
    width: 35px;
    height: 35px;
    font-size: 19px;
  }
  .brand small {
    font-size: 7px;
  }
  .main-nav {
    gap: 18px;
    font-size: 11.5px;
  }
  .main-nav>a,.dropdown>button {
    padding: 22px 0;
  }
  .dropdown-menu {
    top: 60px;
    width: 235px;
    padding: 9px;
  }
  .dropdown-menu a {
    font-size: 11.5px;
    padding: 8px 10px;
  }
  .nav-cta {
    display: inline-flex;
    min-height: 38px;
    padding: 0 15px;
    font-size: 11px;
  }
  .hero {
    min-height: 470px;
  }
  .hero-content {
    padding-bottom: 12px;
  }
  .hero h1 {
    font-size: clamp(42px,4.7vw,58px);
    max-width: 660px;
    line-height: 1;
  }
  .hero-copy {
    font-size: 14px;
    line-height: 1.6;
    max-width: 500px;
    margin: 17px 0 23px;
  }
  .hero-stat {
    right: 4vw;
    bottom: 34px;
  }
  .hero-stat strong {
    font-size: 32px;
  }
  .hero-stat span {
    font-size: 9px;
  }
  .btn {
    min-height: 42px;
    padding: 0 18px;
    font-size: 11px;
  }
  .feature-strip {
    max-width: 1020px;
    margin-top: -27px;
    border-radius: 14px;
  }
  .feature-card {
    padding: 23px 25px;
  }
  .feature-card h2 {
    font-size: 14px;
    margin: 17px 0 7px;
  }
  .feature-card p {
    font-size: 11.5px;
    line-height: 1.55;
  }
  .feature-no {
    font-size: 9px;
  }
  .line-icon {
    width: 34px;
    height: 34px;
    right: 22px;
    top: 20px;
    font-size: 16px;
  }
  .section {
    padding: 64px 0;
  }
  .split {
    gap: 48px;
  }
  .image-frame img {
    height: 370px;
    border-radius: 16px;
  }
  .image-frame:before {
    width: 110px;
    height: 110px;
  }
  .image-label {
    font-size: 9px;
    padding: 9px 12px;
  }
  .content h2,.section-head h2,.inquiry-section h2,.narrow h2 {
    font-size: clamp(27px,3vw,36px);
    line-height: 1.12;
    margin-bottom: 18px;
  }
  .content>p {
    font-size: 13px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 10px;
  }
  .check-list {
    margin: 18px 0;
  }
  .check-list li {
    font-size: 12px;
    margin: 7px 0;
  }
  .check-list li:before {
    width: 20px;
    height: 20px;
  }
  .play {
    width: 43px;
    height: 43px;
  }
  .section-head {
    margin-bottom: 28px;
  }
  .section-head>p {
    font-size: 12px;
    max-width: 360px;
  }
  .service-grid {
    gap: 16px;
  }
  .service-card {
    border-radius: 14px;
  }
  .service-image {
    height: 165px;
  }
  .service-body {
    padding: 18px;
  }
  .service-body h2,.service-body h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }
  .service-body p {
    font-size: 11.5px;
    line-height: 1.55;
  }
  .text-link {
    font-size: 10.5px;
  }
  .map-card {
    height: 320px;
    border-radius: 16px;
  }
  .map-card p {
    font-size: 24px;
  }
  .map-origin {
    width: 45px;
    height: 45px;
  }
  .map-pin {
    width: 32px;
    height: 32px;
    font-size: 8px;
  }
  .metric-row {
    margin: 21px 0;
    gap: 26px;
  }
  .metric-row strong {
    font-size: 24px;
  }
  .metric-row span {
    font-size: 9px;
  }
  .team-photo {
    height: 250px;
    border-radius: 16px;
  }
  .team-photo:before {
    width: 145px;
    height: 145px;
  }
  .team-photo span {
    font-size: 72px;
  }
  .team-card h3 {
    font-size: 13px;
    margin-top: 12px;
  }
  .team-card p {
    font-size: 11px;
  }
  .slider-controls button {
    width: 36px;
    height: 36px;
  }
  .inquiry-form,.why-us {
    padding: 35px;
  }
  .inquiry-form h2,.why-us h2 {
    font-size: 28px;
  }
  .inquiry-form form {
    gap: 12px;
  }
  .field-row {
    gap: 12px;
  }
  label {
    font-size: 9px;
  }
  input,textarea,select {
    padding: 9px 11px;
    font-size: 12px;
  }
  .benefit {
    padding: 14px 0;
    grid-template-columns: 32px 1fr;
  }
  .benefit h3 {
    font-size: 13px;
  }
  .benefit p {
    font-size: 11px;
  }
  .page-hero {
    padding: 78px 0;
  }
  .page-hero h1 {
    font-size: clamp(36px,4.6vw,52px);
    max-width: 700px;
  }
  .page-hero p:last-child,.service-detail p:not(.eyebrow) {
    font-size: 13px;
  }
  .service-detail {
    height: 440px;
    padding: 55px 0;
  }
  .service-detail h1 {
    font-size: clamp(38px,4.8vw,56px);
  }
  .customer-grid {
    gap: 14px;
  }
  .customer-card,.contact-details article {
    padding: 22px;
    border-radius: 14px;
  }
  .customer-card h2,.contact-details h3 {
    font-size: 14px;
  }
  .customer-card p,.contact-details p {
    font-size: 11.5px;
  }
  .gallery-grid {
    gap: 12px;
  }
  .gallery-grid img {
    height: 225px;
  }
  .gallery-grid figure {
    border-radius: 12px;
  }
  .footer {
    padding: 48px 0 18px;
  }
  .footer-grid {
    gap: 35px;
  }
  .footer h4 {
    font-size: 11px;
  }
  .footer p,.footer-grid>div>a:not(.brand) {
    font-size: 11px;
  }
  .footer-bottom {
    margin-top: 32px;
    font-size: 9px;
  }

}
@media(max-width:980px) {
  .mobile-track {
    display: block!important;
    margin-top: 8px!important;
    background: var(--orange)!important;
    color: #fff!important;
    border-radius: 8px!important;
    padding: 13px 15px!important;
  }
  .track-cta {
    display: none!important;
  }

}
