/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow: #F5C518;
  --yellow-dark: #d4a900;
  --black: #111111;
  --dark: #1a1a1a;
  --dark2: #242424;
  --gray: #555555;
  --light-gray: #aaaaaa;
  --white: #ffffff;
  --nav-height: 70px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

ul {
  list-style: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--black);
  border-bottom: 2px solid var(--yellow);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 1px;
}

.nav-logo .logo-sub {
  font-size: 0.7rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-top: -4px;
}

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

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-links > li > button {
  display: block;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li > a.active {
  color: var(--yellow);
  background-color: rgba(245, 197, 24, 0.08);
}

/* Dropdown */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle::after {
  content: '▾';
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.nav-links > li:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background-color: var(--dark2);
  border: 1px solid var(--yellow);
  border-radius: 6px;
  min-width: 210px;
  padding: 6px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--white);
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover {
  background-color: rgba(245, 197, 24, 0.12);
  color: var(--yellow);
}

.nav-links > li:hover .dropdown-menu,
.nav-links > li.open .dropdown-menu {
  display: block;
}

.nav-cta {
  background-color: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  border-radius: 4px;
  padding: 8px 18px !important;
}

.nav-cta:hover {
  background-color: var(--yellow-dark) !important;
  color: var(--black) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black);
  z-index: 999;
  overflow-y: auto;
  padding: 16px 0 32px;
}

.mobile-menu.open { display: block; }

.mobile-menu a,
.mobile-menu .mobile-section-label {
  display: block;
  padding: 14px 28px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
}

.mobile-menu .mobile-section-label {
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-top: 20px;
}

.mobile-menu a:hover { background: rgba(245,197,24,0.08); }

.mobile-menu a.active {
  color: var(--yellow);
  background: rgba(245,197,24,0.1);
  font-weight: 600;
}

.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 28px;
  padding-top: 20px;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
}
.mobile-services-toggle:hover { background: rgba(245,197,24,0.05); }

.mobile-arrow {
  display: inline-block;
  font-size: 0.65rem;
  transition: transform 0.28s ease;
}
.mobile-services-toggle.open .mobile-arrow { transform: rotate(180deg); }

.mobile-services-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-services-drawer.open { max-height: 400px; }

.mobile-services-drawer a {
  padding-left: 44px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.mobile-services-drawer a.active { color: var(--yellow); }

.mobile-menu .mobile-cta {
  margin: 20px 28px 0;
  display: block;
  text-align: center;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  padding: 14px;
  border-radius: 6px;
  font-size: 1rem;
  border-bottom: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a0a 50%, #0a0a0a 100%);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(245,197,24,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(245,197,24,0.05) 0%, transparent 50%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  max-width: 680px;
  margin-left: calc((100vw - 1200px) / 2);
  padding-left: 24px;
}

@media (max-width: 1248px) {
  .hero-content { margin-left: 0; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  font-size: 1.1rem;
  color: var(--light-gray);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.phone-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.phone-label {
  font-size: 0.78rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}

.phone-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yellow);
}

/* ===== SECTION BASE ===== */
.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span { color: var(--yellow); }

.section-desc {
  font-size: 1.05rem;
  color: var(--light-gray);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background-color: var(--dark);
}

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

.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(245,197,24,0.3);
  transform: translateY(-4px);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.service-card-body {
  padding: 24px;
}

.service-card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.15s;
}

.service-card-link:hover { gap: 10px; }

/* ===== WHY US ===== */
.why-section {
  background: var(--black);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--dark);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.2s;
}

.why-card:hover { border-color: rgba(245,197,24,0.2); }

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.88rem;
  color: var(--light-gray);
  line-height: 1.6;
}

/* ===== VEHICLE SECTION ===== */
.vehicle-section {
  background: var(--dark);
}

.vehicle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vehicle-img {
  border-radius: 10px;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.service-page-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 360px;
  display: block;
}

.vehicle-img-placeholder {
  width: 100%;
  height: 340px;
  background: linear-gradient(135deg, #2a2a1a, #1a1a0a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.spec-item {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.spec-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--yellow);
  display: block;
  margin-bottom: 4px;
}

.spec-label {
  font-size: 0.78rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, #1a1600 0%, #0a0a00 50%, #1a1600 100%);
  border-top: 1px solid rgba(245,197,24,0.15);
  border-bottom: 1px solid rgba(245,197,24,0.15);
  padding: 72px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--light-gray);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== GALLERY PAGE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark2);
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

/* ===== GALLERY SLIDER ===== */
.gallery-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--dark2);
  user-select: none;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slide {
  min-width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: zoom-in;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: rgba(0, 0, 0, 0.85); }
.slider-prev { left: 14px; }
.slider-next { right: 14px; }

.slider-counter {
  position: absolute;
  bottom: 14px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 18px 0 0;
  flex-wrap: wrap;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.slider-dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}

.gallery-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--gray);
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 36px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.contact-info-value a {
  color: var(--yellow);
  transition: opacity 0.15s;
}

.contact-info-value a:hover { opacity: 0.8; }

/* Form */
.contact-form {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 36px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light-gray);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group label span {
  color: var(--yellow);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--white);
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--yellow-dark); }

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

/* ===== SERVICES ALL PAGE ===== */
.services-all-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.service-full-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.service-full-card:hover {
  border-color: rgba(245,197,24,0.3);
  transform: translateY(-4px);
}

.service-full-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-full-card-img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #2a2a1a, #1a1a0a);
}

.service-full-card-body {
  padding: 28px;
}

.service-full-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-full-card-desc {
  font-size: 0.92rem;
  color: var(--light-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-full-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.25);
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--yellow);
  transition: background 0.15s;
}

.service-full-card-link:hover {
  background: rgba(245,197,24,0.2);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a0a 100%);
  border-bottom: 1px solid rgba(245,197,24,0.15);
  padding: 64px 24px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-header h1 span { color: var(--yellow); }

.page-header p {
  font-size: 1.05rem;
  color: var(--light-gray);
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--gray);
}

.breadcrumb a { color: var(--light-gray); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--yellow); }

/* ===== ABOUT PAGE ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

.about-img-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #2a2a1a, #1a1a0a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.about-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--light-gray);
}

.about-list li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== FOOTER ===== */
footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(245,197,24,0.15);
  padding: 56px 24px 24px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--light-gray);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--light-gray);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--yellow); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--light-gray);
}

.footer-contact-item span:first-child {
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--gray);
  transition: color 0.15s;
}

.footer-bottom-links a:hover { color: var(--yellow); }

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-top: 16px;
}

.form-success.show { display: block; }
.form-success p { color: var(--white); font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .vehicle-inner { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 48px 24px; }
  .section { padding: 56px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .vehicle-specs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── Live Chat Widget ─────────────────────────────────────────────────────── */
/* Hide entire page behind chat on mobile — chat becomes its own screen */
body.kwt-open > *:not(.kwt-chat) { display: none !important; }

.kwt-chat { position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  font-family: inherit; }
.kwt-chat * { box-sizing: border-box; }
.kwt-toggle { position: relative; width: 60px; height: 60px; border-radius: 50%;
  background: var(--yellow); color: var(--black); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35); transition: transform 0.2s ease; }
.kwt-toggle:hover { transform: scale(1.06); }
.kwt-badge { position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px;
  padding: 0 5px; border-radius: 10px; background: #e53935; color: #fff;
  font-size: 0.72rem; font-weight: 700; display: none; align-items: center;
  justify-content: center; line-height: 20px; text-align: center; }
.kwt-badge.visible { display: inline-flex; animation: kwtPop 0.3s ease; }
@keyframes kwtPop { 0% { transform: scale(0); } 70% { transform: scale(1.3); } 100% { transform: scale(1); } }

.kwt-chat-window { position: absolute; bottom: 76px; right: 0; width: 340px;
  max-width: calc(100vw - 48px); height: 460px; max-height: calc(100vh - 130px);
  background: var(--dark); border: 1px solid var(--yellow);
  border-radius: 14px; overflow: hidden; flex-direction: column;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5); display: none; }
.kwt-chat-window.open { display: flex; animation: kwtSlide 0.22s ease; }
@keyframes kwtSlide { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes kwtSlideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }

.kwt-chat-header { background: var(--yellow); color: var(--black);
  padding: 12px 14px; display: flex; align-items: center; gap: 8px; }
.kwt-chat-header-info { flex: 1; text-align: center; }
.kwt-chat-header-spacer { width: 34px; flex-shrink: 0; }
.kwt-chat-title { font-weight: 800; font-size: 0.98rem; }
.kwt-chat-sub { font-size: 0.74rem; opacity: 0.8; margin-top: 2px; }
.kwt-chat-close { background: none; border: none; color: inherit; cursor: pointer;
  padding: 4px; display: flex; align-items: center; justify-content: center;
  border-radius: 6px; flex-shrink: 0; opacity: 0.85; transition: opacity 0.15s; }
.kwt-chat-close:hover { opacity: 1; }

.kwt-prechat { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.kwt-prechat-intro { font-size: 0.85rem; color: #bbb; margin: 0 0 2px; }
.kwt-field { width: 100%; padding: 10px 12px; border-radius: 8px;
  border: 1px solid #3a3a3a; background: var(--dark2); color: var(--white);
  font-size: 0.9rem; box-sizing: border-box; }
.kwt-field:focus { outline: none; border-color: var(--yellow); }
.kwt-start-btn, .kwt-send { background: var(--yellow); color: var(--black);
  border: none; cursor: pointer; font-weight: 700; }
.kwt-start-btn { padding: 11px; border-radius: 8px; font-size: 0.85rem; letter-spacing: 0.5px; }
.kwt-start-btn:hover { background: var(--yellow-dark); }
.kwt-start-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.kwt-err { color: #ff6b6b; font-size: 0.76rem; min-height: 12px; }

.kwt-body { flex: 1; display: none; flex-direction: column; min-height: 0; }
.kwt-messages { flex: 1; overflow-y: auto; overflow-x: hidden; padding: 14px; display: flex;
  flex-direction: column; gap: 8px; min-height: 0; }
.kwt-msg { max-width: 80%; padding: 9px 12px; border-radius: 12px;
  font-size: 0.88rem; line-height: 1.4; word-break: break-word; overflow-wrap: break-word;
  white-space: pre-wrap; min-width: 0; }
.kwt-msg.visitor { align-self: flex-end; background: var(--yellow); color: var(--black);
  border-bottom-right-radius: 4px; }
.kwt-msg.agent { align-self: flex-start; background: var(--dark2); color: var(--white);
  border-bottom-left-radius: 4px; }
.kwt-composer { display: flex; gap: 8px; padding: 10px; border-top: 1px solid #2c2c2c; }
.kwt-text { flex: 1; min-width: 0; width: 0; resize: none; padding: 9px 11px;
  border-radius: 8px; border: 1px solid #3a3a3a; background: var(--dark2);
  color: var(--white); font-size: 0.88rem; font-family: inherit; max-height: 90px; }
.kwt-text:focus { outline: none; border-color: var(--yellow); }
.kwt-send { width: 42px; border-radius: 8px; font-size: 1rem; flex-shrink: 0; }
.kwt-send:hover { background: var(--yellow-dark); }

.kwt-toast { position: absolute; bottom: 76px; right: 0; width: 280px;
  background: var(--dark); border: 1px solid var(--yellow); border-radius: 10px;
  padding: 12px 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.45); cursor: pointer;
  opacity: 0; transform: translateY(10px); pointer-events: none; transition: all 0.25s ease; }
.kwt-toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.kwt-toast-label { font-size: 0.72rem; font-weight: 700; color: var(--yellow); margin-bottom: 3px; }
.kwt-toast-text { font-size: 0.84rem; color: var(--white); }

@media (max-width: 480px) {
  .kwt-chat { bottom: 16px; right: 16px; }
  .kwt-chat-window {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    max-width: 100%; max-height: 100%;
    border-radius: 0; border: none;
    overscroll-behavior: none;
  }
  .kwt-chat-window.open { animation: kwtSlideInRight 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .kwt-chat-window.open ~ .kwt-toggle { display: none; }
  .kwt-chat-header {
    padding-top: calc(14px + env(safe-area-inset-top));
  }
  .kwt-composer {
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
  /* Prevent iOS auto-zoom — Safari zooms any input with font-size < 16px */
  .kwt-field, .kwt-text { font-size: 16px; }
}
