/* ===========================
   K AUTO CARE — STYLESHEET
   Theme: Black, White & Red
   =========================== */

:root {
  --red: #d42b2b;
  --red-dark: #a81f1f;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --gray: #2e2e2e;
  --gray-light: #888888;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --text-light: #cccccc;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 4px;
  --transition: 0.3s ease;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 34px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 34px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}
.section-label.light { color: rgba(255,255,255,0.5); }
.section-label.light::before { background: rgba(255,255,255,0.3); }

.red { color: var(--red); }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo-link { flex-shrink: 0; }
.logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}
nav { flex: 1; }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.btn-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-cta:hover { background: var(--red-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu ul { padding: 16px 24px 24px; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
}
.mobile-menu a:hover, .mobile-call { color: var(--red) !important; }
.mobile-menu.open { display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: zoomOut 12s ease-out forwards;
}
@keyframes zoomOut {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(212,43,43,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 24px 120px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 6px 18px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.6s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ticker */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--red);
  overflow: hidden;
  padding: 10px 0;
  z-index: 3;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.ticker-track .dot { color: rgba(255,255,255,0.5); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== INFO BAR ===== */
.info-bar {
  background: var(--dark2);
  border-bottom: 3px solid var(--red);
}
.info-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 40px;
  flex: 1;
  min-width: 240px;
}
.info-item svg {
  width: 26px; height: 26px;
  color: var(--red);
  flex-shrink: 0;
}
.info-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2px;
}
.info-item span, .info-item a {
  display: block;
  font-size: 0.92rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.info-item a:hover { color: var(--white); }
.info-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.06);
}
.about-years {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  padding: 28px 32px;
  text-align: center;
  line-height: 1.2;
}
.about-years .big-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.about-years span:last-child {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}
.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.feature-icon {
  width: 22px; height: 22px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

/* ===== SERVICES ===== */
.services {
  background: var(--dark2);
  padding: 100px 24px;
}
.services-header {
  max-width: 1280px;
  margin: 0 auto 60px;
  text-align: center;
}
.services-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}
.services-header p {
  color: var(--gray-light);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}
.services-header .section-label {
  justify-content: center;
}
.services-header .section-label::before { display: none; }
.services-header .section-label::after {
  content: '';
  width: 30px; height: 2px;
  background: var(--red);
}

.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.service-card.featured {
  background: var(--dark3);
}
.service-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 16px; right: -28px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 36px;
  transform: rotate(45deg);
  z-index: 2;
}
.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-num {
  position: absolute;
  bottom: 12px; left: 16px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--red);
  color: var(--white);
  padding: 4px 10px;
}
.service-body {
  padding: 28px 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--white);
}
.service-body p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-body ul {
  flex: 1;
  margin-bottom: 20px;
}
.service-body ul li {
  font-size: 0.83rem;
  color: var(--text-light);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-body ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  flex-shrink: 0;
}
.service-link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  transition: color var(--transition);
}
.service-link:hover { color: var(--white); }

/* ===== WHY US ===== */
.why-us {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark3) 50%, #1a0505 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: 'K';
  position: absolute;
  top: -60px; right: -40px;
  font-family: var(--font-head);
  font-size: 400px;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}
.why-us-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-us-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
}
.why-us-text p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 460px;
}
.why-us-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.stat {
  background: rgba(255,255,255,0.04);
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  transition: background var(--transition);
}
.stat:hover { background: rgba(212,43,43,0.1); }
.stat-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ===== CONTACT ===== */
.contact { padding: 100px 24px 0; }
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  padding-bottom: 80px;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px; height: 20px;
  color: var(--white);
}
.contact-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 3px;
}
.contact-item span, .contact-item a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--white); }

/* form */
.contact-form-wrap {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--red);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--dark3); }

.form-success {
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(40,180,80,0.15);
  border: 1px solid rgba(40,180,80,0.4);
  color: #6fcf97;
  font-size: 0.9rem;
  font-weight: 600;
}

/* map */
.map-wrap { max-width: 100%; }
.map-wrap iframe { display: block; filter: invert(90%) hue-rotate(180deg) brightness(0.85); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2);
  border-top: 3px solid var(--red);
  padding: 70px 24px 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-logo { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  color: var(--gray-light);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-links ul li,
.footer-services ul li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-light);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }
.footer-services li {
  font-size: 0.88rem;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-services li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--red);
  flex-shrink: 0;
}
.footer-contact p {
  font-size: 0.88rem;
  color: var(--gray-light);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-contact a {
  color: var(--gray-light);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--red); }
.hours-footer {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4) !important;
  line-height: 1.8 !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .nav-links, .btn-cta { display: none; }
  .hamburger { display: flex; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about-years { right: 16px; bottom: -16px; }
  .about-image img { height: 340px; }
  .why-us-inner { grid-template-columns: 1fr; gap: 50px; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .info-item { padding: 18px 20px; }
  .info-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .why-us-stats { grid-template-columns: 1fr 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
