/* =========================================
   PODAUTOMOTIVE — style.css
   Fonts: Barlow Condensed (headings) + Inter (body)
   Brand blue: #2557D6
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Variables --- */
:root {
  --blue:       #2557D6;   /* exact logo blue */
  --blue-dark:  #1a3fa8;
  --blue-light: #eef3fd;
  --blue-mid:   #d4e2fb;
  --text:       #0f172a;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --bg-soft:    #f8fafc;
  --white:      #ffffff;
  --dark:       #0f172a;
  --radius:     12px;
  --radius-lg:  24px;
  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Inter', sans-serif;
}

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

.text-blue { color: var(--blue); }

/* Barlow Condensed on all headings */
h1, h2, h3 {
  font-family: var(--font-head);
  letter-spacing: 0.01em;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-header p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  font-family: var(--font-body);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-outline { background: #fff; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-white { background: #fff; color: var(--blue); border-color: transparent; font-weight: 700; }
.btn-white:hover { opacity: 0.9; }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 14px; }

/* --- Image Placeholder --- */
.image-placeholder {
  background: var(--blue-mid);
  border: 2px dashed #93c5fd;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #4080d0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s;
}
#navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
  font-family: var(--font-body);
}
.nav-links a:hover { color: var(--blue); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-body);
}
.nav-phone svg { color: var(--blue); flex-shrink: 0; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
}
.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 0;
  color: var(--text);
}
.mobile-nav-phone svg { color: var(--blue); }
.mobile-nav .btn { margin-top: 12px; justify-content: center; }

/* =========================================
   HERO
   ========================================= */
.hero-section {
  padding: 140px 0 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hero-bg-panel {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: var(--bg-soft);
  transform: skewX(-8deg);
  transform-origin: top right;
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* --- Hero brand banner --- */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 20px;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
}

/* Clip the logo to show only the icon/mark — hides the "POD AUTOMOTIVE" text inside the PNG */
.hero-brand-icon-wrap {
  height: 120px;
  width: 120px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hero-brand-icon {
  height: 210px;   /* taller than wrapper so the bottom text is cropped off */
  width: auto;
  object-fit: contain;
  object-position: top center;
}

.hero-brand-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  line-height: 1;
  gap: 0;
}
.hero-brand-pod {
  font-family: var(--font-head);
  font-size: clamp(64px, 10vw, 130px);
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}
.hero-brand-auto {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
  align-self: flex-end;
  padding-bottom: 8px;
  padding-left: 6px;
}

.hero-divider {
  height: 2px;
  background: var(--border);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.hero-divider::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 80px;
  background: var(--blue);
  border-radius: 2px;
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}
.underline-accent {
  position: relative;
  display: inline-block;
}
.underline-accent::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 5px;
  background: var(--blue-mid);
  border-radius: 3px;
}

.hero-desc {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 500px;
  font-family: var(--font-body);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-body);
}
.hero-trust strong { display: block; font-size: 15px; font-weight: 700; }
.hero-trust span { color: var(--muted); font-size: 13px; }

.trust-icons { display: flex; margin-right: 4px; }
.trust-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  margin-left: -8px;
}
.trust-icon:first-child { margin-left: 0; }
.trust-icon-1 { background: #f1f5f9; color: #64748b; }
.trust-icon-2 { background: var(--blue-mid); color: var(--blue); }
.trust-icon-3 { background: var(--blue); color: #fff; }

.hero-image-wrap { position: relative; }
.hero-image-shadow {
  position: absolute;
  inset: 0;
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  transform: translate(12px, 12px);
  z-index: 0;
}
.hero-img-placeholder { width: 100%; aspect-ratio: 4/3; position: relative; z-index: 1; }
.hero-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative; z-index: 1;
}

.exp-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  z-index: 10;
}
.exp-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}
.exp-badge strong { display: block; font-weight: 700; font-size: 14px; line-height: 1.3; }
.exp-badge span { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

/* =========================================
   SERVICES
   ========================================= */
.services-section { padding: 100px 0; background: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 32px rgba(37,87,214,0.09);
  transform: translateY(-3px);
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  font-family: var(--font-body);
}

/* =========================================
   ABOUT
   ========================================= */
.about-section { padding: 100px 0; background: var(--bg-soft); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-img-tall {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-img-offset { margin-top: 32px; }

.about-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.about-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.about-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-body);
}
.about-list svg { color: var(--blue); flex-shrink: 0; }

/* =========================================
   CONTACT
   ========================================= */
.contact-section {
  padding: 100px 0;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, #cbd5e1 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.contact-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.contact-left > p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
  font-family: var(--font-body);
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-card strong, .contact-card span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  font-family: var(--font-body);
}
.contact-card strong { color: var(--text); font-weight: 600; }
.contact-primary-detail {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}
.contact-email {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.hours-card {
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}
.hours-bg-icon {
  position: absolute;
  top: -20px; right: -20px;
  opacity: 0.08;
  pointer-events: none;
}
.hours-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 18px;
  margin-bottom: 18px;
  font-size: 16px;
  font-family: var(--font-body);
}
.hours-row span:first-child { font-weight: 500; }
.hours-row span:last-child { font-weight: 700; }
.hours-closed { opacity: 0.6; }
.hours-note {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.65;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.hours-cta { display: flex; justify-content: center; width: 100%; }

/* =========================================
   LOCATION
   ========================================= */
.location-section {
  padding: 100px 0;
  background: #fff;
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 4px 24px rgba(37,87,214,0.10);
  border: 1px solid var(--border);
}
.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.location-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.location-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.location-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.location-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  font-family: var(--font-body);
}
.location-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  font-family: var(--font-body);
  transition: opacity 0.2s;
}
.location-link:hover { opacity: 0.75; }
.location-phone {
  color: var(--blue);
  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}
.location-cta { justify-content: center; margin-top: 8px; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1e293b;
}
.footer-logo { display: flex; align-items: center; margin-bottom: 16px; }
.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  max-width: 280px;
  font-family: var(--font-body);
}
.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul, .footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: #64748b;
  transition: color 0.2s;
  font-family: var(--font-body);
}
.footer-links a:hover { color: var(--blue); }
.footer-contact li {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  font-family: var(--font-body);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 13px;
  color: #475569;
  font-family: var(--font-body);
}

/* =========================================
   FADE-IN ON SCROLL
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-bg-panel { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-images { order: 2; max-width: 480px; margin: 0 auto; }
  .about-text { order: 1; }
  .location-inner { grid-template-columns: 1fr; }
  .location-map { min-height: 360px; }
  .location-map iframe { min-height: 360px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-section { padding: 110px 0 80px; }
  .hero-brand-icon-wrap { height: 80px; width: 80px; }
  .hero-brand-icon { height: 140px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .exp-badge { bottom: -16px; left: 12px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
}
