/* ===========================
   NEWSHIFT AUTO SUPPLY
   Theme: Deep Navy / Orange
   =========================== */

:root {
  --primary: #E8600A;
  --primary-dark: #C04E06;
  --navy: #0D1B2A;
  --navy-mid: #1A2E42;
  --navy-light: #243B55;
  --white: #FFFFFF;
  --light-gray: #F4F6F8;
  --mid-gray: #8A9BB0;
  --text-dark: #1A1A2E;
  --border: #2E4060;
}

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy);
  color: var(--mid-gray);
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: var(--primary); text-decoration: none; }
.top-bar span { margin-right: 18px; }

/* ---- HEADER ---- */
header {
  background: var(--navy-mid);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  height: 52px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.logo-tagline {
  font-size: 0.72rem;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
}
nav ul li a {
  color: #CBD5E0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--white);
  background: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}
.btn-quote {
  background: var(--primary);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn-quote:hover { background: var(--primary-dark); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.85) 0%, rgba(232,96,10,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero h1 span { color: var(--primary); }
.hero p {
  font-size: 1.1rem;
  color: #CBD5E0;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--primary);
  padding: 16px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.trust-item .icon { font-size: 1.3rem; }

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-header p {
  color: #5A6A7E;
  max-width: 560px;
  margin: 0 auto;
}
.divider {
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ---- CATEGORIES ---- */
.categories { padding: 80px 0; background: var(--light-gray); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--navy);
  border: 2px solid transparent;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cat-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(232,96,10,0.15);
}
.cat-icon { font-size: 2.5rem; margin-bottom: 12px; }
.cat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.cat-card p { font-size: 0.8rem; color: var(--mid-gray); }

/* ---- FEATURED PRODUCTS ---- */
.products { padding: 80px 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.product-img {
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}
.product-img { position: relative; }
.product-info { padding: 18px; }
.product-brand {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.product-info p { font-size: 0.85rem; color: #5A6A7E; margin-bottom: 14px; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price { font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.price-old { font-size: 0.85rem; color: var(--mid-gray); text-decoration: line-through; margin-left: 6px; }
.btn-add {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-add:hover { background: var(--primary); }

/* ---- BRANDS ---- */
.brands { padding: 60px 0; background: var(--navy); }
.brands .section-header h2 { color: var(--white); }
.brands .section-header p { color: var(--mid-gray); }
.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.brand-item {
  background: var(--navy-light);
  border-radius: 8px;
  padding: 18px 32px;
  color: var(--mid-gray);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.brand-item:hover { border-color: var(--primary); color: var(--white); }

/* ---- WHY US ---- */
.why-us { padding: 80px 0; background: var(--light-gray); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-top: 3px solid var(--primary);
}
.why-icon { font-size: 2.5rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: #5A6A7E; }

/* ---- SHOWROOM ---- */
.showroom { padding: 80px 0; }
.showroom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.showroom-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.showroom-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.showroom-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.showroom-content h2 span { color: var(--primary); }
.showroom-content p { color: #5A6A7E; margin-bottom: 20px; }
.showroom-list { list-style: none; margin-bottom: 28px; }
.showroom-list li {
  padding: 8px 0;
  color: var(--navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #E2E8F0;
}
.showroom-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
  font-size: 1rem;
}

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  color: #8A9BB0;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-name { color: var(--white); font-size: 1.2rem; }
.footer-brand .logo-tagline { color: var(--primary); }
.footer-brand p { margin-top: 14px; font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: #8A9BB0;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.footer-contact-item .icon { color: var(--primary); font-size: 1rem; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--primary); text-decoration: none; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .showroom-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav, .header-cta { display: none; }
  nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-mid); padding: 16px; }
  nav.open ul { flex-direction: column; gap: 4px; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip .container { flex-direction: column; gap: 8px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
