/* Garcia's Wheels and Tires - Troutman NC */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #1d1d1d;
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #0088e3; text-decoration: none; transition: color .2s; }
a:hover { color: #005fa3; }
h1, h2, h3, h4, h5 { font-family: 'Lato', sans-serif; font-weight: 900; line-height: 1.2; color: #111; }
h1 { font-size: 2.6rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; color: #0088e3; }
h3 { font-size: 1.4rem; margin-bottom: .75rem; }
h4 { font-size: 1.15rem; margin-bottom: .5rem; }
p { margin-bottom: 1rem; }
ul { margin: 0 0 1rem 1.5rem; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header { background: #fff; border-bottom: 3px solid #0088e3; }
.topbar { background: #fff; padding: 18px 0; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.logo { font-weight: 900; font-size: 1.4rem; color: #0088e3; letter-spacing: -.5px; display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 44px; height: 44px; background: #0088e3; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-size: 1.2rem;
}
.logo-text { line-height: 1.1; }
.logo-text small { display: block; font-weight: 400; font-size: .7rem; color: #555; font-style: italic; }
.contact-info { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: .95rem; }
.contact-info .address { font-style: italic; text-transform: uppercase; color: #444; font-size: .85rem; }
.contact-info .phone { font-weight: 700; color: #111; font-size: 1.1rem; }
.btn {
  display: inline-block; padding: 10px 22px; border-radius: 3px;
  font-weight: 700; text-transform: uppercase; font-size: .85rem;
  letter-spacing: .5px; border: none; cursor: pointer; transition: all .2s;
}
.btn-primary { background: #0088e3; color: #fff; }
.btn-primary:hover { background: #005fa3; color: #fff; }
.btn-secondary { background: #000; color: #fff; }
.btn-secondary:hover { background: #333; color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: #0088e3; }

/* NAV */
.main-nav { background: #0088e3; }
.main-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; justify-content: center; flex-wrap: wrap;
}
.main-nav li a {
  display: block; padding: 16px 24px; color: #fff;
  font-weight: 700; text-transform: uppercase; font-size: .9rem;
  letter-spacing: .5px;
}
.main-nav li a:hover, .main-nav li a.active { background: #005fa3; color: #fff; }

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), url('../images/hero-tires.jpg') center/cover no-repeat;
  color: #fff; text-align: center; padding: 110px 20px;
}
.hero h5 { color: #fff; font-size: 1rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; font-weight: 400; }
.hero h1 { color: #fff; font-size: 3.2rem; margin-bottom: 24px; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero p { max-width: 680px; margin: 0 auto 28px; font-size: 1.1rem; }

/* SECTIONS */
section { padding: 60px 0; }
.section-blue { background: #0088e3; color: #fff; }
.section-blue h2 { color: #fff; }
.section-light { background: #f7f9fb; }

/* INTRO TWO-COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }
.two-col img { width: 100%; }

/* CARD GRID */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: #fff; border: 1px solid #e5e5e5; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 20px; }
.card-body h3 { color: #0088e3; margin-bottom: 10px; }

/* BANNER CTA */
.banner-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
@media (max-width: 720px) { .banner-row { grid-template-columns: 1fr; } }
.banner-cta { padding: 60px 40px; text-align: center; }
.banner-cta h3 { color: #fff; font-size: 1.6rem; margin-bottom: 20px; }
.banner-cta.bg-blue { background: #0088e3; }
.banner-cta.bg-dark { background: #1a1a1a; }

/* TABLE */
.brand-table { width: 100%; border-collapse: collapse; margin: 24px 0; background: #fff; }
.brand-table th, .brand-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #e5e5e5; }
.brand-table th { background: #0088e3; color: #fff; font-weight: 700; text-transform: uppercase; font-size: .85rem; }
.brand-table tr:nth-child(even) { background: #f7f9fb; }

/* FORM */
.contact-form { background: #fff; padding: 30px; border: 1px solid #e5e5e5; }
.contact-form label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .9rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 10px 14px; border: 1px solid #ccc; border-radius: 3px;
  margin-bottom: 16px; font-family: inherit; font-size: 1rem;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #0088e3; }

/* INFO GRID */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.info-box { background: #fff; padding: 22px; border-left: 4px solid #0088e3; }
.info-box h4 { color: #0088e3; }

/* FOOTER */
.site-footer { background: #0088e3; color: #fff; padding: 50px 0 0; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: #e5f3ff; text-decoration: underline; }
.footer-social { text-align: center; margin-bottom: 24px; }
.footer-social a {
  display: inline-block; width: 44px; height: 44px; border: 2px solid #fff;
  border-radius: 50%; margin: 0 6px; line-height: 40px; font-weight: 700;
  font-size: .9rem;
}
.footer-social a:hover { background: #fff; color: #0088e3; }
.footer-biz { text-align: center; margin-bottom: 24px; }
.footer-biz h2 { color: #fff; font-size: 1.8rem; margin-bottom: 8px; }
.footer-biz .addr { font-size: 1rem; margin: 0 8px; }
.footer-nav ul { display: flex; justify-content: center; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; gap: 18px; }
.footer-nav li a { font-weight: 700; text-transform: uppercase; font-size: .85rem; letter-spacing: .5px; }
.footer-bottom { background: #005fa3; padding: 16px 0; margin-top: 30px; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; font-size: .85rem; gap: 10px; text-align: center; }

/* PAGE HEADER */
.page-header { background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('../images/alloy-wheels.jpg') center/cover; color: #fff; padding: 80px 20px; text-align: center; }
.page-header h1 { color: #fff; margin-bottom: 10px; }
.page-header p { color: #e5f3ff; font-size: 1.1rem; }

/* TEXT BLOCKS */
.content-block { max-width: 920px; margin: 0 auto; }
.content-block h2 { margin-top: 30px; }
.content-block h3 { margin-top: 22px; color: #0088e3; }

/* HOURS BOX */
.hours-box { background: #1a1a1a; color: #fff; padding: 26px; }
.hours-box h3 { color: #fff; margin-bottom: 14px; }
.hours-box dl { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; }
.hours-box dt { font-weight: 700; }

@media (max-width: 620px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 70px 20px; }
  section { padding: 40px 0; }
  .topbar-inner { flex-direction: column; text-align: center; }
}
