:root {
  --bg: #f5f5f5;
  --bg-soft: #e8e8e8;
  --bg-muted: #d0d0d0;
  --accent: #f97316; /* main orange */
  --accent-soft: rgba(248, 153, 50, 0.18);
  --accent-strong: #ea580c;
  --text: #222222;
  --text-soft: #555555;
  --border-subtle: rgba(148, 163, 184, 0.3);
  --danger: #fb7185;
  --success: #22c55e;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.12);
  --shadow-elevated: 0 20px 80px rgba(0, 0, 0, 0.18);
  --transition-fast: 160ms ease-out;
  --transition-med: 200ms ease;
}

/* ===== FLEET SECTION HOVER EFFECTS ===== */
#fleet {
  transition: background 0.3s ease;
}

#fleet h2 {
  animation: fadeInUp 0.6s ease-out;
}

#fleet .section-subtitle {
  animation: fadeInUp 0.6s ease-out 0.15s backwards;
}

#fleet .fleet-layout {
  animation: fadeInScale 0.7s ease-out 0.3s backwards;
}

/* Fleet note hover effect */
#fleet .fleet-note {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

#fleet .fleet-note:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border-color: rgba(248, 153, 50, 0.9);
}

/* Fleet note heading hover */
#fleet .fleet-note h3 {
  transition: color 0.3s ease, transform 0.3s ease;
}

#fleet .fleet-note:hover h3 {
  color: var(--accent);
  transform: translateX(5px);
}

/* Fleet note list items hover */
#fleet .fleet-note ul li {
  transition: transform 0.2s ease, color 0.2s ease;
}

#fleet .fleet-note:hover ul li {
  transform: translateX(5px);
  color: var(--text);
}

/* Fleet note button hover */
#fleet .fleet-note .btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

#fleet .fleet-note .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(248, 153, 50, 0.5);
}

/* Crane type cards in fleet - minimal hover */
#craneTypesContainer .card {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#craneTypesContainer .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(248, 153, 50, 0.5);
}

/* Fleet section cards entrance animation */
#fleet .cards .card {
  animation: fadeInUp 0.6s ease-out backwards;
}

#fleet .cards .card:nth-child(1) { animation-delay: 0.4s; }
#fleet .cards .card:nth-child(2) { animation-delay: 0.5s; }
#fleet .cards .card:nth-child(3) { animation-delay: 0.6s; }
#fleet .cards .card:nth-child(4) { animation-delay: 0.7s; }
#fleet .cards .card:nth-child(5) { animation-delay: 0.8s; }
#fleet .cards .card:nth-child(6) { animation-delay: 0.9s; }

/* Fleet note entrance animation */
#fleet .fleet-note {
  animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 4vw;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(254, 254, 254, 0.96), rgba(250, 250, 250, 0.9), transparent);
  border-bottom: 1px solid rgba(248, 153, 50, 0.45);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.nav a {
  position: relative;
  color: var(--text-soft);
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-strong), #fb923c);
  transition: width var(--transition-fast);
  border-radius: 999px;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

.admin-login-link {
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.85);
  opacity: 0.75;
}

.admin-login-link:hover {
  opacity: 1;
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.75rem;
  padding: 3.5rem 4vw 2.75rem;
  align-items: center;
  background-image: url('BGimage');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(254, 254, 254, 0.75);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 3.5vw, 3.4rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.9rem;
}

.hero-content p {
  margin: 0;
  color: var(--text-soft);
  max-width: 36rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  background: transparent;
  color: var(--text);
}

.btn:hover {
  transform: scale(1.05);
}

.btn.primary {
  background: radial-gradient(circle at top left, var(--accent-strong), #f97316);
  box-shadow: 0 18px 50px rgba(248, 153, 50, 0.65);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 60px rgba(248, 153, 50, 0.85);
}

.btn.secondary {
  background: rgba(254, 254, 254, 0.9);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn.secondary:hover {
  background: radial-gradient(circle at top left, rgba(248, 153, 50, 0.16), rgba(254, 254, 254, 0.95));
}

.btn.outline {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(254, 254, 254, 0.85);
}

.btn.outline:hover {
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.3), rgba(254, 254, 254, 0.98));
}

.btn.small {
  padding: 0.45rem 0.95rem;
  font-size: 0.8rem;
}

.btn.full-width {
  width: 100%;
}

.hero-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.hero-highlight span {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(248, 153, 50, 0.7);
  background: radial-gradient(circle at top left, rgba(248, 153, 50, 0.18), rgba(254, 254, 254, 0.9));
}

.hero-side {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: center;
}

.stat-card {
  background: radial-gradient(circle at top left, rgba(248, 153, 50, 0.14), var(--bg-soft));
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.stat-card:nth-child(2) {
  transform: translateX(8%);
}

.stat-card:nth-child(3) {
  transform: translateX(14%);
}

.stat-card h3 {
  margin: 0;
  font-size: 1.6rem;
}

.stat-card p {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.section {
  padding: 3.2rem 4vw 2.7rem;
}

.section.muted {
  background: linear-gradient(to bottom, rgba(254, 254, 254, 0.96), rgba(250, 250, 250, 1));
}

.section h2 {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0 0 1.8rem;
  color: var(--text-soft);
  max-width: 40rem;
  font-size: 0.95rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.card {
  background: linear-gradient(145deg, rgba(254, 254, 254, 0.98), rgba(250, 250, 250, 0.96));
  border-radius: 14px;
  padding: 0.9rem 1rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.card p {
  margin: 0 0 0.45rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.card ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.card ul li + li {
  margin-top: 0.15rem;
}

.fleet-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr);
  gap: 1.6rem;
  align-items: flex-start;
}

.fleet-note {
  background: radial-gradient(circle at top left, rgba(248, 153, 50, 0.22), rgba(254, 254, 254, 0.98));
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem 1.25rem;
  border: 1px solid rgba(248, 153, 50, 0.6);
  box-shadow: var(--shadow-elevated);
}

.fleet-note h3 {
  margin: 0 0 0.4rem;
}

.fleet-note p {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.fleet-note ul {
  margin: 0 0 0.8rem;
  padding-left: 1.2rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.availability-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
  align-items: center;
}

.availability-filters label {
  font-size: 0.86rem;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

select,
input,
textarea {
  background: rgba(254, 254, 254, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: var(--text);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), transform var(--transition-fast);
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(248, 153, 50, 0.7);
  background: linear-gradient(135deg, rgba(254, 254, 254, 0.97), rgba(254, 254, 254, 1));
}

textarea {
  resize: vertical;
}

.table-wrapper {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.45);
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(254, 254, 254, 0.96), rgba(254, 254, 254, 1));
  box-shadow: var(--shadow-soft);
}

.availability-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.availability-table thead {
  background: linear-gradient(to right, rgba(254, 254, 254, 1), rgba(250, 250, 250, 0.95));
}

.availability-table th,
.availability-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(200, 200, 200, 0.85);
}

.availability-table th {
  font-weight: 500;
  color: var(--text-soft);
}

.availability-table tbody tr:nth-child(even) {
  background: rgba(254, 254, 254, 0.9);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
}

.status-available {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.65);
}

.status-booked {
  background: rgba(234, 179, 8, 0.14);
  color: #facc15;
  border: 1px solid rgba(234, 179, 8, 0.7);
}

.status-maintenance {
  background: rgba(248, 113, 113, 0.16);
  color: #fca5a5;
  border: 1px solid rgba(248, 113, 113, 0.7);
}

.small-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 0.7rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-form,
.contact-info {
  background: linear-gradient(145deg, rgba(254, 254, 254, 0.98), rgba(250, 250, 250, 0.97));
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
}

.contact-info h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.contact-info p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.map-placeholder {
  margin-top: 0.8rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(148, 163, 184, 0.6);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--text-soft);
  background: radial-gradient(circle at top left, rgba(248, 153, 50, 0.14), rgba(254, 254, 254, 0.96));
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.form-field {
  margin-bottom: 0.75rem;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
  color: var(--text-soft);
}

.form-status {
  font-size: 0.8rem;
  margin-top: 0.6rem;
  min-height: 1.1rem;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.admin-section {
  border-top: 1px solid rgba(248, 153, 50, 0.65);
}

.admin-login-form {
  max-width: 280px;
  background: linear-gradient(135deg, rgba(254, 254, 254, 0.98), rgba(250, 250, 250, 0.95));
  border-radius: var(--radius-lg);
  padding: 0.8rem 1rem 0.8rem;
  border: 1px solid rgba(248, 153, 50, 0.75);
  box-shadow: var(--shadow-elevated);
  font-size: 0.85rem;
}

.admin-panel {
  margin-top: 1.3rem;
  background: radial-gradient(circle at top, rgba(254, 254, 254, 1), rgba(250, 250, 250, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(248, 153, 50, 0.5);
  padding: 1.4rem 1.45rem 1.3rem;
  box-shadow: var(--shadow-elevated);
}

.admin-panel.hidden {
  display: none;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.75);
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.3fr);
  gap: 1.2rem;
}

.admin-card {
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(254, 254, 254, 0.98), rgba(250, 250, 250, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: var(--shadow-soft);
}

.admin-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.admin-form .form-field:last-of-type {
  margin-bottom: 0.8rem;
}

.admin-type-list {
  margin-top: 0.9rem;
}

.admin-type-list h4 {
  margin: 0 0 0.4rem;
}

.admin-type-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 170px;
  overflow: auto;
}

.admin-type-list li {
  font-size: 0.86rem;
  padding: 0.3rem 0.4rem;
  border-radius: 8px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast);
}

.admin-type-list li:hover {
  background: rgba(254, 254, 254, 1);
  border-color: rgba(248, 153, 50, 0.7);
  transform: translateY(-1px);
}

.admin-type-list li span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
  padding: 1.9rem 4vw 1.5rem;
  margin-top: 1rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.footer-main p {
  margin: 0;
  color: var(--text-soft);
}

.footer-main h4 {
  margin: 0 0 0.4rem;
}

.footer-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-main li + li {
  margin-top: 0.25rem;
}

.footer-main a {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.footer-main a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  padding-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr);
    padding-top: 3rem;
  }

  .hero-side {
    display: none;
  }

  .fleet-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .topbar {
    padding-inline: 1rem;
  }

  .nav {
    display: none;
  }

  .section,
  .hero {
    padding-inline: 1.1rem;
  }

  .footer {
    padding-inline: 1.1rem;
  }
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ===== MOBILE NAVIGATION ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 70%;
  max-width: 300px;
  background: rgba(254, 254, 254, 0.98);
  backdrop-filter: blur(20px);
  padding: 5rem 2rem 2rem;
  gap: 1.5rem;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 35;
}

.nav-overlay.active {
  display: block;
}

/* ===== ENHANCED RESPONSIVE STYLES ===== */

/* Tablet adjustments */
@media (max-width: 1024px) {
  .hero {
    padding: 2.5rem 3vw 2rem;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .stat-card {
    padding: 0.9rem 1rem;
  }

  .stat-card h3 {
    font-size: 1.3rem;
  }

  .fleet-layout {
    gap: 1.2rem;
  }

  .fleet-note {
    padding: 1.1rem 1.2rem;
  }
}

/* Mobile navigation breakpoint */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
  }

  .topbar {
    padding: 0.75rem 5vw;
  }

  .logo {
    font-size: 0.95rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 5vw 1.5rem;
    gap: 1.5rem;
    text-align: center;
  }

  .hero::before {
    background: rgba(254, 254, 254, 0.92);
  }

  .hero-content {
    order: 1;
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 0.7rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.88rem;
  }

  .hero-highlight {
    justify-content: center;
  }

  .hero-highlight span {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }

  .hero-side {
    order: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .stat-card {
    padding: 0.7rem 0.6rem;
    transform: none !important;
  }

  .stat-card h3 {
    font-size: 1rem;
  }

  .stat-card p {
    font-size: 0.72rem;
  }

  .section {
    padding: 2.2rem 5vw 1.8rem;
  }

  .section h2 {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.88rem;
    margin-bottom: 1.3rem;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .card {
    padding: 0.85rem 0.95rem;
  }

  .card h3 {
    font-size: 0.95rem;
  }

  .card p,
  .card ul {
    font-size: 0.82rem;
  }

  .fleet-layout {
    grid-template-columns: 1fr;
  }

  .fleet-note {
    margin-top: 0.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .contact-form,
  .contact-info {
    padding: 1.1rem 1.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 1.5rem 5vw 1.2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-main ul {
    display: inline-block;
    text-align: left;
  }

  .footer-bottom {
    text-align: center;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .topbar {
    padding: 0.65rem 4vw;
  }

  .logo {
    font-size: 0.85rem;
  }

  .hamburger {
    width: 24px;
    height: 18px;
  }

  .hero {
    padding: 1.5rem 4vw 1.2rem;
  }

  .hero-content h1 {
    font-size: 1.35rem;
  }

  .hero-content p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-highlight {
    gap: 0.4rem;
  }

  .hero-highlight span {
    font-size: 0.68rem;
    padding: 0.2rem 0.5rem;
  }

  .hero-side {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .stat-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.8rem;
  }

  .stat-card h3 {
    font-size: 1rem;
  }

  .stat-card p {
    margin: 0;
  }

  .section {
    padding: 1.8rem 4vw 1.4rem;
  }

  .section h2 {
    font-size: 1.25rem;
  }

  .section-subtitle {
    font-size: 0.82rem;
  }

  .card {
    padding: 0.75rem 0.85rem;
  }

  .card h3 {
    font-size: 0.9rem;
  }

  .fleet-note {
    padding: 1rem 1.1rem;
  }

  .fleet-note h3 {
    font-size: 1rem;
  }

  .fleet-note p,
  .fleet-note ul {
    font-size: 0.82rem;
  }

  .contact-form,
  .contact-info {
    padding: 1rem 1.1rem;
  }

  .form-field {
    margin-bottom: 0.6rem;
  }

  .form-field label {
    font-size: 0.78rem;
  }

  select,
  input,
  textarea {
    padding: 0.4rem 0.55rem;
    font-size: 0.85rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .footer {
    padding: 1.2rem 4vw 1rem;
  }

  .footer-main {
    gap: 1.2rem;
  }

  .footer-main h4 {
    font-size: 1rem;
  }

  .footer-main p,
  .footer-main a,
  .footer-main li {
    font-size: 0.82rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.2rem;
  }

  .section h2 {
    font-size: 1.1rem;
  }

  .logo {
    font-size: 0.78rem;
  }

  .btn {
    font-size: 0.8rem;
    padding: 0.55rem 0.9rem;
  }
}

