/* =========================================
   LAUNDRY SQUARE LLC - Main Stylesheet
   Version: 1.0 | Mobile-First Approach
   ========================================= */

/* CSS Variables */
:root {
  --color-primary: #0066CC;
  --color-primary-dark: #0052A3;
  --color-secondary: #28A745;
  --color-secondary-dark: #218838;
  --color-bg: #FFFFFF;
  --color-bg-light: #F8F9FA;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #E0E0E0;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary-dark); }

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 60px 0; }
.section-light { background: var(--color-bg-light); }
.text-center { text-align: center; }

/* Header */
.header {
  background: var(--color-bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-primary);
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.nav { display: flex; gap: 20px; }
.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}
.nav a:hover, .nav a.active { color: var(--color-primary); }
.nav-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,102,204,0.9), rgba(40,167,69,0.8)), url('../img/hero-bg.jpg') center/cover;
  color: white;
  padding: 100px 0;
  text-align: center;
}
.hero h1 { color: white; margin-bottom: 1.5rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.95; }
.btn {
  display: inline-block;
  background: var(--color-secondary);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(40,167,69,0.4);
}
.btn-primary { background: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-dark); }

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.service-card {
  background: var(--color-bg);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-5px); }
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--color-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: var(--color-primary);
}
.price {
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Features/Benefits */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
  counter-reset: step;
}
.step {
  text-align: center;
  position: relative;
  padding-top: 50px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Contact Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  background: var(--color-bg-light);
  padding: 30px;
  border-radius: var(--radius);
}
.contact-info p { margin-bottom: 0.8rem; }
.contact-info strong { color: var(--color-primary); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}
textarea.form-control { min-height: 120px; resize: vertical; }

/* Map */
.map-container {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe { width: 100%; height: 350px; border: 0; }

/* Footer */
.footer {
  background: var(--color-primary-dark);
  color: white;
  padding: 40px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer h4 { color: white; font-size: 1.1rem; margin-bottom: 15px; }
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: white; }
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Privacy Policy Page */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-content h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.privacy-content ul {
  margin-left: 20px;
  margin-bottom: 1rem;
}
.privacy-content li { margin-bottom: 0.3rem; }
.privacy-content address {
  font-style: normal;
  line-height: 1.8;
  margin-top: 2rem;
  padding: 20px;
  background: var(--color-bg-light);
  border-radius: var(--radius);
}

/* Utility */
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Form Messages */
.form-message {
  padding: 12px 15px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: none;
}
.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive adjustments will be in responsive.css */