@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,400&family=Barlow+Condensed:wght@300;400;600;700;900&display=swap');

:root {
  /* ── Orange + White colour scheme ── */
  --red: #F97316;
  --red-dark: #ea6c0a;
  --red-glow: rgba(249,115,22,0.28);
  --black: #0a0a0a;
  --dark: #111318;
  --dark2: #1a1d24;
  --dark3: #22262f;
  --gray: #8a8f9a;
  --gray-light: #c8cbd4;
  --white: #f4f5f7;
  --gold: #f0b429;

  /* ── Font sizes — single source of truth ── */
  --fs-body:        18px;
  --fs-small:       16px;
  --fs-label:       14px;
  --fs-tiny:        13px;
  --fs-nav:         16px;
  --fs-badge:       14px;
  --fs-hero-sub:    22px;
  --fs-section-sub: 19px;
  --fs-card-title:  20px;
  --fs-card-desc:   17px;
  --fs-stat-num:    52px;
  --fs-form-input:  20px;
  --fs-form-label:  16px;
  --fs-form-h3:     28px;
  --fs-footer-p:    16px;
  --fs-footer-link: 15px;
  --fs-footer-h4:   14px;
  --fs-footer-num:  34px;
  --fs-footer-bot:  15px;
  --fs-exc-title:   16px;
  --fs-exc-desc:    16px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-size: var(--fs-body);
  line-height: 1.8;
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ─── HEADER / NAV ──────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(249,115,22,0.18);
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; transition: background 0.3s;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 44px; height: 44px; background: var(--red);
  clip-path: polygon(0 30%, 20% 0, 100% 0, 100% 70%, 80% 100%, 0 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text span:first-child {
  font-family: 'Bebas Neue', sans-serif; font-size: 32px;
  letter-spacing: 3px; color: var(--white);
}
.logo-text span:last-child {
  font-family: 'Barlow Condensed', sans-serif; font-size: 17px;
  letter-spacing: 5px; color: var(--red); text-transform: uppercase;
}
nav ul { list-style: none; display: flex; gap: 4px; }
nav ul li a {
  color: var(--gray-light); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--fs-nav); font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 8px 18px; border-radius: 4px;
  position: relative; transition: color 0.3s;
}
nav ul li a::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 1.5px; background: var(--red); transform: scaleX(0); transition: transform 0.3s;
}
nav ul li a:hover { color: var(--white); }
nav ul li a:hover::after { transform: scaleX(1); }
.nav-cta { background: var(--red) !important; color: var(--white) !important; border-radius: 4px !important; padding: 8px 22px !important; }
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ─── HERO ──────────────────────────────── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden; background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920') center/cover no-repeat;
  opacity: 0.18; filter: grayscale(30%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(249,115,22,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(249,115,22,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(249,115,22,0.08) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 1200px;
  margin: 0 auto; padding: 140px 60px 80px; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.3);
  color: var(--red); font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--fs-badge); font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; padding: 8px 18px; border-radius: 50px;
  margin-bottom: 28px; animation: fadeSlideUp 0.6s ease both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--red);
  border-radius: 50%; animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 10vw, 140px); line-height: 0.92; letter-spacing: 2px;
  color: var(--white); animation: fadeSlideUp 0.6s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--red); display: block; }
.hero-sub {
  font-size: var(--fs-hero-sub); font-weight: 300; color: var(--gray-light);
  max-width: 520px; margin: 24px 0 40px;
  animation: fadeSlideUp 0.6s 0.2s ease both; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeSlideUp 0.6s 0.3s ease both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 18px 36px; text-decoration: none; border-radius: 4px;
  transition: all 0.3s; border: 2px solid var(--red); position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 30px var(--red-glow); }
.btn-primary:hover::before { opacity: 1; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; padding: 18px 36px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  border-radius: 4px; transition: all 0.3s; border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 48px; margin-top: 70px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08); animation: fadeSlideUp 0.6s 0.4s ease both;
}
.stat-item { text-align: left; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-stat-num); line-height: 1; color: var(--white); }
.stat-num span { color: var(--red); }
.stat-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: var(--fs-label);
  letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 4px;
}
.hero-phone {
  position: absolute; right: 60px; bottom: 80px; z-index: 2;
  background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.25);
  border-radius: 12px; padding: 24px 32px; text-align: center;
  backdrop-filter: blur(10px); animation: fadeSlideUp 0.6s 0.5s ease both;
}
.hero-phone .ph-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: var(--fs-small);
  letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 6px;
}
.hero-phone .ph-num { font-family: 'Bebas Neue', sans-serif; font-size: 34px; letter-spacing: 2px; color: var(--white); }
.hero-phone .ph-avail {
  font-size: var(--fs-small); color: #4ade80;
  display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 6px;
}
.hero-phone .ph-avail::before { content: ''; width: 6px; height: 6px; background: #4ade80; border-radius: 50%; }

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

/* ─── SECTION COMMONS ───────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif; font-size: var(--fs-tiny);
  font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 28px; height: 2px; background: var(--red); border-radius: 1px; }
.section-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 6vw, 80px);
  line-height: 1; letter-spacing: 1px; color: var(--white); margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--red); }
.section-sub { font-size: var(--fs-section-sub); font-weight: 300; color: var(--gray); max-width: 560px; line-height: 1.8; }
.container { max-width: 1200px; margin: 0 auto; padding: 100px 60px; }

/* ─── TRUST BAR ─────────────────────────── */
.trust-bar {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0 60px;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; flex-wrap: wrap; gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif; font-size: var(--fs-small);
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-light);
}
.trust-item .ti-icon {
  width: 40px; height: 40px; background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.06); }

/* ─── SERVICES ──────────────────────────── */
.services-section { background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 60px; }
.service-card {
  background: var(--dark); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 36px; position: relative;
  overflow: hidden; transition: all 0.4s; cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { border-color: rgba(249,115,22,0.25); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(249,115,22,0.08); }
.service-card:hover::before { opacity: 1; }
.sc-icon {
  width: 58px; height: 58px; background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; transition: all 0.3s;
}
.service-card:hover .sc-icon { background: var(--red); border-color: var(--red); }
.sc-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: var(--fs-card-title);
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 10px;
}
.sc-desc { font-size: var(--fs-card-desc); font-weight: 300; color: var(--gray); line-height: 1.7; }
.sc-num {
  position: absolute; top: 24px; right: 24px;
  font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: 1;
  color: rgba(255,255,255,0.04); transition: color 0.3s;
}
.service-card:hover .sc-num { color: rgba(249,115,22,0.06); }

/* ─── ABOUT ─────────────────────────────── */
.about-section { background: var(--dark); position: relative; overflow: hidden; }
.about-section::before {
  content: 'NX'; position: absolute; right: -20px; top: -40px;
  font-family: 'Bebas Neue', sans-serif; font-size: 400px;
  color: rgba(249,115,22,0.025); line-height: 1; pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: 12px; object-fit: cover; aspect-ratio: 4/3; display: block; filter: saturate(0.8); }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--red); border-radius: 12px; padding: 20px 24px; text-align: center;
}
.about-img-badge .aib-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; line-height: 1; color: #fff; }
.about-img-badge .aib-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 2px;
}
.about-section p { font-size: var(--fs-body); color: var(--gray); font-weight: 300; line-height: 1.9; margin-bottom: 20px; }
.excellence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.exc-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px; padding: 22px; transition: all 0.3s;
}
.exc-item:hover { border-color: rgba(249,115,22,0.2); background: rgba(249,115,22,0.04); }
.exc-icon {
  width: 44px; height: 44px; background: rgba(249,115,22,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.exc-text h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: var(--fs-exc-title);
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 4px;
}
.exc-text p { font-size: var(--fs-exc-desc); font-weight: 300; color: var(--gray); line-height: 1.6; margin-bottom: 0; }

/* ─── SERVICE AREAS ─────────────────────── */
.areas-section { background: var(--black); }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; margin-top: 50px; }
.area-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px; padding: 18px 22px; font-size: var(--fs-small);
  font-weight: 500; color: var(--gray-light); transition: all 0.3s; text-decoration: none;
}
.area-item::before { content: '📍'; font-size: 18px; flex-shrink: 0; }
.area-item:hover { border-color: rgba(249,115,22,0.3); color: var(--white); background: rgba(249,115,22,0.06); transform: translateX(4px); }

/* ─── GALLERY ───────────────────────────── */
.gallery-section { background: var(--dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 200px); gap: 12px; margin-top: 50px; }
.gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.g-item { border-radius: 10px; overflow: hidden; position: relative; background: var(--dark3); cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, filter 0.5s; filter: saturate(0.7); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(249,115,22,0.6), transparent);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px;
}
.g-overlay span { font-size: 28px; color: #fff; transform: translateY(10px); transition: transform 0.3s; }
.g-item:hover img { transform: scale(1.06); filter: saturate(1); }
.g-item:hover .g-overlay { opacity: 1; }
.g-item:hover .g-overlay span { transform: translateY(0); }

/* ─── FLEET ─────────────────────────────── */
.fleet-section { background: var(--black); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 50px; }
.fleet-card { background: var(--dark); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; transition: all 0.4s; }
.fleet-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,0.25); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.fleet-img { height: 200px; overflow: hidden; background: var(--dark3); position: relative; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: saturate(0.8); }
.fleet-card:hover .fleet-img img { transform: scale(1.06); filter: saturate(1); }
.fleet-badge {
  position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; padding: 5px 12px; border-radius: 4px;
}
.fleet-info { padding: 22px 26px; }
.fleet-info h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: var(--fs-card-title);
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 6px;
}
.fleet-info p { font-size: var(--fs-card-desc); color: var(--gray); }

/* ─── FAQ ───────────────────────────────── */
.faq-section { background: var(--dark); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 50px; }
.faq-item { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; padding: 24px 26px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; text-align: left; transition: background 0.3s; gap: 16px;
}
.faq-q:hover { background: rgba(249,115,22,0.04); }
.faq-q span { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 600; letter-spacing: 0.5px; color: var(--white); line-height: 1.4; }
.faq-arrow { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; color: var(--red); transition: all 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--red); color: #fff; border-color: var(--red); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: var(--fs-small); font-weight: 300; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 26px 24px; }

/* ─── CONTACT INFO ──────────────────────── */
.contact-section { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info { padding-top: 8px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ci-item:last-of-type { border-bottom: none; }
.ci-icon { width: 52px; height: 52px; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.ci-content h4 { font-family: 'Barlow Condensed', sans-serif; font-size: var(--fs-tiny); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.ci-content a, .ci-content p { font-size: 20px; font-weight: 600; color: var(--white); text-decoration: none; transition: color 0.3s; }
.ci-content a:hover { color: var(--red); }
.emergency-box { background: var(--red); border-radius: 12px; padding: 26px; margin-top: 8px; }
.emergency-box .em-label { font-family: 'Barlow Condensed', sans-serif; font-size: var(--fs-small); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.emergency-box .em-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; letter-spacing: 2px; color: #fff; display: block; text-decoration: none; }
.emergency-box .em-sub { font-size: var(--fs-small); color: rgba(255,255,255,0.85); margin-top: 4px; }

/* ─── CONTACT FORM ──────────────────────── */
.contact-form { background: var(--dark); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 44px; }
.contact-form h3 { font-family: 'Barlow Condensed', sans-serif; font-size: var(--fs-form-h3); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: 'Barlow Condensed', sans-serif; font-size: var(--fs-form-label); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-light); }
.form-group input, .form-group textarea, .form-group select { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 18px 20px; color: var(--white); font-family: 'Barlow', sans-serif; font-size: var(--fs-form-input); outline: none; transition: all 0.3s; width: 100%; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: rgba(249,115,22,0.4); background: rgba(249,115,22,0.04); box-shadow: 0 0 0 3px rgba(249,115,22,0.08); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--dark); color: var(--white); }
.form-full { margin-bottom: 16px; }
.form-submit { width: 100%; background: var(--red); color: #fff; border: none; border-radius: 8px; padding: 20px; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.form-submit:hover { background: var(--red-dark); box-shadow: 0 8px 24px var(--red-glow); transform: translateY(-2px); }
.form-note { text-align: center; font-size: var(--fs-small); color: var(--gray); margin-top: 16px; }
.form-note a { color: var(--red); text-decoration: none; }

/* ─── EMERGENCY STRIP ───────────────────── */
.emergency-strip { background: var(--red); padding: 28px 60px; text-align: center; }
.emergency-strip-inner { max-width: 700px; margin: 0 auto; }
.emergency-strip-label { font-family: 'Barlow Condensed', sans-serif; font-size: var(--fs-small); font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.emergency-strip-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px,6vw,64px); letter-spacing: 3px; color: #fff; text-decoration: none; display: block; line-height: 1; }
.emergency-strip-sub { font-size: var(--fs-small); color: rgba(255,255,255,0.85); margin-top: 8px; }

/* ─── FOOTER ─────────────────────────────── */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { max-width: 1200px; margin: 0 auto; padding: 70px 60px 50px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: var(--fs-footer-p); font-weight: 300; color: var(--gray); line-height: 1.8; margin-bottom: 24px; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 17px; color: var(--gray); transition: all 0.3s; }
.social-btn:hover { border-color: var(--red); color: var(--red); background: rgba(249,115,22,0.08); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: var(--fs-footer-h4); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: var(--fs-footer-link); font-weight: 300; color: var(--gray); text-decoration: none; transition: color 0.3s; display: inline-flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: ''; width: 0; height: 1px; background: var(--red); transition: width 0.3s; display: inline-block; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a:hover::before { width: 12px; }
.footer-emergency { background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2); border-radius: 10px; padding: 22px; }
.footer-emergency .fe-label { font-family: 'Barlow Condensed', sans-serif; font-size: var(--fs-tiny); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.footer-emergency .fe-label::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse 1.5s infinite; }
.footer-emergency .fe-num { font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-footer-num); letter-spacing: 2px; color: var(--white); display: block; text-decoration: none; transition: color 0.3s; }
.footer-emergency .fe-num:hover { color: var(--red); }
.footer-emergency .fe-info { font-size: var(--fs-tiny); color: var(--gray); margin-top: 6px; line-height: 1.5; }
.footer-emergency .fe-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.footer-emergency .fe-tags span { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-light); padding: 5px 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 22px 60px; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; font-size: var(--fs-footer-bot); color: var(--gray); }
.footer-bottom a { color: var(--gray); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--red); }

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-grid .g-item:nth-child(1) { grid-column: span 2; }
  .hero-phone { display: none; }
}
@media (max-width: 768px) {
  header { padding: 0 20px; height: 64px; }
  .hamburger { display: flex; }
  nav { display: none !important; position: fixed !important; top: 64px !important; left: 0 !important; right: 0 !important; height: 45vh !important; background: #000000 !important; padding: 30px 20px !important; border-top: 3px solid var(--red) !important; z-index: 99999 !important; }
  nav.open { display: block !important; background: #000000 !important; }
  nav ul { flex-direction: column; gap: 4px; }
  nav ul li a { font-size: 22px; padding: 14px 16px; border-radius: 8px; }
  .container, .footer-top, .footer-bottom { padding-left: 20px; padding-right: 20px; }
  .hero-content { padding: 120px 20px 60px; }
  .hero-stats { gap: 28px; }
  .stat-num { font-size: 38px; }
  .about-grid .about-img-wrap { order: -1; }
  .about-img-badge { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .g-item:nth-child(1) { grid-column: span 1; }
  .trust-bar { padding: 0 20px; }
  .trust-divider { display: none; }
  .excellence-grid { grid-template-columns: 1fr; }
  .emergency-strip { padding: 28px 20px; }
}

/* ─── FOOTER BRAND PARAGRAPH (simple pages) ── */
.footer-brand-p {
  font-size: var(--fs-footer-p);
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
}

/* ─── UNIVERSAL FONT CONSISTENCY (all pages) ── */

/* All headings use Bebas Neue */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

/* All body/paragraph text uses Barlow */
p, li, span, label, input, textarea, select, button, a {
  font-family: 'Barlow', sans-serif;
}

/* Section titles consistent across all pages */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--red);
}

/* Section tag consistent across all pages */
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--fs-badge);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
}

/* Section subtitle consistent across all pages */
.section-sub {
  font-size: var(--fs-section-sub);
  font-weight: 300;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 50px;
}

/* Hero h1 consistent */
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
}

/* Page hero h1 (inner pages with smaller size) */
.hero h1[style*="clamp(48px"] {
  font-size: clamp(48px, 7vw, 90px) !important;
}

/* Hero sub text consistent */
.hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: var(--fs-hero-sub);
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.7;
}

/* Service card text consistent */
.sc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--fs-card-title);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.sc-desc {
  font-family: 'Barlow', sans-serif;
  font-size: var(--fs-card-desc);
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}

/* Excellence/about text consistent */
.exc-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--fs-exc-title);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.exc-text p {
  font-family: 'Barlow', sans-serif;
  font-size: var(--fs-exc-desc);
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

/* Fleet card text consistent */
.fleet-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--fs-card-title);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}
.fleet-info p {
  font-family: 'Barlow', sans-serif;
  font-size: var(--fs-card-desc);
  color: var(--gray);
}

/* Trust bar consistent */
.trust-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* Mobile font size consistency */
@media (max-width: 768px) {
  .section-title { font-size: clamp(30px, 8vw, 48px); }
  .hero h1 { font-size: clamp(52px, 12vw, 90px); }
  .hero-sub { font-size: 17px; }
  .section-sub { font-size: 16px; }
  .sc-title { font-size: 17px; }
  .sc-desc { font-size: 15px; }
  .exc-text h4 { font-size: 15px; }
  .exc-text p { font-size: 15px; }
  .fleet-info h3 { font-size: 17px; }
  .fleet-info p { font-size: 15px; }
}