:root {
  --color-ink: #0b0f1a;
  --color-ink-2: #1c2433;
  --color-muted: #6b7280;
  --color-accent: #00b3b0;
  --color-accent-2: #f2b23a;
  --color-surface: #ffffff;
  --color-surface-2: #f6f8fb;
  --color-line: #e6e9ef;
  --shadow-soft: 0 12px 30px rgba(11, 15, 26, 0.08);
  --shadow-strong: 0 24px 60px rgba(11, 15, 26, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", system-ui, -apple-system, sans-serif;
  color: var(--color-ink);
  background: var(--color-surface);
  line-height: 1.6;
  letter-spacing: 0.1px;
}

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

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

.btn-brand {
  background: var(--color-ink);
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: var(--color-ink);
  color: #fff;
}

.btn-outline-brand {
  border: 1px solid var(--color-ink);
  color: var(--color-ink);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-outline-brand:hover {
  background: var(--color-ink);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.navbar {
  padding: 0.5rem 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.home .navbar {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 12px 30px rgba(11, 15, 26, 0.08);
}

.navbar-brand img {
  height: 60px;
}
@media (min-width: 992px) {
  .navbar-brand img {
    height: 86px;
  }
}

.nav-link {
  font-weight: 500;
  color: var(--color-ink-2);
  margin-left: 0.6rem;
}

.hero {
  position: relative;
  padding: 5rem 0 3rem;
  min-height: 290px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 179, 176, 0.12), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(242, 178, 58, 0.12), transparent 55%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 28%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0.04) 78%, rgba(0, 0, 0, 0.02) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-carousel img {
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-carousel .carousel-indicators {
  margin-bottom: 1.5rem;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  background-color: #fff;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-surface-2);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.hero h1 {
  font-size: clamp(2.6rem, 3vw, 3.5rem);
  font-weight: 700;
  margin-top: 1.4rem;
}

.hero p {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 520px;
}

.hero-card {
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-strong);
  padding: 1.5rem;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: clamp(2rem, 2.4vw, 2.5rem);
  font-weight: 600;
}

.badge-soft {
  background: #e9eef4;
  color: var(--color-ink-2);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.85rem;
}

.card-lusso {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-line);
  padding: 1.6rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-lusso-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-lusso-link:hover {
  color: inherit;
}

.card-lusso:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.card-lusso .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--color-surface-2);
  color: var(--color-ink-2);
  font-weight: 700;
}

.fleet-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  height: 100%;
}

.fleet-card img {
  height: 210px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.fleet-card .fleet-body {
  padding: 1.3rem 1.5rem 1.6rem;
}

.fleet-card h5 {
  font-weight: 600;
}

.fleet-meta {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.stat-block {
  background: var(--color-ink);
  color: #fff;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
}

.stat-block h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.section-soft {
  background: var(--color-surface-2);
  padding: 5rem 0;
}

.footer {
  border-top: 1px solid var(--color-line);
  padding: 2.5rem 0;
  background: #fff;
}

.footer small {
  color: var(--color-muted);
}

.footer h6 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer img {
  max-width: 160px;
  width: 100%;
  height: auto;
}

.footer a:not(.btn) {
  color: var(--color-ink);
  text-decoration: none;
}

.footer a:not(.btn):hover {
  color: var(--color-brand);
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

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

.footer-social a[aria-label="Instagram"] {
  color: #e1306c;
}

.footer-social a[aria-label="Facebook"] {
  color: #1877f2;
}

.footer-social a[aria-label="LinkedIn"] {
  color: #0a66c2;
}

.map-section {
  width: 100%;
  height: 420px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(100%) contrast(1.05);
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.vehicle-hero {
  padding: 5rem 0 3rem;
}

.feature-list {
  display: grid;
  gap: 0.7rem;
}

.feature-list span {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.feature-dot {
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-top: 0.45rem;
}


.service-detail {
  padding: 4rem 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
}

.detail-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.detail-card h4 {
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.detail-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--color-ink-2);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-accent);
}

.detail-image {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.detail-note {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: var(--color-surface-2);
}

@media (max-width: 991px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  background: #fff;
  padding: 1.6rem;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--color-ink);
}

@media (max-width: 992px) {
  .hero {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    min-height: 290px;
  }

  .navbar {
    padding: 0.4rem 0;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 290px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-card {
    padding: 1.1rem;
  }
}
