:root {
  --bg: #f5f1e8;
  --surface: #fffdf8;
  --text: #181512;
  --text-light: #7a7065;
  --muted: #5b544b;
  --line: #ddd4c7;
  --brand: #c26a35;
  --brand-deep: #8f4d24;
  --brand-light: #e58e6b;
  --hero-shadow: rgba(9, 8, 7, 0.5);
  --radius: 18px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 40px rgba(194, 106, 53, 0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top right, #f0dfcb 0%, var(--bg) 42%, #efe9dc 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 252, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  height: auto;
  min-height: 48px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.logo-text {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1px;
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.menu-toggle:hover {
  border-color: var(--brand);
  background: rgba(194, 106, 53, 0.05);
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.menu a:hover {
  color: var(--brand);
  background: rgba(194, 106, 53, 0.1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  border-color: var(--brand);
  transform: scale(1.02);
}

.hamburger {
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.menu-toggle.active .hamburger {
  background: transparent;
}

.menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.menu a:hover {
  color: var(--brand);
  background: rgba(194, 106, 53, 0.1);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: all 0.3s ease;
}

.menu a:hover::after {
  width: 80%;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  font-weight: 700;
}

.phone-link:hover {
  background: var(--brand);
  color: white;
}

.phone-link:hover::after {
  background: white;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;
  background: url("./assets/bg.jpg") center / cover no-repeat;
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 14, 8, 0.9) 0%, rgba(20, 14, 8, 0.6) 50%, rgba(20, 14, 8, 0.4) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(102deg, rgba(20, 14, 8, 0.95), rgba(20, 14, 8, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  color: #fffaf3;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(194, 106, 53, 0.2);
  border: 1px solid rgba(194, 106, 53, 0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  margin-top: 0.5rem;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-copy {
  width: min(70ch, 100%);
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: auto;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus-visible {
  color: #fff;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(194, 106, 53, 0.5);
}

.btn-secondary {
  background: white;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn-secondary:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  transform: translateY(-2px);
}

.hero .btn-secondary {
  background: white;
  color: var(--brand);
  border-color: white;
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
  transform: translateX(5px);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding-top: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.trust-item svg {
  color: var(--brand);
}

/* Sections */
.section {
  width: min(1100px, calc(100% - 2rem));
  margin: 1.5rem auto;
}

.section-header,
.contact-header {
  margin-bottom: 2.5rem;
}

.section-decoration {
  width: 96px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: 2px;
  margin-bottom: 1rem;
  margin-inline: auto;
}

.section-content,
.contact-content {
  text-align: center;
}

.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--brand);
  margin-bottom: 1rem;
  background: rgba(194, 106, 53, 0.1);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.section-left .section-content {
  text-align: left;
}

.section-left .section-decoration {
  margin-left: 0;
}

.section-text {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--muted);
}

/* Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(194, 106, 53, 0.1), rgba(194, 106, 53, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  color: var(--text);
}

.card p {
  margin-bottom: 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-link:hover {
  gap: 0.5rem;
  transform: translateX(5px);
}

/* Fleet Section */
.fleet-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.fleet-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  padding: 0.45rem;
  box-shadow: var(--shadow-sm);
}

.fleet-item img {
  width: 100%;
  height: clamp(130px, 16vw, 180px);
  object-fit: contain;
  transition: transform 0.5s ease;
}

.fleet-gallery .floating {
  animation: none;
}

.fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(194, 106, 53, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fleet-item:hover img {
  transform: scale(1.05);
}

.fleet-item:hover .fleet-overlay {
  opacity: 1;
}

.fleet-overlay span {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Split Section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.panel::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--brand);
  border-radius: 2px 2px 0 0;
}

.panel-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #fff4ea, #ffe8d5);
  border: 1px solid rgba(194, 106, 53, 0.24);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--brand);
  box-shadow: 0 10px 24px rgba(194, 106, 53, 0.16);
}

.panel h2 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  color: var(--text);
}

.panel-content h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.schedule {
  margin: 1.5rem 0 0;
  list-style: none;
}

.schedule-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(194, 106, 53, 0.05);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.schedule-item:hover {
  background: rgba(194, 106, 53, 0.1);
  transform: translateX(5px);
}

.schedule-icon {
  width: 36px;
  height: 36px;
  background: white;
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.schedule-info {
  display: flex;
  flex-direction: column;
}

.schedule-info strong {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.schedule-info span {
  font-size: 0.9rem;
  color: var(--muted);
}

.location {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Map */
.map-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.text-link:hover {
  gap: 0.8rem;
  transform: translateX(5px);
}

/* Contact Section */
.contact-wrapper {
  background: linear-gradient(135deg, var(--surface) 0%, #fffaf3 100%);
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid var(--line);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(194, 106, 53, 0.05), transparent);
  border-radius: 0 0 0 100px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: transparent;
  border: none;
  padding: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.2rem;
  border: 2px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(194, 106, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ccc;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-actions .btn {
  flex: 1;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateX(5px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #fff4ea, #ffe8d5);
  border: 1px solid rgba(194, 106, 53, 0.24);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.info-content p {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

/* Footer */
.footer {
  padding: 0.75rem 0;
  text-align: center;
  border-top: 1px solid var(--line);
  position: relative;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand span {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text);
}

.footer p {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
}

.footer-decorations {
  margin-top: 0.5rem;
}

.footer-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  margin: 0 auto;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

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

/* Responsive */
@media (max-width: 900px) {
  .cards-container,
  .fleet-gallery,
  .split,
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .section {
    margin: 3rem auto;
  }

  .section-split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 700px) {
  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 0.6rem 0.8rem;
    min-height: 56px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    gap: 0;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
  }

  .hamburger,
  .hamburger::before,
  .hamburger::after {
    width: 18px;
  }

  .hamburger {
    display: block;
    position: relative;
    height: 2px;
  }

  .hamburger::before,
  .hamburger::after {
    left: 0;
    height: 2px;
  }

  .hamburger::before {
    top: -6px;
  }

  .hamburger::after {
    top: 6px;
  }

  .menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0.5rem;
    right: 0.5rem;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: rgba(255, 252, 246, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.35rem;
    box-shadow: var(--shadow-lg);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    width: 100%;
    margin: 0;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border-top: none;
    font-size: 0.95rem;
  }

  .phone-link {
    justify-content: center;
    background: rgba(194, 106, 53, 0.08);
  }

  .cards-container,
  .split,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section-soft .fleet-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    text-align: left;
  }

  .hero {
    min-height: 76vh;
    padding: 1.1rem 0.9rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
    margin-bottom: 1rem;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .trust-badges {
    justify-content: flex-start;
  }

  .contact-wrapper {
    padding: 1.25rem;
  }

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

  .form-actions .btn {
    width: 100%;
  }

  .panel {
    padding: 1.25rem;
  }

  .btn {
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
    width: auto;
    justify-content: center;
  }

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

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

  .btn span {
    font-size: 0.95rem;
  }

  .contact-container {
    gap: 1.5rem;
  }

  .form-row {
    gap: 0.75rem;
  }

  .fleet-gallery {
    gap: 0.5rem;
  }

  .fleet-item {
    padding: 0.2rem;
  }

  .fleet-item img {
    height: 120px;
  }

  .contact-info {
    gap: 0.75rem;
  }

  .info-card {
    padding: 1rem;
  }

  .schedule-item {
    padding: 0.75rem;
  }

  .section {
    margin: 1.6rem auto;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 0.55rem 0.7rem;
  }

  .brand {
    min-width: 0;
  }

  .logo-text {
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-badge {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    margin-bottom: 1rem;
  }

  .section {
    margin: 2rem auto;
  }

  .hero {
    min-height: 70vh;
    padding: 1rem;
  }

  .cards-container {
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .fleet-gallery {
    gap: 0.5rem;
  }

  .fleet-item img {
    height: 140px;
  }

  .contact-wrapper {
    padding: 1rem;
  }
}

@media (max-width: 380px) {
  .logo-text {
    display: none;
  }

  .brand img {
    width: 26px;
    height: 26px;
  }
}
