/* =========================================
   Joe's Jet Washing — Main Stylesheet
   ========================================= */

:root {
  --blue:       #1a6fc4;
  --blue-dark:  #134f8f;
  --green:      #25d366; /* WhatsApp green */
  --green-dark: #1da851;
  --text:       #1a1a2e;
  --muted:      #555;
  --bg:         #f8f9fb;
  --white:      #ffffff;
  --radius:     10px;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
}

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

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- NAVBAR ---- */
.navbar {
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
}

.navbar nav a {
  margin-left: 1.75rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.navbar nav a:hover { color: var(--blue); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); }

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--green-dark); }

.btn-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { background: var(--white); color: var(--blue); }

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.875rem; }
.btn-full { width: 100%; text-align: center; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, #1a6fc4 0%, #0d3d6b 100%);
  color: var(--white);
  padding: 5rem 0;
}

.hero-inner { text-align: center; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- SECTIONS ---- */
.section { padding: 4rem 0; }
.section-alt { background: var(--white); }

.section-title {
  text-align: center;
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

/* ---- FEATURES GRID ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.feature-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }

.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p  { color: var(--muted); font-size: 0.95rem; }

/* ---- SERVICES SNAPSHOT ---- */
.services-snapshot {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.snap-item {
  background: var(--bg);
  border: 2px solid #e0e8f0;
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  color: var(--blue);
  transition: all 0.2s;
}

.snap-item:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-icon { font-size: 2.25rem; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; }
.service-card p  { color: var(--muted); flex: 1; }

.service-price {
  font-weight: 700;
  color: var(--blue);
  font-size: 1.05rem;
}

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, #1a6fc4 0%, #0d3d6b 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.page-header p  { opacity: 0.9; font-size: 1.05rem; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, #0d3d6b 0%, #1a6fc4 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta-banner h2 { font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; }
.cta-banner p  { opacity: 0.9; margin-bottom: 2rem; }

/* ---- CONTACT PAGE ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

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

.contact-form-wrap h2,
.contact-options h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label { font-weight: 600; font-size: 0.9rem; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #dde4ef;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  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(--blue);
}

/* ---- FLASH MESSAGES ---- */
.flash {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  margin-bottom: 1rem;
}

.flash-success { background: #d4edda; color: #155724; }
.flash-error   { background: #f8d7da; color: #721c24; }

/* ---- CONTACT OPTIONS ---- */
.contact-options { display: flex; flex-direction: column; gap: 1rem; }

.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  border: 2px solid transparent;
}

.contact-option:hover { transform: translateY(-2px); }

.whatsapp-option { border-color: var(--green); }
.phone-option    { border-color: var(--blue); }
.email-option    { border-color: #aaa; }

.option-icon { font-size: 1.75rem; }

.contact-option div {
  display: flex;
  flex-direction: column;
}

.contact-option strong { font-size: 1rem; }
.contact-option span   { font-size: 0.875rem; color: var(--muted); }

.contact-note {
  background: #fffbe6;
  border-radius: var(--radius);
  padding: 1rem;
  color: #6b5900;
  font-size: 0.9rem;
}

/* ---- FLOATING WHATSAPP BUTTON ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65);
}

/* ---- FOOTER ---- */
.footer {
  background: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}

.footer a { color: #d1d5db; }
.footer a:hover { color: var(--white); }
.footer-copy { margin-top: 0.5rem; font-size: 0.8rem; }

/* ---- MOBILE ---- */
@media (max-width: 600px) {
  .navbar nav a { margin-left: 1rem; font-size: 0.9rem; }
  .hero { padding: 3rem 0; }
  .section { padding: 2.5rem 0; }
}

/* ---- REVIEWS ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

.review-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.review-location {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---- SERVICE AREA ---- */
.area-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.area-tag {
  background: var(--white);
  border: 2px solid #dde4ef;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.area-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.area-note a {
  color: var(--blue);
  font-weight: 600;
}

.area-note a:hover {
  text-decoration: underline;
}
