/* RESET / BASE */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111111;
  background: #ffffff;
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
}

/* TOP BAR - only if used */

.top-bar {
  background: #050505;
  color: #ffffff;
  font-size: 13px;
}

.top-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-inner a,
.top-inner span {
  opacity: .88;
}

.top-inner a[href*="maps"] {
  display:flex;
  align-items:center;
  gap:6px;
  transition:.3s;
}

.top-inner a[href*="maps"]:hover,
.footer a[href*="maps"]:hover {
  color:#d71920;
  transform:translateY(-1px);
}

/* HEADER / NAVIGATION */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.logo img {
  width: 140px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.logo span {
  color: #050505;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  transition: .25s;
}

.nav a:hover {
  color: #d71920;
}

.nav-cta {
  background: #d71920;
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 999px;
}

.nav-cta:hover {
  background: #050505;
  color: #ffffff !important;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 3px;
  width: 26px;
  background: #111111;
  margin: 5px auto;
  transition: .25s;
}

/* TYPOGRAPHY */

.eyebrow,
.section-kicker {
  color: #d71920;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
}

.section-kicker::after,
.eyebrow::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: #d71920;
  border-radius: 10px;
  margin-top: 10px;
}

.section-kicker.center::after,
.center.section-kicker::after {
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: 50px;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 18px;
}

h2 {
  font-size: 40px;
  line-height: 1.06;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

.center {
  text-align: center;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  transition: .25s;
}

.primary {
  background: #d71920;
  color: #ffffff;
}

.primary:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-2px);
}

.secondary {
  border: 1px solid rgba(255,255,255,.55);
  color: #ffffff;
}

.secondary:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-2px);
}

.secondary.dark {
  border-color: #111111;
  color: #111111;
}

.secondary.dark:hover {
  background: #111111;
  color: #ffffff;
}

.section-head .btn,
.fleet .btn,
.btn.secondary.dark {
  width: auto;
  min-width: 140px;
  height: 58px;
  flex-shrink: 0;
}

/* HERO */

.hero {
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.42)),
    url('assets/images/hero/hero-fleet.webp') center/cover no-repeat;
  transform: scale(1.02);
  animation: slowZoom 16s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-video {
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  z-index:1;
  filter: brightness(78%) contrast(112%) saturate(105%);
}

.hero-overlay {
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  background: linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.24));
  z-index:2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 120px 0;
}

.hero-text {
  max-width: 760px;
  font-size: 19px;
  color: rgba(255,255,255,.86);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* PAGE HERO */

.page-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero .container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.page-hero h1 {
  max-width: 980px;
}

.about-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.35)),
    url('assets/images/hero/heroabout.webp') !important;
}

.services-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.28)),
    url('assets/images/hero/services.webp') !important;
}

.fleet-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.28)),
    url('assets/images/hero/fleet.webp') !important;
}

.projects-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.28)),
    url('assets/images/hero/projects.webp') !important;
}

.contact-hero {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.80), rgba(0,0,0,.35)),
    url('assets/images/hero/contact.webp') !important;
}

/* GENERAL SECTIONS */

.section {
  padding: 64px 0;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.reverse {
  grid-template-columns: 1fr 1fr;
}

.text-block p {
  color: inherit;
  opacity: .82;
  font-size: 17px;
  margin-bottom: 18px;
}

.tick-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  opacity: .9;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #d71920;
  border-radius: 50%;
}

.dark-list li {
  color: rgba(255,255,255,.9);
}

.support-text {
  padding-left: 40px;
  margin-top: 30px;
  width: 90%;
}

/* HOME SERVICE CARDS */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.service-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,.12);
  min-height: 310px;
  display: flex;
}

.featured-card {
  background: #d71920;
  color: #ffffff;
}

.card-body {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-number {
  color: #d71920;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 22px;
}

.featured-card .card-number {
  color: #ffffff;
}

.card-body p {
  color: #666666;
  margin: 14px 0 0;
}

.featured-card p {
  color: rgba(255,255,255,.82);
}

/* ABOUT */

.about {
  padding: 82px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.about-img {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.about-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-content p {
  color: #666666;
  margin-bottom: 20px;
}

.quote-box {
  margin-top: 18px;
  padding: 26px;
  border-left: 6px solid #d71920;
  background: #f5f5f5;
  font-weight: 800;
  font-size: 18px;
}

/* SAFETY / VALUES */

.safety {
  background: #111111;
  color: #ffffff;
}

.values {
  background: #f5f5f5;
}

.value-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.value-grid article {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,.06);
}

.value-grid h3 {
  color: #d71920;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.value-grid p {
  color: #666666;
  font-size: 14px;
}

/* SERVICES PAGE */

.services-intro {
  background: #ffffff;
  padding-bottom: 52px;
}

.service-cards-section {
  padding: 40px 0 70px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

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

.service-box {
  min-height: 240px;
  background: #ffffff;
  padding: 30px 26px;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,.09);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  transition: .28s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 65px rgba(0,0,0,.15);
}

.service-box span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(215,25,32,.1);
  color: #d71920;
  font-weight: 900;
  margin-bottom: 18px;
}

.service-box h3 {
  font-size: 25px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.service-box p {
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

.red-box {
  background: #d71920;
  color: #ffffff;
}

.red-box span {
  background: #ffffff;
  color: #d71920;
}

.red-box p {
  color: rgba(255,255,255,.86);
}

.black-box {
  background: #050505;
  color: #ffffff;
}

.black-box span {
  background: #d71920;
  color: #ffffff;
}

.black-box p {
  color: rgba(255,255,255,.78);
}

/* WHY SECTION */

.why-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

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

.why-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 26px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transition: .3s;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.14);
}

.why-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(215,25,32,.1);
  color: #d71920;
  font-weight: 900;
  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.why-card p {
  color: #666666;
}

.red-card {
  background: #d71920;
  color: #ffffff;
}

.red-card span {
  background: #ffffff;
  color: #d71920;
}

.red-card p {
  color: rgba(255,255,255,.85);
}

/* FLEET */

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.fleet-content-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 28px;
  align-items: center;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.fleet-grid span {
  min-height: 62px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 18px;
  font-weight: 800;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(0,0,0,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fleet-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,.14);
}

.fleet-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

/* SPECIALIST */

.specialist {
  background: #050505;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}

.specialist::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  background: radial-gradient(circle at top right, rgba(215,25,32,.12), transparent 35%);
  pointer-events:none;
}

.specialist .container{
  position:relative;
  z-index:2;
}

.specialist .section-kicker,
.specialist h2 {
  color:#ffffff;
}

.specialist .section-kicker{
  color: #d71920;
}

.specialist .section-kicker::after{
  background: #d71920;
}

.specialist-intro{
  max-width: 980px;
  margin: 0 auto 44px;
  text-align:center;
}

.specialist-intro p:not(.section-kicker){
  color: rgba(255,255,255,.72);
  font-size:20px;
  line-height:1.9;
  max-width:900px;
  margin:0 auto;
}

.specialist-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.specialist-feature-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 30px;
  padding: 36px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  transition: .32s ease;
}

.specialist-feature-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,0,0,.5);
}

.specialist-feature-card span{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:18px;
  margin-bottom:28px;
}

.specialist-feature-card h3{
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 18px;
  color:#ffffff;
}

.specialist-feature-card p{
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.9;
}

.specialist-feature-card.red{
  background: linear-gradient(135deg,#d71920,#b10f15);
}

.specialist-feature-card.red span{
  background:#ffffff;
  color:#d71920;
}

.specialist-feature-card.red h3,
.specialist-feature-card.red p,
.specialist-feature-card.dark h3,
.specialist-feature-card.dark p{
  color:#ffffff;
}

.specialist-feature-card.red p{
  color: rgba(255,255,255,.92);
}

.specialist-feature-card.dark{
  background:#000000;
}

.specialist-feature-card.dark span{
  background: #d71920;
  color:#ffffff;
}

.specialist-attachments{
  margin-top:58px;
  background:#111111;
  border-radius:38px;
  overflow:hidden;
  box-shadow:0 35px 90px rgba(0,0,0,.5);
}

.specialist-attachments-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:center;
}

.specialist-attachments-image{
  height:100%;
}

.specialist-attachments-image img{
  width:100%;
  height:100%;
  min-height:620px;
  object-fit:cover;
}

.specialist-attachments-content{
  padding:56px;
}

.specialist-attachments-content h2{
  color:#ffffff;
  margin-bottom:24px;
}

.specialist-attachments-content p:not(.section-kicker){
  color: rgba(255,255,255,.72);
  font-size:18px;
  line-height:1.9;
  margin-bottom:34px;
}

.specialist-attachments .tick-list{
  gap:18px;
}

.specialist-attachments .tick-list li{
  color: rgba(255,255,255,.9);
  font-size:17px;
}

.specialist-attachments .tick-list li::before{
  background: #d71920;
}

/* PROJECTS */

.projects {
  background: #f5f5f5;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.project-gallery img,
.gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}

.project-columns {
  margin-top: 28px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
}

.project-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

.project-card h3 {
  color: #d71920;
  margin-bottom: 18px;
}

.project-card li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,.1);
  color: #666666;
}

.project-card li:last-child {
  border-bottom: 0;
}

/* GALLERY */

.gallery-section {
  background: #f5f5f5;
}

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

/* PARTNER CTA */

.partner {
  padding: 58px 0;
  background: linear-gradient(135deg, #d71920, #a90f15);
  color: #ffffff;
}

.partner-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.partner-box p {
  max-width: 600px;
  color: rgba(255,255,255,.86);
}

.partner .primary {
  background: #050505;
  color: #ffffff;
  width: auto;
  min-width: 140px;
  height: 60px;
}

.partner .primary:hover {
  background: #ffffff;
  color: #111111;
}

/* CONTACT */

.lead {
  font-size: 18px;
  color: #666666;
  margin: 18px 0 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-cards a {
  padding: 20px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(0,0,0,.05);
}

.contact-cards strong {
  display: block;
  color: #d71920;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 5px;
}

.contact-cards span {
  font-weight: 800;
  word-break: break-word;
}

.contact-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.contact-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}

.contact-cta {
  background: #050505;
  color: #ffffff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
}

.contact-cta p {
  color: rgba(255,255,255,.72);
  margin: 10px 0 20px;
}

/* HOME CONTACT SECTION */

.home-contact {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  padding: 72px 0;
}

.home-contact-premium {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 56px;
  align-items: center;
}

.home-contact-copy h2 {
  max-width: 720px;
}

.home-contact-copy .lead {
  max-width: 620px;
  margin: 20px 0 28px;
}

.home-contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.1);
  color: #111111;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.home-contact-card {
  background: #050505;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}

.home-contact-card .contact-form {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-contact-card .contact-form label {
  color: #ffffff;
}

.home-contact-card .contact-form input,
.home-contact-card .contact-form select,
.home-contact-card .contact-form textarea {
  background: #111111;
  border-color: rgba(255,255,255,.12);
  color: #ffffff;
}

.home-contact-card .contact-form input::placeholder,
.home-contact-card .contact-form textarea::placeholder {
  color: rgba(255,255,255,.46);
}

.home-contact-card .contact-form textarea {
  min-height: 130px;
}

.home-contact-card .contact-form button {
  width: 100%;
  margin-top: 4px;
}

.home-contact-card .contact-form .primary:hover {
  background: #ffffff;
  color: #050505;
}

/* MAP SECTION - optional, only if used elsewhere */

.map-section{
  background:#f5f5f5;
}

.map-box{
  margin-top:35px;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 18px 55px rgba(0,0,0,.14);
}

.contact-map-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:30px;
  flex-wrap:wrap;
}

.contact-map-actions .btn{
  width:auto;
  min-width:170px;
}

.contact-map{
  overflow:hidden;
  border-radius:28px;
  box-shadow:0 18px 50px rgba(0,0,0,.14);
  height:370px;
}

.contact-map iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* CONTACT FORM */

.contact-form {
  margin-top: 36px;
  padding: 32px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 14px 45px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form.small {
  margin-top: 0;
  padding: 26px;
  max-width: 420px;
  width: 100%;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  color: #111111;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.1);
  background: #ffffff;
  color: #111111;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d71920;
  box-shadow: 0 0 0 3px rgba(215,25,32,.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-form.small textarea {
  min-height: 120px;
}

.contact-form button {
  margin-top: 8px;
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.contact-form .primary:hover {
  background: #050505;
  color: #ffffff;
}

/* FOOTER */

.footer {
  background: #050505;
  color: #ffffff;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr .8fr;
  gap: 40px;
}

.footer p,
.footer a {
  color: rgba(255,255,255,.72);
  display: block;
  margin-top: 8px;
}

.footer a:hover {
  color: #d71920;
}

.footer .footer-heading {
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-logo {
  color: #ffffff !important;
  margin-bottom: 18px;
}

.footer-logo span {
  color: #ffffff;
}

.footer-logo img {
  background: #ffffff;
  border-radius: 10px;
  padding: 6px;
  width: 140px;
}

.footer-grid .footer-logo + p {
  max-width: 360px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

/* COOKIE CONSENT */

.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(5,5,5,.96);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}

.cookie-consent.show {
  display: flex;
  animation: cookieIn .35s ease both;
}

.cookie-consent p {
  max-width: 720px;
  color: rgba(255,255,255,.72);
  margin-top: 4px;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  min-height: 44px;
  padding: 0 18px;
  background: #d71920;
  color: #ffffff;
  border: 0;
  cursor: pointer;
}

.cookie-btn.outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card,
.service-box,
.why-card,
.value-grid article,
.fleet-grid span,
.project-card,
.contact-cards a,
.gallery-grid img {
  transition: transform .28s ease, box-shadow .28s ease;
}

.service-card:hover,
.value-grid article:hover,
.fleet-grid span:hover,
.project-card:hover,
.contact-cards a:hover,
.gallery-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,.16);
}

@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.09); }
}

@keyframes cookieIn {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1100px) {
  .services-card-grid,
  .why-grid,
  .specialist-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-content-grid,
  .specialist-attachments-grid {
    grid-template-columns: 1fr;
  }

  .specialist-attachments-image img{
    min-height:420px;
  }
}

@media (max-width: 980px) {
  .top-inner {
    justify-content: center;
    text-align: center;
    padding: 10px 0;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    max-width: 100vw;
    overflow-x: hidden;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .section,
  .about {
    padding: 54px 0;
  }

  .page-hero {
    min-height: 330px;
  }

  .split,
  .about-grid,
  .project-columns,
  .footer-grid,
  .contact-grid,
  .home-contact-premium {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-form.small {
    max-width: 100%;
  }

  .service-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid,
  .gallery-grid,
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .partner-box {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .section-head .btn,
  .fleet .btn,
  .btn.secondary.dark {
    width: auto;
    min-width: 180px;
  }

  .hero {
    min-height: 660px;
  }

  .logo img {
    width: 140px;
  }

  .home-contact-card {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .container {
    width: calc(100% - 28px);
    max-width: 1180px;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .nav {
    top: 76px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .cookie-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .section,
  .about {
    padding: 48px 0;
  }

  .page-hero {
    min-height: 300px;
  }

  h1 {
    font-size: 42px;
    letter-spacing: -1.8px;
  }

  h2 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .services-card-grid,
  .why-grid,
  .fleet-content-grid,
  .project-gallery,
  .project-columns,
  .gallery-grid {
    gap: 16px;
  }

  .service-box {
    padding: 26px 22px;
  }

  .fleet-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-grid span {
    min-height: 58px;
    font-size: 14px;
  }

  .section-head .btn,
  .fleet .btn,
  .btn.secondary.dark,
  .partner .primary {
    width: 140px;
    min-width: 140px;
  }

  .partner-box {
    gap: 20px;
  }

  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .contact-map{
    height:300px;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-form button {
    width: 100%;
  }

  .home-contact {
    padding: 56px 0;
  }

  .home-contact-points {
    gap: 10px;
  }

  .home-contact-points span {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 700px){
  .contact-map-actions{
    flex-direction:column;
  }

  .contact-map-actions .btn{
    width:100%;
  }

  .specialist{
    padding:80px 0;
  }

  .specialist-feature-grid{
    grid-template-columns:1fr;
  }

  .specialist-attachments-content{
    padding:38px 28px;
  }

  .specialist-intro{
    margin-bottom:50px;
  }

  .specialist-intro p:not(.section-kicker){
    font-size:17px;
  }

  .specialist-feature-card{
    min-height:auto;
  }

  .specialist-feature-card h3{
    font-size:28px;
  }
}

@media (max-width: 650px) {
  .services-card-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-box {
    min-height: auto;
  }

  .specialist-attachments {
    padding: 24px;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .gallery-grid,
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .contact-cta {
    padding: 22px;
  }

  .project-gallery img,
  .gallery-grid img,
  .fleet-image img,
  .contact-visual img {
    border-radius: 18px;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 24px);
    max-width: 1180px;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .nav {
    top: 72px;
  }

  .logo img {
    width: 130px;
  }

  .hero {
    min-height: 520px;
  }

  .page-hero {
    min-height: 280px;
  }

  .page-hero h1 {
    max-width: 100%;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .project-card,
  .card-body {
    padding: 22px;
  }

  .home-contact-card {
    padding: 22px;
    border-radius: 24px;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 24px);
    max-width: 1180px;
  }

  .logo span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-bg,
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== CLEAN FINAL FIXES ===== */

/* Homepage: standalone OUR SERVICES title alignment */
main > .section-kicker{
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto 22px;
}

.intro{
  padding-bottom: 34px !important;
}

.service-grid{
  margin-top: 0 !important;
}

/* Keep homepage approach text and bullets aligned/clean */
.intro .split{
  align-items: start;
}

.intro .text-block{
  padding-top: 0;
}

.intro .text-block p{
  margin-bottom: 16px;
}

.intro .tick-list{
  margin-top: 18px;
  gap: 14px;
}

/* Equipment page specialist copy layout */
.specialist.section{
  padding: 64px 0 !important;
}

.specialist-copy-grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.specialist-copy-heading .section-kicker{
  text-align: left;
  margin-bottom: 18px;
}

.specialist-copy-heading .section-kicker::after{
  margin-left: 0;
}

.specialist-copy-heading h2{
  font-size: 58px !important;
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0;
  max-width: 620px;
}

.specialist-copy-content{
  padding-top: 4px;
  max-width: 760px;
}

.specialist-copy-content p{
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin-bottom: 20px;
}

.specialist-copy-content .key-features-title{
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.specialist-feature-list{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.specialist-feature-list li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
}

.specialist-feature-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d71920;
}

.specialist-summary{
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  text-align: left;
  max-width: 760px;
}

.specialist-attachments{
  margin-top: 58px !important;
}

.specialist-attachments-content{
  padding: 56px !important;
}

.specialist-attachments-content p:not(.section-kicker){
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.specialist-attachments .tick-list{
  gap: 14px;
}

.specialist-attachments .tick-list li{
  font-size: 16px;
}

/* Cleaner global spacing */
.section{
  padding-top: 56px;
  padding-bottom: 56px;
}

.service-cards-section{
  padding-top: 24px !important;
}

.services-intro{
  padding-bottom: 30px !important;
}

/* Mobile */
@media (max-width: 991px){
  .specialist-copy-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .specialist-copy-heading h2{
    font-size: 44px !important;
    max-width: 100%;
  }
}

@media (max-width: 768px){
  main > .section-kicker{
    width: calc(100% - 28px);
  }

  .specialist.section{
    padding: 48px 0 !important;
  }

  .specialist-copy-heading h2{
    font-size: 34px !important;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .specialist-copy-content p,
  .specialist-feature-list li,
  .specialist-summary{
    font-size: 16px;
    line-height: 1.6;
  }

  .specialist-feature-list li{
    padding-left: 24px;
    margin-bottom: 14px;
  }

  .specialist-feature-list li::before{
    width: 9px;
    height: 9px;
    top: 8px;
  }

  .specialist-attachments-content{
    padding: 34px 24px !important;
  }
}

@media (max-width: 560px){
  main > .section-kicker{
    width: calc(100% - 24px);
  }
}



/* ===== FINAL CLEAN FIXES ===== */

/* Home services aligned with container */
.home-services{
  padding-top:32px;
  padding-bottom:54px;
  background:#fff;
}

.home-services .section-kicker{
  margin-bottom:18px;
}

.home-services .service-grid{
  margin-top:0;
}

/* Better spacing between services and about preview */
.about-preview{
  padding-top:58px;
}

/* Equipment specialist section - compact list version */
.specialist.section{
  padding:64px 0;
}

.specialist-copy-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
  align-items:start;
}

.specialist-copy-heading .section-kicker{
  margin-bottom:18px;
}

.specialist-copy-heading .section-kicker::after{
  margin-left:0;
}

.specialist-copy-heading h2{
  font-size:58px;
  line-height:1.05;
  letter-spacing:-2px;
  margin:0;
  max-width:620px;
}

.specialist-copy-content{
  padding-top:4px;
  max-width:760px;
}

.specialist-copy-content p{
  font-size:19px;
  line-height:1.7;
  color:rgba(255,255,255,.78);
  margin-bottom:20px;
}

.key-features-title{
  font-size:20px;
  font-weight:700;
  color:#fff;
  margin-bottom:14px;
}

.specialist-feature-list{
  list-style:none;
  padding:0;
  margin:0 0 24px;
}

.specialist-feature-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:16px;
  font-size:19px;
  line-height:1.6;
  color:rgba(255,255,255,.82);
}

.specialist-feature-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:11px;
  width:11px;
  height:11px;
  border-radius:50%;
  background:#d71920;
}

.specialist-attachments{
  margin-top:58px;
}

.specialist-attachments-content{
  padding:56px;
}

/* Footer heading hierarchy fix */
.footer .footer-heading{
  margin-bottom:14px;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:16px;
  line-height:1.2;
}

/* Performance helpers */
img{
  content-visibility:auto;
}

@media(max-width:1100px){
  .specialist-copy-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .specialist-copy-heading h2{
    max-width:760px;
  }
}

@media(max-width:767px){
  .home-services{
    padding-top:28px;
    padding-bottom:46px;
  }

  .specialist.section{
    padding:48px 0;
  }

  .specialist-copy-heading h2{
    font-size:34px;
    line-height:1.1;
    letter-spacing:-1px;
  }

  .specialist-copy-content p,
  .specialist-feature-list li{
    font-size:16px;
    line-height:1.6;
  }

  .specialist-feature-list li{
    padding-left:24px;
    margin-bottom:14px;
  }

  .specialist-feature-list li::before{
    width:9px;
    height:9px;
    top:8px;
  }

  .specialist-attachments-content{
    padding:34px 26px;
  }
}

/* FINAL LOGO FIX */
.logo img {
  width: 220px !important;
  height: auto !important;
  max-height: 74px !important;
  object-fit: contain !important;
  display: block !important;
}

.footer-logo img {
  width: 220px !important;
  height: auto !important;
  max-height: 74px !important;
  object-fit: contain !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

@media (max-width: 980px) {
  .logo img { width: 180px !important; max-height: 64px !important; }
}

@media (max-width: 560px) {
  .logo img { width: 155px !important; max-height: 58px !important; }
}

/* ===== FINAL MOBILE ABOUT CTA FIX ===== */
@media (max-width: 767px) {
  .about-preview .about-grid,
  .about .about-grid {
    gap: 26px !important;
  }

  .about-preview .about-content h2,
  .about .about-content h2 {
    font-size: clamp(30px, 9.5vw, 38px) !important;
    line-height: 1.08 !important;
    letter-spacing: -1px !important;
    margin-bottom: 16px !important;
    max-width: 100% !important;
  }

  .about-preview .about-content p,
  .about .about-content p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }

  .about-preview .about-content .btn,
  .about .about-content .btn {
    width: auto !important;
    max-width: calc(100vw - 48px) !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 46px !important;
    padding: 12px 18px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    display: inline-flex !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    overflow-wrap: anywhere !important;
  }
}

@media (max-width: 420px) {
  .about-preview .about-content h2,
  .about .about-content h2 {
    font-size: 32px !important;
  }

  .about-preview .about-content .btn,
  .about .about-content .btn {
    font-size: 11px !important;
    padding: 11px 15px !important;
  }
}
