/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-dark: #1a2a4a;
  --blue-mid: #2c4a7c;
  --blue-light: #4a8ec2;
  --blue-accent: #5ba3d9;
  --gold: #d4a843;
  --gold-light: #f5e6c4;
  --silver: #a0a8b4;
  --bronze: #b87333;
  --platinum: #6b7b8d;
  --gray-light: #f5f7fa;
  --gray-mid: #dde2e8;
  --gray-dark: #333;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #5a6270;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--blue-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue-accent);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--blue-dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  font-weight: 600;
  font-size: 0.9rem;
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* ===== FOCUS STYLES ===== */
:focus-visible {
  outline: 2px solid var(--blue-accent);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--blue-accent);
  outline-offset: 2px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 42, 74, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
  overflow: visible;
}

.navbar.scrolled {
  background: rgba(26, 42, 74, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.nav-container {
  max-width: 100%;
  margin: 0;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 64px;
  transition: height var(--transition);
  overflow: visible;
}

.navbar.scrolled .nav-container {
  height: 56px;
}

.nav-logo {
  position: absolute;
  top: 0;
  left: 15%;
  transform: translateX(-50%);
  z-index: 1001;
}

.nav-logo img {
  height: 120px;
  width: auto;
  display: block;
  transition: height var(--transition);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .nav-logo img {
  height: 96px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.nav-links a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  margin-top: 64px;
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  border-bottom: 5px solid var(--blue-dark);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  padding: 0 40px;
}

.hero-info {
  background: rgba(26, 42, 74, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  text-align: left;
  color: var(--white);
  max-width: 480px;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.hero-detail svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.hero-detail a {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 72px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--gray-light);
}

.section h2 {
  font-size: 1.9rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: -0.02em;
}

.section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 3.2rem;
}

.section h2 + *:not(.section-note) {
  margin-top: 32px;
}

/* Left-align headings for service sections */
.wash h2,
.detailing h2,
.autolube h2 {
  text-align: left;
  justify-content: flex-start;
}

.wash h2::after,
.detailing h2::after,
.autolube h2::after {
  left: 0;
  transform: none;
}


.section-note {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  margin-top: 32px;
  margin-bottom: 32px;
}

.wash .section-note {
  text-align: left;
}

.subsection-title {
  font-size: 1.25rem;
  color: var(--blue-mid);
  margin: 48px 0 20px;
  text-align: center;
  font-weight: 700;
}

.wash .subsection-title,
.detailing .subsection-title,
.autolube .subsection-title {
  text-align: left;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ABOUT ===== */
.about {
  padding: 24px 0;
}

.about .container {
  max-width: 600px;
}

.about-content {
  max-width: 600px;
  margin: 0 auto 0;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
}

.service-icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tagline {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-top: 24px;
  font-style: italic;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #d4a843 0%, #f7e8a0 25%, #d4a843 50%, #f7e8a0 75%, #d4a843 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sparkle 3s ease-in-out infinite;
  text-shadow: none;
}

@keyframes sparkle {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.service-icon {
  text-align: center;
  transition: transform var(--transition);
  color: var(--text-light);
}

.service-icon:hover {
  transform: translateY(-4px);
  color: var(--blue-mid);
}

.service-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 142, 194, 0.1), rgba(91, 163, 217, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--blue-light);
  transition: all var(--transition);
}

.service-icon:hover .service-icon-circle {
  background: linear-gradient(135deg, rgba(74, 142, 194, 0.2), rgba(91, 163, 217, 0.25));
  transform: scale(1.08);
}

.service-icon span {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ===== PRICING CARDS ===== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow), 0 0 0 1px var(--gold);
}

.pricing-card.popular:hover {
  box-shadow: var(--shadow-hover), 0 0 0 1px var(--gold);
}

.popular-badge {
  position: absolute;
  top: 14px;
  right: -28px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 36px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: rotate(45deg);
  z-index: 1;
}

.card-header {
  padding: 28px 20px;
  text-align: center;
  color: var(--white);
}

.card-header h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.card-header .price {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-note {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.75;
  margin-left: 4px;
}

.card-header.bronze { background: linear-gradient(135deg, #a5662a, #cd8f4e); }
.card-header.silver { background: linear-gradient(135deg, #6e7a88, #9ba4b0); }
.card-header.gold { background: linear-gradient(135deg, #b08c1a, #d4a843); }
.card-header.platinum { background: linear-gradient(135deg, #3e4e5e, #627282); }

.pricing-card ul {
  list-style: none;
  padding: 20px 24px;
}

.pricing-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 0.93rem;
  color: var(--text-light);
  position: relative;
  padding-left: 24px;
}

.pricing-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--blue-light);
  font-weight: 700;
}

.pricing-card li:last-child {
  border-bottom: none;
}

.card-footer {
  padding: 14px 24px 20px;
  background: var(--gray-light);
  font-size: 0.85rem;
  color: var(--text-light);
  border-top: 1px solid var(--gray-mid);
}

.card-footer p {
  margin-bottom: 4px;
}

/* ===== PRICING TABLE ===== */
.pricing-table-wrapper {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table th {
  background: var(--blue-dark);
  color: var(--white);
  padding: 14px 24px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-table td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 0.95rem;
}

.pricing-table td:not(:first-child) {
  font-weight: 600;
  color: var(--blue-mid);
}

.pricing-table tbody tr {
  transition: background var(--transition);
}

.pricing-table tbody tr:hover {
  background: var(--gray-light);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.table-note {
  text-align: left;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 10px;
  font-style: italic;
}

/* ===== ADD-ONS ===== */
.addons {
  max-width: 600px;
  margin: 0 auto;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.addon-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.addon-price {
  font-weight: 700;
  color: var(--blue-mid);
  white-space: nowrap;
  margin-left: 16px;
  font-size: 0.95rem;
}

/* Inline add-ons (side by side) */
.addons-inline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px;
  max-width: 100%;
}

/* Stretch add-ons to match pricing card grid width */
.addons-stretch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-width: 100%;
}

/* Split row (monthly packages + daily specials side by side) */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}

.split-row .subsection-title {
  margin-top: 0;
}

.split-row .pricing-table {
  max-width: 100%;
}

.split-row .specials {
  grid-template-columns: 1fr;
  max-width: 100%;
}

/* ===== SPECIALS ===== */
.specials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.special-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 16px 20px;
  text-align: center;
  border-left: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.special-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.special-card h4 {
  color: var(--blue-dark);
  margin-bottom: 4px;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.special-card p {
  font-size: 0.85rem;
}

.special-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--blue-light);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(74, 142, 194, 0.3);
}

.btn-primary:hover {
  background: var(--blue-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(74, 142, 194, 0.4);
}

/* ===== CTA CARDS (Coupons, Fundraising, Employment) ===== */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cta-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 142, 194, 0.1), rgba(91, 163, 217, 0.15));
  color: var(--blue-light);
  margin-bottom: 24px;
}

.cta-card h3 {
  font-size: 1.35rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.cta-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
  flex-grow: 1;
}

/* ===== DETAILING ===== */
.detail-cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===== PRE-DETAIL ===== */
.pre-detail {
  max-width: 100%;
  margin: 48px 0 0;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue-light);
}

.pre-detail .subsection-title {
  margin: 0 0 16px;
  text-align: left;
}

.pre-detail ul {
  list-style: none;
  margin-top: 12px;
}

.pre-detail li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.pre-detail li::before {
  content: "\2022";
  position: absolute;
  left: 8px;
  color: var(--blue-light);
  font-weight: 700;
}

/* ===== AUTO LUBE ===== */
.oil-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.oil-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.oil-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.oil-header {
  padding: 24px 20px;
  text-align: center;
  color: var(--white);
}

.oil-header.platinum { background: linear-gradient(135deg, #3e4e5e, #627282); }
.oil-header.gold { background: linear-gradient(135deg, #b08c1a, #d4a843); }
.oil-header.silver { background: linear-gradient(135deg, #6e7a88, #9ba4b0); }
.oil-header.bronze { background: linear-gradient(135deg, #a5662a, #cd8f4e); }

.oil-image {
  width: 80px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: 8px;
  padding: 6px;
}

.oil-header h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.oil-header .price {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.oil-card ul {
  list-style: none;
  padding: 18px 22px;
}

.oil-card li {
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 0.9rem;
  color: var(--text-light);
  position: relative;
}

.oil-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--blue-light);
  font-weight: 700;
}

.oil-card li:last-child {
  border-bottom: none;
}

/* ===== SERVICE INCLUDES ===== */
.service-includes {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  align-self: start;
}

.service-includes .subsection-title {
  margin: 0 0 16px;
  text-align: left;
}

.checklist {
  display: grid;
  gap: 4px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.check-item:last-child {
  border-bottom: none;
}

.checkmark {
  color: var(--blue-light);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--gold);
  transition: opacity var(--transition);
}

.footer-col a:hover {
  opacity: 0.8;
  color: var(--gold);
}

.map-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.88rem !important;
}

.hours-table {
  border-collapse: collapse;
  font-size: 0.9rem;
  opacity: 0.8;
}

.hours-table td {
  padding: 3px 0;
}

.hours-table td:first-child {
  padding-right: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.5;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue-mid);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-logo img {
    height: 88px;
  }

  .navbar.scrolled .nav-logo img {
    height: 72px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(26, 42, 74, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 12px 20px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .hero {
    margin-top: 64px;
    min-height: 480px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-info {
    padding: 28px 28px;
    max-width: 400px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .section {
    padding: 52px 0;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .oil-tiers {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .split-row {
    grid-template-columns: 1fr;
  }

  .addons-inline {
    grid-template-columns: 1fr;
  }

  .specials {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-card {
    padding: 36px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hours-table {
    margin: 0 auto;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    left: 20%;
  }

  .nav-logo img {
    height: 72px;
  }

  .navbar.scrolled .nav-logo img {
    height: 60px;
  }

  .nav-container {
    height: 56px;
  }

  .navbar.scrolled .nav-container {
    height: 52px;
  }

  .nav-links {
    top: 56px;
  }

  .hero {
    margin-top: 56px;
    min-height: 360px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-info {
    padding: 24px 24px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .section {
    padding: 44px 0;
  }

  .section h2 {
    font-size: 1.3rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.92rem;
  }

  .service-icons {
    gap: 28px;
  }
}
