:root {
  --brand-orange: #f47a0f;
  --brand-orange-dark: #d96200;
  --brand-ink: #2f2a26;
  --bg-top: #fff8f1;
  --bg-bottom: #f6ede6;
  --surface: #fffdfb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  color: var(--brand-ink);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 2rem;
  border-bottom: 14px solid var(--brand-orange);
  background: var(--surface);
  box-shadow: 0 6px 20px rgba(217, 98, 0, 0.08);
  cursor: default;
  user-select: none;
}

.brand-link {
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
}

.brand-logo {
  display: block;
  width: min(360px, 50vw);
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(47, 42, 38, 0.12));
}

.header-nav-contact {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.menu-toggle {
  display: none;
}

.menu-toggle-line {
  display: block;
}

.main-nav {
  margin-left: 0;
  pointer-events: none;
}

.header-quick-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  pointer-events: none;
}

.header-quick-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(244, 122, 15, 0.38);
  background: rgba(244, 122, 15, 0.14);
  color: var(--brand-orange-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  pointer-events: auto;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.header-quick-link:hover {
  transform: translateY(-1px);
  background: rgba(244, 122, 15, 0.24);
  border-color: rgba(244, 122, 15, 0.62);
}

.header-quick-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.header-quick-link-whatsapp {
  border-color: #25d366;
  background: #25d366;
  color: #fff;
}

.header-quick-link-whatsapp:hover {
  background: #1fba57;
  border-color: #1fba57;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: var(--brand-orange-dark);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
  pointer-events: auto;
}

.nav-link:hover {
  background-color: rgba(244, 122, 15, 0.12);
  color: var(--brand-orange-dark);
}

.nav-link.is-active {
  background-color: var(--brand-orange);
  color: #fff;
}

.page-main {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.page-main-contact {
  max-width: none;
  padding: 0 0 2rem;
}

.page-main-home {
  max-width: none;
  padding: 0 0 2rem;
}

.contact-hero {
  width: 100%;
  margin: 0;
}

.contact-hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.about-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
}

.about-cover-wrap {
  margin: 0 0 1.5rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(47, 42, 38, 0.16);
}

.about-cover-image {
  display: block;
  width: 100%;
  height: auto;
}

.about-title {
  margin: 0 0 0.95rem;
  color: var(--brand-orange-dark);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.2;
}

.about-text p {
  margin: 0 0 1rem;
  color: #1f1f1f;
  font-size: 1.05rem;
  line-height: 1.72;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.content-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(244, 122, 15, 0.16);
  border-radius: 16px;
  padding: 1.5rem;
}

.content-card-contact {
  max-width: 1200px;
  margin: 1.5rem auto 0;
}

.contact-map-section {
  max-width: 1240px;
  margin: 2rem auto 2.5rem;
  padding: 0 1.25rem;
}

.contact-top-section {
  max-width: 1240px;
  margin: 1.5rem auto 0;
  padding: 0 1.25rem;
  display: block;
  width: 100%;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(244, 122, 15, 0.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(47, 42, 38, 0.12);
  width: 100%;
}

.contact-info-card-head {
  background: linear-gradient(135deg, var(--brand-orange-dark), var(--brand-orange));
  padding: 0.75rem 1rem;
}

.contact-info-card-head h2 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-info-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem;
}

.contact-info-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #2f2a26;
  text-decoration: none;
  line-height: 1.4;
}

.contact-info-link:hover {
  text-decoration: underline;
}

.contact-info-icon {
  color: var(--brand-orange);
  font-size: 1rem;
  line-height: 1.1;
  margin-top: 0.08rem;
  flex-shrink: 0;
}

.contact-info-address {
  margin-top: 0.15rem;
}

.contact-info-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.contact-info-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(244, 122, 15, 0.45);
  background: rgba(244, 122, 15, 0.1);
  color: var(--brand-orange-dark);
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.contact-info-social-link:hover {
  transform: translateY(-1px);
  background: rgba(244, 122, 15, 0.2);
  border-color: rgba(244, 122, 15, 0.7);
}

.contact-info-social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.contact-info-social-link-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.contact-info-social-link-whatsapp:hover {
  background: #1fba57;
  border-color: #1fba57;
}

.contact-map-title {
  margin: 0 0 0.8rem;
  color: var(--brand-orange-dark);
}

.contact-map-frame-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(244, 122, 15, 0.24);
  box-shadow: 0 14px 32px rgba(47, 42, 38, 0.16);
  background: #d7dbe0;
}

.contact-map-frame {
  display: block;
  width: 100%;
  height: min(62vh, 520px);
  border: 0;
}

.content-card h1 {
  margin: 0 0 0.5rem;
  color: var(--brand-orange-dark);
}

.content-card p {
  margin: 0;
}

.site-footer {
  position: relative;
  margin-top: auto;
  width: 100%;
  min-height: 220px;
  background: #434a51;
  cursor: default;
  user-select: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.8rem;
  align-items: start;
  padding: 1.1rem 5rem 1.2rem 1.5rem;
  min-height: 220px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-divider {
  width: calc(100% - 1rem);
  margin: 0.9rem 0 0.8rem;
  border-bottom: 3px solid rgba(255, 255, 255, 0.8);
}

.footer-logo {
  display: block;
  width: min(280px, 25vw);
  max-width: 25%;
  height: auto;
}

.footer-social {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-social-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.footer-social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.68);
}

.footer-social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.sahibinden-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #ffd400;
  color: #1f1f1f;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
}

.footer-right {
  color: #fff;
  padding-top: 0.25rem;
}

.footer-contact-title {
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li + li {
  margin-top: 0.5rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  font-size: 0.95rem;
  text-decoration: none;
  user-select: text !important;
  -webkit-user-select: text !important;
  cursor: text;
}

.footer-contact-link:hover {
  text-decoration: underline;
}

.footer-contact-icon {
  color: var(--brand-orange);
  font-size: 1rem;
  line-height: 1;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.9rem;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 360px;
  text-decoration: none;
  user-select: text !important;
  -webkit-user-select: text !important;
  cursor: text;
}

.footer-contact-link span,
.footer-address span {
  user-select: text !important;
  -webkit-user-select: text !important;
}

.footer-contact-link span:last-child,
.footer-address span:last-child {
  cursor: text;
}

.footer-address:hover {
  text-decoration: underline;
}

.footer-address-icon {
  color: var(--brand-orange);
  font-size: 1.02rem;
  line-height: 1;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.back-to-top {
  position: absolute;
  top: 16px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(217, 98, 0, 0.35);
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.back-to-top:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .site-header {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.9rem 1rem;
  }

  .main-nav {
    width: 100%;
    margin-left: 0;
  }

  .nav-list {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .brand-logo {
    width: min(320px, 80vw);
  }

  .page-main {
    padding: 1rem;
  }

  .page-main-contact {
    padding: 0 0 1rem;
  }

  .about-section {
    padding: 0 0.8rem 1.3rem;
  }

  .about-cover-wrap {
    margin-bottom: 1rem;
    border-radius: 14px;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .contact-hero-image {
    max-height: 260px;
  }

  .content-card-contact {
    margin-top: 1rem;
  }

  .contact-map-section {
    margin: 1rem auto 1.5rem;
    padding: 0 0.8rem;
  }

  .contact-top-section {
    margin-top: 1rem;
    padding: 0 0.8rem;
  }

  .contact-map-frame {
    height: min(52vh, 360px);
  }

  .site-footer,
  .footer-inner {
    min-height: 170px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 0.9rem;
  }

  .footer-divider {
    width: 100%;
  }

  .footer-logo {
    width: min(220px, 55vw);
    max-width: 55%;
  }

  .footer-social {
    flex-wrap: wrap;
    gap: 0.6rem 0.75rem;
  }

  .footer-social-title {
    font-size: 0.9rem;
  }

  .footer-right {
    padding-top: 0;
  }

  .footer-contact-title,
  .footer-contact-link {
    font-size: 0.9rem;
  }

  .footer-address {
    font-size: 0.88rem;
  }

  .back-to-top {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
}

@media (max-width: 1024px) {
  .site-header {
    position: sticky;
    top: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 0.9rem;
    overflow: visible;
  }

  .brand-logo {
    width: min(300px, 68vw);
  }

  .header-nav-contact {
    order: 3;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
  }

  .header-quick-actions {
    justify-content: flex-end;
  }

  .header-quick-link {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    margin-left: auto;
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 2px solid var(--brand-orange);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    padding: 0;
  }

  .menu-toggle-line {
    width: 22px;
    height: 2px;
    background: var(--brand-orange);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle.is-open .menu-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open .menu-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open .menu-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
    margin-left: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    background: #efefef;
    border-top: 1px solid rgba(47, 42, 38, 0.1);
    box-shadow: 0 8px 18px rgba(47, 42, 38, 0.14);
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    max-height: 360px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-list {
    display: grid;
    justify-content: stretch;
    gap: 0.55rem;
    margin: 0;
    padding: 0.7rem 0.8rem 0.85rem;
  }

  .nav-link {
    width: 100%;
    display: block;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #383838;
    font-size: 1.02rem;
    font-weight: 600;
    padding: 0.85rem 0.9rem;
  }

  .nav-link:hover {
    background: #fff3e8;
    color: var(--brand-orange-dark);
  }

  .nav-link.is-active {
    background: rgba(244, 122, 15, 0.18);
    color: var(--brand-orange-dark);
    border-color: rgba(244, 122, 15, 0.4);
  }

  .site-footer,
  .footer-inner {
    min-height: 170px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 0.9rem 0.8rem 1rem;
  }

  .footer-left {
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    width: min(210px, 68vw);
    max-width: none;
    margin: 0 auto;
  }

  .footer-divider {
    width: 92%;
    margin: 0.75rem auto 0.75rem;
    border-bottom-width: 2px;
  }

  .footer-social {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-right {
    width: 100%;
    position: relative;
    padding-top: 0.95rem;
    padding-left: 4%;
    padding-right: 4%;
    text-align: left;
  }

  .footer-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 92%;
    transform: translateX(-50%);
    border-top: 2px solid rgba(255, 255, 255, 0.8);
  }

  .footer-contact-title {
    margin-bottom: 0.55rem;
    text-align: left;
  }

  .footer-contact-link {
    font-size: 0.92rem;
  }

  .footer-address {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    max-width: none;
  }

  .contact-top-section {
    padding: 0 0.8rem;
  }
}

/* Home page */
.home-reservation-section {
  margin-bottom: 1.4rem;
  width: 100%;
}

.home-hero {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 460px;
  border: 0;
  box-shadow: none;
  width: 100%;
}

.home-hero-image {
  display: block;
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.42) 0%, rgba(13, 13, 13, 0.08) 48%, rgba(13, 13, 13, 0) 76%);
  pointer-events: none;
}

.home-reservation-card {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  width: min(420px, calc(100% - 3rem));
  border-radius: 16px;
  border: 1px solid rgba(244, 122, 15, 0.34);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  padding: 1rem;
}

.home-reservation-card h1 {
  margin: 0;
  color: var(--brand-orange-dark);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
}

.home-reservation-card p {
  margin: 0.45rem 0 0.9rem;
  color: #2f2a26;
}

.home-reservation-form {
  display: grid;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
}

.home-reservation-form > * {
  min-width: 0;
  max-width: 100%;
}

.home-reservation-form .form-input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.home-reservation-form input[type="date"],
.home-reservation-form .flatpickr-input {
  width: 100%;
  max-width: 100%;
  min-width: 1px;
  display: block;
}

.flatpickr-calendar {
  z-index: 2200;
}

.home-reservation-form .form-submit {
  margin-top: 0.55rem;
}

.home-reservation-error {
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.home-available-section {
  margin-top: 1.2rem;
  max-width: 1200px;
  padding: 0 1rem;
  margin-left: auto;
  margin-right: auto;
}

.home-available-title {
  margin: 0;
  color: var(--brand-orange-dark);
}

.home-available-section,
.home-available-section .fleet-grid,
.home-available-section .vehicle-card,
.home-available-section .vehicle-card * {
  cursor: default !important;
  user-select: none;
  -webkit-user-select: none;
}

.home-available-section .vehicle-image {
  -webkit-user-drag: none;
}

.home-available-section .home-appointment-btn {
  pointer-events: auto;
  cursor: pointer !important;
}

.home-fleet-highlight-section {
  width: 100%;
  margin: 1.45rem auto 0;
  padding: 0;
}

.home-fleet-highlight-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.home-fleet-highlight-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f2f2f2;
}

.home-fleet-highlight-content {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 4.8vw, 3rem);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: calc(100% - 2rem);
  padding: 0;
}

.home-fleet-highlight-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 36px;
  padding: 0.58rem 0.78rem;
  border: 1px solid var(--brand-orange);
  border-radius: 6px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.home-fleet-highlight-btn:hover {
  transform: translateY(-1px);
  background: var(--brand-orange-dark);
  border-color: var(--brand-orange-dark);
}

/* Fleet pages */
.fleet-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.public-fleet-section,
.public-fleet-section * {
  cursor: default !important;
}

.public-fleet-section {
  user-select: none;
  -webkit-user-select: none;
}

.fleet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.fleet-header h1 {
  margin: 0;
  color: var(--brand-orange-dark);
}

.fleet-header p {
  margin: 0.35rem 0 0;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.vehicle-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(244, 122, 15, 0.26);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(47, 42, 38, 0.12);
  min-height: 440px;
  display: flex;
  flex-direction: column;
}

.vehicle-image {
  display: block;
  width: 100%;
  height: 235px;
  object-fit: cover;
  background: #ececec;
}

.vehicle-body {
  padding: 1.05rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vehicle-body h2 {
  margin: 0;
  font-size: 1.14rem;
  color: var(--brand-orange-dark);
}

.vehicle-spec-list {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
  font-size: 0.95rem;
}

.vehicle-card-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.65rem;
}

.home-appointment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.48rem 0.88rem;
  border-radius: 10px;
  border: 1px solid var(--brand-orange);
  background: var(--brand-orange);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  position: relative;
  top: 6px;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.home-appointment-btn:hover {
  transform: translateY(-1px);
  background: var(--brand-orange-dark);
  border-color: var(--brand-orange-dark);
}

.vehicle-price {
  margin: 0;
  font-weight: 800;
  color: #1f1f1f;
  text-align: right;
}

/* Admin pages */
.admin-login-wrap {
  max-width: 520px;
  margin: 1.2rem auto;
}

.admin-login-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(244, 122, 15, 0.26);
  border-radius: 16px;
  padding: 1.2rem;
}

.admin-login-card h1 {
  margin: 0;
  color: var(--brand-orange-dark);
}

.admin-login-card p {
  margin: 0.45rem 0 0.9rem;
}

.admin-form {
  display: grid;
  gap: 0.55rem;
}

.form-label {
  font-size: 0.93rem;
  font-weight: 700;
}

.form-input {
  width: 100%;
  border: 1px solid rgba(47, 42, 38, 0.2);
  border-radius: 10px;
  padding: 0.68rem 0.72rem;
  font-size: 0.96rem;
  background: #fff;
}

.form-input:focus {
  outline: 2px solid rgba(244, 122, 15, 0.4);
  border-color: rgba(244, 122, 15, 0.55);
}

.form-submit {
  margin-top: 0.35rem;
  border: 0;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-size: 0.96rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange-dark), var(--brand-orange));
  cursor: pointer;
}

.form-submit:hover {
  filter: brightness(1.04);
}

.form-error {
  margin: 0 0 0.85rem;
  border: 1px solid rgba(166, 35, 35, 0.4);
  border-radius: 10px;
  background: rgba(191, 54, 54, 0.12);
  color: #7b1313;
  padding: 0.6rem 0.7rem;
  font-size: 0.93rem;
}

.fleet-header-admin {
  align-items: center;
}

.admin-fleet-section,
.admin-fleet-section * {
  cursor: default;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.admin-add-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--brand-orange);
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(217, 98, 0, 0.33);
  cursor: pointer;
}

.admin-add-btn:hover {
  background: var(--brand-orange-dark);
}

.admin-logout-btn {
  border: 1px solid rgba(47, 42, 38, 0.22);
  border-radius: 10px;
  background: #fff;
  color: #2f2a26;
  -webkit-text-fill-color: #2f2a26;
  white-space: nowrap;
  padding: 0.6rem 0.8rem;
  font-size: 0.92rem;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
}

.admin-fleet-section .vehicle-card {
  position: relative;
}

.admin-fleet-section .vehicle-card.admin-reservation-card {
  cursor: pointer;
}

.admin-fleet-section .vehicle-card.admin-reservation-card .vehicle-image,
.admin-fleet-section .vehicle-card.admin-reservation-card .vehicle-body,
.admin-fleet-section .vehicle-card.admin-reservation-card .vehicle-body * {
  cursor: pointer;
}

.admin-edit-btn {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 0 0 2px #fff, 0 6px 16px rgba(217, 98, 0, 0.4);
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.admin-edit-btn:hover {
  background: var(--brand-orange-dark);
  transform: scale(1.05);
}

.admin-edit-btn:active {
  transform: scale(0.98);
}

.admin-delete-form {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 3;
}

.admin-delete-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 0 0 2px #fff, 0 6px 16px rgba(217, 98, 0, 0.4);
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.admin-delete-btn:hover {
  background: var(--brand-orange-dark);
  transform: scale(1.05);
}

.admin-delete-btn:active {
  transform: scale(0.98);
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.admin-modal.is-open {
  display: flex;
}

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 22, 0.45);
}

.admin-modal-card {
  position: relative;
  width: min(560px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(244, 122, 15, 0.28);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
  padding: 1rem;
}

.admin-modal-card h2 {
  margin: 0 0 0.7rem;
  color: var(--brand-orange-dark);
}

.admin-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  border: 0;
  background: transparent;
  color: #434a51;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.admin-modal .form-input {
  cursor: text;
}

.admin-modal input[type="file"] {
  cursor: pointer;
}

.admin-secondary-btn {
  border: 1px solid rgba(47, 42, 38, 0.24);
  border-radius: 10px;
  background: #fff;
  color: #2f2a26;
  padding: 0.58rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.admin-secondary-btn:hover {
  background: rgba(47, 42, 38, 0.05);
}

.admin-danger-btn {
  border: 1px solid rgba(166, 35, 35, 0.4);
  border-radius: 10px;
  background: #fff5f5;
  color: #8f1f1f;
  padding: 0.58rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.admin-danger-btn:hover {
  background: #ffe6e6;
}

.reservation-modal-card {
  width: min(860px, 100%);
}

.reservation-modal-subtitle {
  margin: -0.25rem 0 0.8rem;
  color: #4e4b47;
  font-size: 0.95rem;
}

.reservation-modal-error {
  margin-bottom: 0.9rem;
}

.reservation-list {
  display: grid;
  gap: 0.75rem;
  max-height: 54vh;
  overflow: auto;
  padding-right: 0.2rem;
}

.reservation-empty {
  margin: 0;
  padding: 0.75rem 0.8rem;
  border: 1px dashed rgba(47, 42, 38, 0.22);
  border-radius: 10px;
  background: #fbfbfb;
}

.reservation-row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-end;
  justify-content: space-between;
  border: 1px solid rgba(244, 122, 15, 0.24);
  border-radius: 12px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
}

.reservation-row-fields {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 0.6rem;
}

.reservation-field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.reservation-field-name {
  min-width: 180px;
}

.reservation-row-actions {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}

.reservation-input:disabled {
  background: #f6f6f6;
  color: #666;
}

.reservation-modal-actions {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.reservation-add-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.reservation-add-btn:hover {
  background: var(--brand-orange-dark);
}

.reservation-modal-actions-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.reservation-save-btn {
  margin-top: 0;
}

body.admin-view .brand-link,
body.admin-view .nav-link,
body.admin-view .header-quick-link,
body.admin-view .back-to-top,
body.admin-view .footer-social-link,
body.admin-view .footer-contact-link,
body.admin-view .footer-address {
  pointer-events: none;
  cursor: default;
}

@media (max-width: 1100px) {
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .fleet-header,
  .fleet-header-admin {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-header-actions {
    justify-content: space-between;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-image {
    height: 188px;
  }

  .vehicle-card {
    min-height: 0;
  }

  .vehicle-body {
    flex: initial;
  }

  .home-hero {
    min-height: 400px;
  }

  .home-hero-image {
    min-height: 400px;
  }

  .home-reservation-card {
    width: calc(100% - 2rem);
    left: 1rem;
    top: 1rem;
    padding: 0.9rem;
    max-width: calc(100% - 2rem);
  }

  .home-reservation-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .home-reservation-form,
  .home-reservation-form .form-label,
  .home-reservation-form .form-input,
  .home-reservation-form .form-submit {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  .home-reservation-form input[type="date"],
  .home-reservation-form .flatpickr-input {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 1px !important;
    display: block;
    inline-size: 100% !important;
    max-inline-size: 100% !important;
    min-inline-size: 0 !important;
    font-size: 16px;
  }

  .home-reservation-form .form-submit {
    display: block;
    align-self: stretch;
  }

  .home-fleet-highlight-content {
    bottom: clamp(0.75rem, 4vw, 1.4rem);
  }

  .home-fleet-highlight-btn {
    min-height: 34px;
    padding: 0.5rem 0.68rem;
    font-size: 0.78rem;
  }

  .reservation-row {
    flex-direction: column;
    align-items: stretch;
  }

  .reservation-row-fields {
    grid-template-columns: 1fr;
  }

  .reservation-row-actions {
    justify-content: flex-end;
  }
}
