/* ============================================
   MAGIC CAR WASH — Global Styles
   ============================================ */

:root {
  --red: #CC1F1F;
  --yellow: #F5C800;
  --black: #111111;
  --white: #FFFFFF;
  --font-heading: 'Fredoka One', cursive;
  --font-body: 'Nunito', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
p { font-size: 1.05rem; }

/* ============================================
   SUNBURST PATTERN
   ============================================ */
.sunburst-bg {
  position: relative;
}
.sunburst-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(
    rgba(245, 200, 0, 0.18) 0deg 18deg,
    rgba(255, 255, 255, 0.10) 18deg 36deg
  );
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.sunburst-bg > * { position: relative; z-index: 1; }

.sunburst-dark {
  position: relative;
}
.sunburst-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(
    rgba(245, 200, 0, 0.10) 0deg 18deg,
    rgba(0, 0, 0, 0.07) 18deg 36deg
  );
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.sunburst-dark > * { position: relative; z-index: 1; }

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.img-placeholder {
  background: #e8e8e8;
  border: 2px dashed #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  color: #666;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: italic;
  width: 100%;
}
.img-placeholder.hero { min-height: 400px; }
.img-placeholder.section { min-height: 240px; }
.img-placeholder.small { min-height: 180px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-red { background: var(--red); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-black { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.92rem; }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.section { padding: 5rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.75;
}
.section-heading { margin-bottom: 1.25rem; }
.section-subheading { font-size: 1.15rem; margin-bottom: 1.5rem; opacity: 0.9; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

.bg-red { background-color: var(--red); color: var(--white); }
.bg-yellow { background-color: var(--yellow); color: var(--black); }
.bg-black { background-color: var(--black); color: var(--white); }
.bg-white { background-color: var(--white); color: var(--black); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col.reverse > *:first-child { order: 2; }
.two-col.reverse > *:last-child { order: 1; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse > * { order: unset; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}
.nav-logo img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--yellow); }
.nav-ctas { display: flex; gap: 0.6rem; align-items: center; flex-shrink: 0; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  background: var(--black);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #2a2a2a;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile ul li a {
  display: block;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav-mobile ul li a:hover { color: var(--yellow); }
.nav-mobile .nav-ctas-mobile { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }

@media (max-width: 960px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-inner.full-width {
  grid-template-columns: 1fr;
  text-align: center;
}
.hero-inner.full-width .btn-group { justify-content: center; }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  background: var(--red);
  color: var(--yellow);
  text-align: center;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 1px;
}
.promo-banner.on-light { background: var(--yellow); color: var(--black); }
.promo-banner.on-red { background: var(--black); color: var(--yellow); }

/* ============================================
   PACKAGE CARDS
   ============================================ */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.package-col > h3 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--yellow);
}
.package-card {
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.2s;
}
.package-card:hover { transform: translateY(-3px); }
.package-card.featured { border-color: var(--yellow); border-width: 2px; }
.package-card .pkg-name { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 0.35rem; }
.package-card .pkg-price { font-size: 2rem; font-family: var(--font-heading); color: var(--yellow); line-height: 1.1; }
.package-card .pkg-membership { font-size: 0.88rem; opacity: 0.8; margin-bottom: 0.75rem; }
.package-card .pkg-features { list-style: none; font-size: 0.93rem; }
.package-card .pkg-features li { padding: 0.2rem 0; }
.package-card .pkg-features li::before { content: '✦ '; color: var(--yellow); }

.package-card.light {
  background: var(--white);
  border-color: #e0e0e0;
  color: var(--black);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.package-card.light.featured { border-color: var(--red); border-width: 2px; }
.package-card.light .pkg-price { color: var(--red); }
.package-card.light .pkg-features li::before { color: var(--red); }

@media (max-width: 768px) {
  .packages-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
  border-bottom: 4px solid var(--yellow);
}
.testimonial-stars { color: var(--yellow); font-size: 1.2rem; margin-bottom: 0.75rem; }
.testimonial-quote { font-size: 0.95rem; color: #444; margin-bottom: 1rem; font-style: italic; }
.testimonial-name { font-family: var(--font-heading); color: var(--red); font-size: 0.95rem; }

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================
   BENEFIT CARDS
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.benefit-card {
  background: #1b1b1b;
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--yellow);
}
.benefit-card.red-accent { border-left-color: var(--red); }
.benefit-icon { font-size: 2.4rem; margin-bottom: 0.75rem; }
.benefit-card h3 { color: var(--yellow); margin-bottom: 0.5rem; }
.benefit-card.red-accent h3 { color: #ff6b6b; }
.benefit-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================
   LOCATION CARDS
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.location-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  background: var(--white);
  border: 1px solid #eee;
}
.location-card-body { padding: 1.75rem; }
.location-card h3 { font-size: 1.3rem; color: var(--red); margin-bottom: 1rem; }
.loc-detail { font-size: 0.95rem; margin-bottom: 0.5rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.loc-detail .loc-icon { flex-shrink: 0; }

@media (max-width: 700px) {
  .locations-grid { grid-template-columns: 1fr; }
}

/* ============================================
   MEMBERSHIP CARDS
   ============================================ */
.memberships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.membership-card {
  background: #1b1b1b;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 2px solid #2a2a2a;
  transition: border-color 0.2s, transform 0.2s;
}
.membership-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.membership-card.featured { border-color: var(--yellow); }
.mem-type { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--yellow); margin-bottom: 0.25rem; }
.mem-name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; }
.mem-price { font-family: var(--font-heading); font-size: 2.6rem; color: var(--yellow); line-height: 1; }
.mem-period { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 1.25rem; }
.membership-card ul { list-style: none; text-align: left; margin-bottom: 1.5rem; }
.membership-card ul li { font-size: 0.9rem; color: rgba(255,255,255,0.8); padding: 0.3rem 0; border-bottom: 1px solid #2a2a2a; }
.membership-card ul li::before { content: '✦ '; color: var(--yellow); }

/* ============================================
   FORMS
   ============================================ */
.form-container { max-width: 720px; margin: 0 auto; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.form-grid .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-weight: 700; font-size: 0.9rem; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { margin-top: 1.5rem; }

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PULL QUOTES / CALLOUTS
   ============================================ */
.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  border-left: 4px solid var(--yellow);
  padding-left: 1rem;
  margin: 1.5rem 0;
  opacity: 0.95;
  line-height: 1.4;
}
.callout-stat {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  background: rgba(245,200,0,0.12);
  border: 2px solid var(--yellow);
  border-radius: 8px;
  padding: 0.85rem 1.5rem;
  display: inline-block;
  margin: 1rem 0;
  color: var(--yellow);
}

.checklist { list-style: none; margin: 1rem 0; }
.checklist li {
  padding: 0.5rem 0;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.checklist li::before { content: '★'; color: var(--yellow); font-size: 1rem; flex-shrink: 0; }

/* ============================================
   STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.step-card { text-align: center; padding: 1.5rem; }
.step-number {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.step-card h3 { margin-bottom: 0.5rem; }

@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============================================
   GIFT CARD
   ============================================ */
.gift-cta-box {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(245,200,0,0.1);
  border: 3px dashed var(--yellow);
  border-radius: 16px;
  margin: 2rem 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-block {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 2rem;
}
.contact-info-block h3 { color: var(--red); margin-bottom: 1.25rem; }
.info-row { display: flex; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.95rem; align-items: flex-start; }
.info-row .info-icon { font-size: 1.1rem; flex-shrink: 0; }
.info-divider { border: none; border-top: 1px solid #e0e0e0; margin: 1.25rem 0; }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo img { height: 50px; width: auto; margin-bottom: 1rem; }
.footer-logo p { font-size: 0.9rem; opacity: 0.7; line-height: 1.6; margin-bottom: 0.75rem; }
.footer-col h4 { font-family: var(--font-heading); color: var(--yellow); margin-bottom: 1rem; font-size: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a { color: rgba(255,255,255,0.72); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-col p { font-size: 0.9rem; opacity: 0.72; margin-bottom: 0.4rem; }
.footer-col a.footer-email { color: var(--yellow); font-size: 0.9rem; }
.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--yellow); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================
   MISC
   ============================================ */
.text-center { text-align: center; }
.note-text { font-size: 0.9rem; opacity: 0.8; font-style: italic; margin-top: 0.75rem; }
.section-divider { border: none; border-top: 2px solid rgba(255,255,255,0.15); margin: 2rem 0; }
.badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.badge.red { background: var(--red); color: var(--white); }

/* Responsive helpers */
@media (max-width: 480px) {
  .section { padding: 3.5rem 1rem; }
  .hero { padding: 3rem 1rem; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .btn { padding: 0.7rem 1.4rem; font-size: 0.95rem; }
}
