﻿:root {
  --bg: #f5efe6;
  --surface: rgba(255, 250, 244, 0.86);
  --surface-strong: #fffdf9;
  --ink: #1f1a17;
  --muted: #6c625d;
  --line: rgba(94, 74, 62, 0.16);
  --brand: #8f5b3e;
  --brand-deep: #593426;
  --accent: #d7b27c;
  --shadow: 0 24px 80px rgba(48, 29, 21, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 178, 124, 0.28), transparent 32%),
    radial-gradient(circle at right center, rgba(143, 91, 62, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf7f2 0%, #f3ece2 100%);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  background: rgba(32, 22, 17, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.75rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f4d3a2, #8f5b3e);
  color: #2f1b12;
  font-weight: 800;
}

.nav-link {
  color: rgba(255, 245, 235, 0.86) !important;
  font-weight: 500;
}

.nav-link.active,
.nav-link:hover {
  color: #ffffff !important;
}

.rating-pill,
.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.rating-pill {
  background: rgba(255, 209, 130, 0.18);
  color: #ffd78a;
  border: 1px solid rgba(255, 209, 130, 0.24);
}

.pill-link {
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-deep);
  border: 1px solid rgba(89, 52, 38, 0.1);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 15, 11, 0.76), rgba(23, 15, 11, 0.28)),
    url("../images/car1.jpg") center/cover;
  transform: scale(1.03);
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(23, 15, 11, 0.82), rgba(23, 15, 11, 0.4)),
    url("../images/car1.jpg") center 30%/cover;
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 244, 228, 0.14);
  color: #f4d3a2;
  border: 1px solid rgba(255, 244, 228, 0.18);
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.display-hero {
  max-width: 8.5ch;
  margin: 1.2rem 0 1rem;
  color: #fffaf4;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  font-weight: 800;
}

.hero-copy,
.page-hero-copy {
  max-width: 40rem;
  color: rgba(255, 244, 234, 0.86);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-brand,
.btn-outline-brand {
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-brand {
  background: linear-gradient(135deg, #f1c98f, #9a6243);
  color: #1f140f;
  box-shadow: 0 18px 45px rgba(154, 98, 67, 0.28);
}

.btn-outline-brand {
  color: #fff7ef;
  border: 1px solid rgba(255, 244, 234, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.btn-brand:hover,
.btn-outline-brand:hover,
.lift:hover {
  transform: translateY(-2px);
}

.floating-panel {
  margin-top: 2rem;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 247, 0.12);
  border: 1px solid rgba(255, 247, 239, 0.18);
  color: #fff4ea;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.15);
}

.section-pad {
  padding: 5rem 0;
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.glass-card,
.info-card,
.service-card,
.fleet-card,
.testimonial-card,
.contact-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.glass-card,
.info-card,
.service-card,
.testimonial-card,
.contact-card {
  padding: 1.6rem;
}

.stats-grid,
.feature-grid,
.service-grid,
.fleet-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: -2.5rem;
}

.feature-grid,
.service-grid,
.testimonial-grid,
.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.fleet-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.metric {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.soft-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(143, 91, 62, 0.1);
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 700;
}

.feature-icon,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(215, 178, 124, 0.3), rgba(143, 91, 62, 0.18));
  color: var(--brand-deep);
  font-size: 1.3rem;
}

.fleet-card {
  overflow: hidden;
}

.fleet-thumb {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.fleet-body {
  padding: 1.4rem;
}

.fleet-body p,
.service-card p,
.testimonial-card p,
.contact-card p,
.info-card p,
.glass-card p {
  color: var(--muted);
}

.fleet-action,
.link-arrow {
  font-weight: 700;
  color: var(--brand-deep);
  text-decoration: none;
}

.spotlight {
  border-radius: var(--radius-xl);
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(143, 91, 62, 0.92), rgba(42, 28, 21, 0.94)),
    url("../images/car1.jpg") center/cover;
  color: #fff8f2;
  box-shadow: var(--shadow);
}

.spotlight p {
  color: rgba(255, 244, 234, 0.78);
}

.page-hero-title {
  color: #fffaf4;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 800;
}

.category-card {
  position: relative;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 250px;
  color: #fff9f4;
  background: #2a1c15;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.7));
}

.category-card-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem;
  z-index: 1;
}

.category-card:hover,
.gallery-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(48, 29, 21, 0.22);
}

.gallery-shell {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 248, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.gallery-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: 0 16px 40px rgba(48, 29, 21, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-tile img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.gallery-tile button,
.gallery-tile .series-button {
  width: 100%;
  padding: 1.15rem;
  border: 0;
  background: transparent;
  font-weight: 700;
  text-align: left;
  color: var(--ink);
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.footer {
  padding: 2rem 0 3rem;
  color: #f8ede2;
  background:
    linear-gradient(180deg, rgba(29, 19, 15, 0.98), rgba(17, 11, 8, 1));
  margin-top: 4rem;
}

.footer p,
.footer a {
  color: rgba(248, 237, 226, 0.72);
  text-decoration: none;
}

.footer strong,
.footer .footer-brand {
  color: #ffffff;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mini-badge {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hidden {
  display: none !important;
}

@media (max-width: 991.98px) {
  .rating-pill {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 6rem;
  }
}

@media (max-width: 767.98px) {
  .display-hero,
  .page-hero-title {
    max-width: 100%;
  }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

.btn-whatsapp {
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #f6fff9;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 45px rgba(18, 140, 126, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
