/* =============================================
   LOADS OF LUV LAUNDRY — Main Stylesheet
   ============================================= */

:root {
  --purple: #dc2626;
  --purple-dark: #b91c1c;
  --purple-light: #fee2e2;
  --pink: #ef4444;
  --pink-light: #fef2f2;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --gray: #6b7280;
  --gray-dark: #374151;
  --gray-light: #f3f4f6;
  --text: #0f172a;
  --radius: 14px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px -5px rgba(220,38,38,0.2), 0 4px 10px -3px rgba(0,0,0,0.05);
}

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

html { scroll-behavior: smooth; }

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

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

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(220,38,38,0.15);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--purple);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-wrap: nowrap;
}
.nav-links a {
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-dark);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s;
}
.nav-links a:hover { background: var(--purple-light); color: var(--purple); }
.btn-nav {
  background: var(--purple) !important;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--purple-dark) !important; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
  color: var(--gray-dark);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--gray-light);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-dark);
}
.nav-mobile a:hover { background: var(--purple-light); color: var(--purple); }
.btn-mobile-cta {
  background: var(--purple);
  color: white !important;
  text-align: center;
  border-radius: 10px !important;
  font-weight: 600 !important;
  margin-top: 6px;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: white;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--purple-dark); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--purple);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--purple-light);
  transition: all 0.15s;
}
.btn-ghost:hover { background: var(--purple-light); text-decoration: none; }

.btn-white {
  display: inline-block;
  background: white;
  color: var(--purple);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.15s;
  border: none;
  cursor: pointer;
}
.btn-white:hover { background: var(--purple-light); text-decoration: none; }

/* ========== LAYOUT ========== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.bg-light { background: var(--bg-light); }
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.section-header p {
  font-size: 17px;
  color: var(--gray);
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, #fff5f5 0%, #fee2e2 100%);
  padding: 80px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  min-height: 85vh;
}
.hero-inner {
  max-width: 560px;
}
.hero-badge {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--text);
}
.accent { color: var(--purple); }
.hero-sub {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.65;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-visual {
  flex-shrink: 0;
}
.hero-card {
  background: white;
  border-radius: 20px;
  padding: 40px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--purple-light);
}
.hero-card-icon { font-size: 56px; margin-bottom: 14px; }
.hero-card-title { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.hero-card-price { font-size: 16px; color: var(--gray); }
.hero-card-price strong { color: var(--purple); font-size: 28px; }

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.2s;
  position: relative;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card.featured {
  border-color: var(--purple);
  box-shadow: var(--shadow-lg);
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.service-icon { font-size: 40px; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 15px; line-height: 1.6; }

/* ========== HOW IT WORKS ========== */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 48px;
}
.step {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--purple);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--gray); font-size: 14px; line-height: 1.6; }
.step-arrow {
  font-size: 28px;
  color: var(--purple);
  padding-top: 48px;
  flex-shrink: 0;
}
.cta-center { text-align: center; }

/* ========== PRICING ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 24px;
}
.pricing-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  position: relative;
}
.pricing-card.featured {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.pricing-icon { font-size: 36px; margin-bottom: 14px; }
.pricing-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.pricing-amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 20px;
}
.pricing-card.featured .pricing-amount { color: white; }
.pricing-amount span { font-size: 18px; font-weight: 500; }
.pricing-list {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}
.pricing-list li {
  padding: 7px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--gray-dark);
}
.pricing-card.featured .pricing-list li { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.15); }
.pricing-note { text-align: center; font-size: 13px; color: var(--gray); }

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  padding: 28px 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  text-align: center;
}
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.contact-icon { font-size: 32px; margin-bottom: 12px; }
.contact-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--gray); line-height: 1.5; }
.contact-card a { color: var(--purple); font-weight: 500; }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: white;
  padding: 80px 24px;
  text-align: center;
}
.cta-banner h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.cta-banner p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 40px 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand { flex: 1; }
.footer-logo { font-size: 18px; font-weight: 700; color: white; margin-bottom: 6px; }
.footer-brand p { font-size: 13px; }
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  text-decoration: none;
}
.footer-links a:hover { color: white; }
.footer-copy { font-size: 12px; }

/* ========== FORM PAGE ========== */
.form-page {
  min-height: calc(100vh - 70px);
  background: var(--bg-light);
  padding: 50px 24px;
}
.form-page-inner {
  max-width: 640px;
  margin: 0 auto;
}
.form-page-header {
  text-align: center;
  margin-bottom: 36px;
}
.form-page-header h1 { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.form-page-header p { font-size: 16px; color: var(--gray); }

.form-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  margin-bottom: 20px;
}
.form-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.fg label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--gray-dark);
}
.fg input, .fg select, .fg textarea {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 13px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  width: 100%;
  transition: all 0.15s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.12);
}
.fg textarea { resize: vertical; min-height: 80px; }
.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.submit-btn:hover { background: var(--purple-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

/* ========== SUCCESS PAGE ========== */
.success-card {
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.success-icon { font-size: 64px; margin-bottom: 20px; }
.success-card h2 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.success-card p { font-size: 16px; color: var(--gray); margin-bottom: 6px; }

/* ========== ADMIN LOGIN ========== */
.login-page {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  padding: 40px 24px;
}
.login-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.login-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.login-card p { color: var(--gray); font-size: 14px; margin-bottom: 28px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero { flex-direction: column; gap: 40px; text-align: center; min-height: auto; padding: 60px 24px; }
  .hero h1 { font-size: 40px; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
