/* ResetWash - Professional Car Wash | resetwash.online */
:root {
  --navy: #1a2a44;
  --blue: #00aeef;
  --light-blue: #e8f6fd;
  --dark: #111827;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --border: #e5e7eb;
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* HEADER */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img { height: 50px; width: auto; }
.logo-text { font-family: var(--font-heading); font-size: 1.4rem; color: var(--white); font-weight: 700; }

nav { display: flex; align-items: center; gap: 8px; }

nav a {
  color: #c9d8e8;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.02em;
}

nav a:hover, nav a.active {
  color: var(--white);
  background: rgba(0,174,239,0.2);
  text-decoration: none;
}

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { background: #0099d4 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* TOP BAR */
.top-bar {
  background: var(--blue);
  padding: 6px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--white);
}
.top-bar a { color: var(--white); font-weight: 600; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243b6e 60%, #1a5276 100%);
  min-height: 540px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-car-wash.jpg') center/cover no-repeat;
  opacity: 0.55;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,174,239,0.2);
  border: 1px solid rgba(0,174,239,0.4);
  color: #7dd3f8;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--blue); }

.hero p {
  color: #b0c8e0;
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-primary { background: var(--blue); color: var(--white); border: 2px solid var(--blue); }
.btn-primary:hover { background: #0099d4; border-color: #0099d4; text-decoration: none; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); margin-left: 12px; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); text-decoration: none; color: var(--white); }

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

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 48px;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body { padding: 24px; }
.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card-body p { font-size: 0.92rem; color: var(--gray); margin-bottom: 16px; }
.service-price { font-size: 1.3rem; font-weight: 700; color: var(--blue); }
.service-price span { font-size: 0.85rem; font-weight: 400; color: var(--gray); }

/* WHY CHOOSE US */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.feature-item { text-align: center; padding: 32px 20px; }
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}
.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-item p { font-size: 0.9rem; color: var(--gray); }

/* STATS BAR */
.stats-bar {
  background: var(--navy);
  padding: 48px 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-num { font-size: 2.4rem; font-weight: 700; color: var(--blue); font-family: var(--font-heading); }
.stat-label { font-size: 0.9rem; color: #a0b8d0; }

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 28px;
  border-left: 4px solid var(--blue);
}
.testimonial-text { font-size: 0.97rem; color: var(--dark); margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #0077b6 100%);
  padding: 64px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }
.btn-white { background: var(--white); color: var(--navy); border: 2px solid var(--white); }
.btn-white:hover { background: transparent; color: var(--white); text-decoration: none; }

/* CONTACT INFO */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--light-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; color: var(--navy); font-size: 0.9rem; }
.contact-detail-text span { font-size: 0.92rem; color: var(--gray); }

/* FORM */
.contact-form { background: var(--light-gray); padding: 36px; border-radius: 12px; }
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  background: var(--white);
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--blue);
  background: var(--navy);
  color: var(--white);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue);
  margin: 16px 0;
}
.pricing-price sub { font-size: 1rem; vertical-align: super; }
.pricing-features {
  list-style: none;
  text-align: left;
  margin: 20px 0 28px;
  padding: 0;
}
.pricing-features li {
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: center;
}
.pricing-card.featured .pricing-features li { color: #a0b8d0; border-color: rgba(255,255,255,0.1); }
.pricing-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* BREADCRUMB */
.breadcrumb {
  background: var(--light-gray);
  padding: 12px 24px;
  font-size: 0.85rem;
  color: var(--gray);
}
.breadcrumb a { color: var(--gray); }
.breadcrumb .sep { margin: 0 8px; }
.breadcrumb .current { color: var(--navy); font-weight: 600; }

/* PAGE HERO */
.page-hero {
  background: var(--navy);
  padding: 64px 24px 48px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p { color: #a0b8d0; max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* LEGAL PAGES */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy);
  margin: 36px 0 12px;
}
.legal-content h3 { font-size: 1.05rem; color: var(--navy); margin: 24px 0 8px; }
.legal-content p { margin-bottom: 16px; font-size: 0.95rem; color: var(--dark); }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { margin-bottom: 8px; font-size: 0.95rem; color: var(--dark); }
.legal-date { font-size: 0.88rem; color: var(--gray); margin-bottom: 32px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img { border-radius: 12px; overflow: hidden; }
.about-img img { width: 100%; height: 400px; object-fit: cover; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-question {
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--blue); }
.faq-answer { font-size: 0.92rem; color: var(--gray); margin-top: 12px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question::after { content: '−'; }

/* MAP PLACEHOLDER */
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 300px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--gray);
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* FOOTER */
footer {
  background: var(--navy);
  color: #a0b8d0;
  padding: 56px 24px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.9rem; margin: 14px 0 20px; color: #7a96b0; }
.footer-brand img { height: 44px; margin-bottom: 12px; filter: brightness(1.1); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: #7a96b0; text-decoration: none; }
.footer-col ul li a:hover { color: var(--blue); }

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #5a7090;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: #5a7090; text-decoration: none; }
.footer-bottom a:hover { color: var(--blue); }

/* ALERTS */
.alert-success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
  font-size: 0.92rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 0; }
  .btn-outline { display: none; }
}
