/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0a0a0f;
  --bg-section: #0f0f17;
  --bg-card: #151520;
  --bg-card-hover: #1a1a28;
  --text: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);
  --accent: #bd273a;
  --accent-hover: #d42e44;
  --accent-glow: rgba(189, 39, 58, 0.2);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 58px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 800;
  color: #1f5085;
  transition: color 0.3s;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
}

.navbar.scrolled .nav-links a {
  color: #1f5085;
}

.navbar.scrolled .nav-links a:hover {
  color: var(--accent);
}

.navbar.scrolled .mobile-toggle span {
  background: #1a1a2e;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent) !important;
  color: #ffffff !important;
  padding: 0 18px !important;
  border-radius: 0;
  font-weight: 700 !important;
  transition: background 0.2s !important;
  letter-spacing: 1px;
  height: 68px;
  display: flex !important;
  align-items: center;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #1a1a2e;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background: url('hero-bg.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 500px;
  padding: 0 0 60px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-align: left;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 420px;
  line-height: 1.6;
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

/* ========== SECTIONS COMMON ========== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: #141418;
  padding: 48px 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-bar-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-bar-item:last-child {
  border-right: none;
}

.stat-icon {
  color: var(--accent);
  margin-bottom: 12px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ========== ABOUT ========== */
.about {
  background: url('about-bg.png') center 40%/cover no-repeat;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
}

.about > .container {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.about-card-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.about-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== SERVICES ========== */
.services {
  background: var(--bg-section);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.service-item:first-child {
  border-top: 1px solid var(--border);
}

.service-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 60px;
}

.service-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.service-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.service-right h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.service-right p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
}

.service-item-featured {
  flex-wrap: nowrap;
}

.service-image {
  flex-shrink: 0;
  width: 320px;
  height: 200px;
  overflow: hidden;
  margin-left: auto;
  position: relative;
}

.service-image::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid rgba(189, 39, 58, 0.25);
  z-index: 2;
  pointer-events: none;
}

.service-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  z-index: 2;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: filter 0.3s, transform 0.4s;
}

.service-item:hover .service-image img {
  filter: brightness(0.8);
  transform: scale(1.04);
}

.service-item:nth-child(2) .service-image::before {
  border-color: rgba(31, 80, 133, 0.25);
}

.service-item:nth-child(2) .service-image::after {
  background: #1f5085;
}

.service-item:nth-child(3) .service-image::before {
  border-color: rgba(255, 255, 255, 0.1);
}

.service-item:nth-child(3) .service-image::after {
  background: rgba(255, 255, 255, 0.3);
}

/* ========== FLEET ========== */
.fleet {
  background: var(--bg-dark);
  padding: 48px 0;
}

.fleet-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fleet-card {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.4s, filter 0.4s;
}

.fleet-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.75);
}

.fleet-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.fleet-card-text {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  z-index: 1;
}

.fleet-card-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.fleet-card-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ========== WHY US ========== */
.why-us {
  background: var(--bg-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 39, 58, 0.3);
}

.feature-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(189, 39, 58, 0.15);
  margin-bottom: 16px;
  line-height: 1;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== CONTACT ========== */
.contact {
  background: #f5f5f5;
  padding: 0;
}

.contact > .container {
  max-width: 100%;
  padding: 0 0 0 max(24px, calc((100% - 1200px) / 2 + 24px));
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-height: 280px;
}

.contact-info {
  padding: 32px 48px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  margin-bottom: 12px;
  color: #1a1a2e;
  letter-spacing: -0.5px;
}

.contact-info > p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 14px;
}

.contact-buttons {
  display: flex;
  gap: 16px;
}

.contact-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.contact-btn-filled {
  background: var(--accent);
  color: #ffffff;
}

.contact-btn-filled:hover {
  background: var(--accent-hover);
}

.contact-btn-outline {
  background: transparent;
  color: #1a1a2e;
  border: 2px solid #1a1a2e;
}

.contact-btn-outline:hover {
  background: #1a1a2e;
  color: #ffffff;
}

.contact-visual {
  overflow: hidden;
  position: relative;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.5px;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-privacy {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-privacy:hover {
  color: var(--text);
}

/* ========== PRIVACY POLICY PAGE ========== */
.privacy-policy {
  background: var(--bg-section);
  padding: 120px 0 80px;
}

.privacy-policy h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.privacy-policy h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 16px;
}

.privacy-policy p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 800px;
}

.privacy-policy ul,
.privacy-policy ol {
  margin: 16px 0 24px 24px;
  max-width: 800px;
}

.privacy-policy li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.privacy-policy a {
  color: var(--accent);
}

.privacy-policy a:hover {
  color: var(--accent-hover);
}

/* ========== APPLY PAGE ========== */
.apply-page {
  background: var(--bg-section);
  padding: 120px 0 80px;
  min-height: 100vh;
}

.apply-page h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.apply-page .apply-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.apply-form {
  max-width: 720px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row-half {
  grid-template-columns: 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(189, 39, 58, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-card);
  color: #ffffff;
}

.form-group-full {
  margin-bottom: 24px;
  margin-top: 8px;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0 24px;
}

.apply-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */

/* ---------- Tablet landscape / small desktop ---------- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    width: 260px;
    height: 170px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .contact > .container {
    padding: 0;
  }

  .contact-info {
    padding: 48px 24px;
  }

  .contact-visual {
    height: 260px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    gap: 20px;
  }

  .apply-page {
    padding: 100px 0 60px;
  }
}

/* ---------- Tablet portrait / large phone ---------- */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-cta {
    text-align: center;
    width: 100%;
    display: flex !important;
    justify-content: center;
    height: auto !important;
    padding: 12px 18px !important;
  }

  .hero {
    min-height: 40vh;
  }

  .hero-content {
    padding: 0 0 40px;
  }

  .hero p {
    font-size: 14px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 12px;
  }

  section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header p {
    font-size: 14px;
  }

  .stats-bar {
    padding: 36px 0;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .stats-bar-item:nth-child(2) {
    border-right: none;
  }

  .fleet {
    padding: 36px 0;
  }

  .fleet-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fleet-card {
    height: 220px;
  }

  .fleet-card-text h3 {
    font-size: 18px;
  }

  .fleet-card-text p {
    font-size: 13px;
  }

  .service-item {
    gap: 20px;
    padding: 32px 0;
    flex-wrap: wrap;
  }

  .service-item-featured {
    flex-wrap: wrap;
  }

  .service-left {
    width: 40px;
  }

  .service-image {
    width: 100%;
    height: 180px;
    margin-left: 0;
  }

  .service-right h3 {
    font-size: 19px;
  }

  .service-right p {
    font-size: 14px;
  }

  .contact-info h2 {
    font-size: 24px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .privacy-policy {
    padding: 100px 0 60px;
  }

  .apply-page {
    padding: 80px 0 48px;
  }

  .apply-page h1 {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  .form-row-half {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
}

/* ---------- Small phone ---------- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 35vh;
  }

  .hero-content {
    padding: 0 0 32px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .btn {
    padding: 11px 18px;
    font-size: 11px;
    gap: 6px;
  }

  .btn svg {
    width: 16px;
    height: 16px;
  }

  .stats-bar {
    padding: 28px 0;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .stat-icon svg {
    width: 28px;
    height: 28px;
  }

  .stat-label {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .fleet-card {
    height: 200px;
  }

  .fleet-card-text {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .fleet-card-text h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .fleet-card-text p {
    font-size: 12px;
    line-height: 1.5;
  }

  section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .service-item {
    gap: 16px;
    padding: 28px 0;
  }

  .service-left {
    width: 32px;
  }

  .service-number {
    font-size: 12px;
  }

  .service-right h3 {
    font-size: 17px;
  }

  .service-right p {
    font-size: 13px;
    line-height: 1.7;
  }

  .service-image {
    height: 160px;
  }

  .contact-info {
    padding: 36px 16px;
  }

  .contact-info h2 {
    font-size: 22px;
  }

  .contact-info > p {
    font-size: 13px;
  }

  .contact-btn {
    font-size: 11px;
    padding: 9px 16px;
  }

  .contact-visual {
    height: 200px;
  }

  .footer {
    padding: 32px 0 20px;
  }

  .footer-top {
    padding-bottom: 20px;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .footer-bottom p,
  .footer-privacy {
    font-size: 12px;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .privacy-policy {
    padding: 80px 0 48px;
  }

  .privacy-policy h2 {
    font-size: 18px;
  }

  .privacy-policy p,
  .privacy-policy li {
    font-size: 14px;
  }
}

/* ---------- Extra small phone (320px) ---------- */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 24px;
  }

  .btn {
    padding: 10px 14px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .fleet-card {
    height: 180px;
  }

  .fleet-card-text p {
    font-size: 11px;
  }

  .contact-buttons {
    gap: 10px;
  }

  .contact-btn {
    font-size: 10px;
    padding: 8px 12px;
  }
}
