* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
  background: #f3f4f6;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */

header {
  background: rgba(15, 23, 42, 0.96);
  color: #fff;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 4px 0;
  color: #e5e7eb;
}

.nav-links a:hover {
  color: #facc15;
}

/* Hero with background image */

.hero {
  position: relative;
  color: #fff;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 70px 0 60px;
  overflow: hidden;
}

/* BACKGROUND IMAGE – change URL if needed */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/hero-car.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.45);
  transform: scale(1.02);
}

/* Dark gradient overlay for readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.55),
    rgba(15, 23, 42, 0.35)
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 640px;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: #e5e7eb;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  font-size: 0.78rem;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.55);
}

.hero-text p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.btn {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.16s ease-out;
}

.btn-primary {
  background: #facc15;
  color: #111827;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.btn-primary:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid #e5e7eb;
  color: #e5e7eb;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.5);
}

.hero-contact {
  font-size: 0.86rem;
  opacity: 0.9;
}

/* Sections */

section {
  padding: 46px 0;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #111827;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 20px;
}

/* Services grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #111827;
}

.card p {
  font-size: 0.92rem;
  color: #4b5563;
}

/* Two-column sections */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: flex-start;
}

.highlight-box {
  background: #ffffff;
  padding: 18px 18px 16px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
  border: 1px solid rgba(148, 163, 184, 0.28);
  font-size: 0.93rem;
}

/* Lists */

ul {
  margin-left: 18px;
  margin-bottom: 10px;
}

li {
  margin-bottom: 4px;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.gallery-item {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(15,23,42,0.07);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.gallery-caption {
  padding: 10px 12px 12px;
  font-size: 0.9rem;
  color: #374151;
}

/* Forms */

form {
  background: #ffffff;
  padding: 20px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.07);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.form-row {
  margin-bottom: 12px;
}

label {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 4px;
  color: #374151;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 8px 9px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  background: #f9fafb;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #3b82f6;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(59,130,246,0.3);
}

textarea {
  min-height: 90px;
  resize: vertical;
}

small {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Footer */

footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-inner a {
  color: #facc15;
}

/* Responsive */

@media (max-width: 768px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}
