/* ================================
   Northeast Rentals - Main Stylesheet
   Color Palette:
   #FCA47C - Peach
   #23CED9 - Teal Bright
   #F9D779 - Yellow
   #A1CCA6 - Sage Green
   #097C87 - Deep Teal
================================= */

:root {
  --peach: #FCA47C;
  --teal-bright: #23CED9;
  --yellow: #F9D779;
  --sage: #A1CCA6;
  --deep-teal: #097C87;
  --dark: #0B2B2E;
  --white: #FFFFFF;
  --off-white: #FBFBF8;
  --gray-text: #5C6B6C;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(9, 124, 135, 0.12);
  --shadow-hover: 0 16px 40px rgba(9, 124, 135, 0.2);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--off-white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  background: rgba(35, 206, 217, 0.15);
  color: var(--deep-teal);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header p {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--deep-teal);
  color: var(--white);
}

.btn-primary:hover {
  background: #086670;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

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

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 13px;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1fb959;
  transform: translateY(-2px);
}

.btn-call {
  background: var(--peach);
  color: var(--dark);
}

.btn-call:hover {
  background: #fb9264;
  transform: translateY(-2px);
}

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

/* ===== Top bar ===== */
.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  transition: var(--transition);
}

.topbar-links a:hover {
  opacity: 1;
  color: var(--yellow);
}

/* ===== Header / Nav ===== */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--deep-teal);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #eafcfb 0%, #f6fbe9 100%);
  padding: 70px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--peach);
  opacity: 0.25;
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: var(--teal-bright);
  opacity: 0.15;
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--deep-teal);
  position: relative;
  white-space: nowrap;
}

.hero-content p {
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stats div h3 {
  font-size: 28px;
  color: var(--deep-teal);
  font-weight: 700;
}

.hero-stats div p {
  font-size: 13px;
  color: var(--gray-text);
  margin: 0;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge .icon-circle {
  width: 44px;
  height: 44px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero-badge strong {
  display: block;
  font-size: 15px;
}

.hero-badge span {
  font-size: 12px;
  color: var(--gray-text);
}

/* ===== Services strip ===== */
.services-strip {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.services-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-item .ic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.service-item:nth-child(1) .ic { background: rgba(252,164,124,0.25); }
.service-item:nth-child(2) .ic { background: rgba(35,206,217,0.2); }
.service-item:nth-child(3) .ic { background: rgba(249,215,121,0.3); }
.service-item:nth-child(4) .ic { background: rgba(161,204,166,0.35); }

.service-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.service-item p {
  font-size: 13px;
  color: var(--gray-text);
}

/* ===== Fleet / Vehicles ===== */
.fleet-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.fleet-tab {
  padding: 10px 26px;
  border-radius: 50px;
  background: var(--white);
  border: 2px solid #e2e2e2;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.fleet-tab:hover {
  border-color: var(--teal-bright);
}

.fleet-tab.active {
  background: var(--deep-teal);
  border-color: var(--deep-teal);
  color: var(--white);
}

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

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.vehicle-img {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #f2f2f2;
}

.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.vehicle-card:hover .vehicle-img img {
  transform: scale(1.08);
}

.vehicle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
}

.vehicle-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vehicle-body h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.vehicle-body p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.vehicle-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vehicle-actions .btn {
  padding: 11px 10px;
  font-size: 13px;
}

.fleet-more {
  text-align: center;
  margin-top: 40px;
}

/* ===== Why choose us ===== */
.why-us {
  background: var(--white);
}

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

.why-card {
  padding: 32px 26px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid #ececec;
  transition: var(--transition);
}

.why-card:hover {
  background: var(--deep-teal);
  color: var(--white);
  transform: translateY(-6px);
}

.why-card:hover p {
  color: rgba(255,255,255,0.85);
}

.why-card .ic {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--teal-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  color: var(--white);
}

.why-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ===== About ===== */
.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-images img {
  border-radius: var(--radius);
  height: 220px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-images img:first-child {
  margin-top: 40px;
}

.about-text p {
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 15.5px;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
}

.about-list li .tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--dark);
  flex-shrink: 0;
}

/* ===== Services detail ===== */
.services-detail {
  background: linear-gradient(180deg, #f4fdfc, var(--off-white));
}

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

.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.svc-card:hover {
  transform: translateY(-6px);
}

.svc-card .num {
  font-size: 13px;
  font-weight: 700;
  color: var(--peach);
  margin-bottom: 10px;
}

.svc-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  background: var(--off-white);
  transition: var(--transition);
}

.faq-item.open .faq-question {
  background: var(--deep-teal);
  color: var(--white);
}

.faq-question .plus {
  font-size: 20px;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 18px 22px;
  color: var(--gray-text);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ===== Terms Section ===== */
.terms-section {
  background: var(--off-white);
}

.terms-list {
  max-width: 850px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px 30px;
}

.terms-list li {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--gray-text);
}

.terms-list li:last-child {
  border-bottom: none;
}

.terms-list li .t-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(120deg, var(--deep-teal), var(--teal-bright));
  color: var(--white);
  padding: 60px 0;
}

.cta-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-banner h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  margin-bottom: 8px;
}

.cta-banner p {
  opacity: 0.9;
  font-size: 15px;
}

.cta-banner .cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--deep-teal);
}

.cta-banner .btn-primary:hover {
  background: var(--yellow);
  color: var(--dark);
}

/* ===== Contact ===== */
.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-info-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-info-card > p {
  opacity: 0.8;
  font-size: 14.5px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-row .ic {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-row strong {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.contact-row span, .contact-row a {
  font-size: 14px;
  opacity: 0.85;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact-socials a:hover {
  background: var(--teal-bright);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

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

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e2e2e2;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-bright);
  background: var(--white);
}

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

.form-note {
  font-size: 12.5px;
  color: var(--gray-text);
  margin-top: 12px;
  text-align: center;
}

/* ===== Footer ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
  height: 42px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.75;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  opacity: 0.75;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--teal-bright);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--teal-bright);
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

/* ===== Floating buttons ===== */
.float-btns {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  font-size: 26px;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background: #25D366;
  color: var(--white);
}

.float-call {
  background: var(--peach);
  color: var(--dark);
}

/* ===== Page header (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--deep-teal), var(--teal-bright));
  color: var(--white);
  padding: 70px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(30px, 4.5vw, 44px);
  margin-bottom: 12px;
}

.page-header .breadcrumb {
  font-size: 14px;
  opacity: 0.9;
}

.page-header .breadcrumb a {
  text-decoration: underline;
}

/* ===== Simple content page ===== */
.content-page {
  max-width: 850px;
  margin: 0 auto;
}

.content-page h2 {
  font-size: 24px;
  margin: 30px 0 14px;
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page p {
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 15.5px;
}

/* ===== Fleet page filter bar ===== */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero .container,
  .about-section .container,
  .contact-section .container {
    grid-template-columns: 1fr;
  }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-strip .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 26px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  }

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

  .nav-cta .btn span { display: none; }
  .nav-cta .btn { padding: 12px; border-radius: 50%; width: 44px; height: 44px; }

  .fleet-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-strip .container { grid-template-columns: 1fr; }
  .about-list { grid-template-columns: 1fr; }
  .about-images { grid-template-columns: 1fr; }
  .about-images img:first-child { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .topbar { padding: 6px 0; }
  .topbar .container { flex-wrap: nowrap; justify-content: space-between; }
  .topbar-links { gap: 10px; }
  .topbar-links a { font-size: 11px; white-space: nowrap; }
  .topbar-links a span.tb-full { display: none; }
  .topbar-links:first-child a:nth-child(2),
  .topbar-links:first-child a:nth-child(3) { display: none; }
  section { padding: 60px 0; }
  .hero { padding: 30px 0 60px; }
  .hero-image img { height: 280px; }
  .hero-badge {
    position: static;
    margin-top: -30px;
    margin-left: 16px;
    width: calc(100% - 32px);
    max-width: 260px;
  }
  .hero::before, .hero::after { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 24px; }
  .vehicle-actions { grid-template-columns: 1fr; }
  .float-btn { width: 50px; height: 50px; font-size: 22px; }
}
