/* ========================================
   LAUNDRYPALMAS CORP - Main Stylesheet
   Colors hardcoded per client request
   ======================================== */

/* Base Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #222222;
  background: #FFFFFF;
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #4A90E2; text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #7ED321; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; }

/* Utilities */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--alt { background: #F8F9FA; }
.section--dark {
  background: linear-gradient(135deg, #4A90E2, #2c5f8d);
  color: #FFFFFF;
}
.section--dark .section__title,
.section--dark .cta__title { color: #FFFFFF; }
.section__title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}
.section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #7ED321;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}
.btn--primary {
  background: #7ED321;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: #6ab81c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn--lg { padding: 16px 40px; font-size: 1.1rem; }
.btn--full { width: 100%; }

/* Header */
.header {
  position: sticky;
  top: 0;
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 15px 0;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #4A90E2;
}
.logo__img { width: 40px; height: 40px; }
.nav__list { display: flex; gap: 2rem; }
.nav__link {
  font-weight: 600;
  color: #222222;
  position: relative;
  padding: 5px 0;
}
.nav__link:hover,
.nav__link--active { color: #4A90E2; }
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #4A90E2;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #222222;
}

/* Hero */
.hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero__bg picture,
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.hero__title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #222222;
}
.hero__subtitle {
  font-size: 1.25rem;
  color: #555555;
  margin-bottom: 2rem;
}

/* Benefits Grid */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.benefit-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.benefit-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.benefit-card__title { margin-bottom: 0.5rem; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.step__number {
  width: 50px; height: 50px;
  background: #4A90E2;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-left: 4px solid #7ED321;
}
.testimonial-card__rating { color: #F5A623; margin-bottom: 1rem; }
.testimonial-card__author {
  font-weight: 600;
  color: #555555;
  margin-top: 1rem;
  font-style: italic;
}

/* CTA Section */
.cta__content { text-align: center; }
.cta__title { font-size: 2.25rem; margin-bottom: 1rem; }
.cta__text { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }

/* Services Page */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.service-card {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.service-card__image {
  height: 200px;
  overflow: hidden;
  background: #F8F9FA;
}
.service-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-card:hover .service-card__img { transform: scale(1.05); }
.service-card__header {
  padding: 1.5rem;
  background: linear-gradient(135deg, #4A90E2, #3a7bc8);
  color: #FFFFFF;
}
.service-card__title { margin: 0; font-size: 1.3rem; }
.service-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.service-card__price span { font-size: 1rem; font-weight: 400; opacity: 0.9; }
.service-card__desc { padding: 0 1.5rem 1rem; color: #555555; }
.service-card__features { padding: 0 1.5rem 1.5rem; }
.service-card__features li { padding: 0.3rem 0; font-size: 0.95rem; }
.pricing-disclaimer {
  text-align: center;
  color: #555555;
  font-style: italic;
  font-size: 0.9rem;
}

/* About Page */
.about-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: block;
}
.about-image__caption {
  text-align: center;
  font-style: italic;
  color: #555555;
  margin-top: 0.5rem;
}
.values-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

/* Contacts Page */
.contacts-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}
.contact-item__icon { font-size: 1.5rem; }
.contact-item strong { display: block; margin-bottom: 0.25rem; }
.map-container { margin-top: 2rem; border-radius: 8px; overflow: hidden; }
.contact-form-wrapper {
  background: #F8F9FA;
  padding: 2rem;
  border-radius: 8px;
}
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4A90E2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}
.form-group--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
}
.form-group--checkbox input {
  width: auto;
  margin-top: 4px;
}
.checkbox-label a { color: #4A90E2; }
.form-note {
  font-size: 0.9rem;
  color: #555555;
  text-align: center;
  margin-top: 1rem;
}
.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
}
.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Privacy Policy Page */
.privacy-content__inner { max-width: 800px; margin: 0 auto; }
.privacy-content h2 {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
.privacy-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  list-style: disc;
}
.privacy-content li { margin: 0.3rem 0; }
.contact-block {
  background: #F8F9FA;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.legal-disclaimer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 2px solid #eee;
  font-size: 0.9rem;
  color: #555555;
}

/* Footer */
.footer {
  background: #1a1a2e;
  color: #FFFFFF;
  padding: 3rem 0 1rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__logo { width: 40px; height: 40px; margin-bottom: 1rem; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a { color: #ccc; }
.footer__links a:hover { color: #7ED321; }
.footer__contact p { margin: 0.3rem 0; opacity: 0.9; }
.footer__bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #4A90E2, #2c5f8d);
  color: #FFFFFF;
  padding: 60px 0 40px;
  text-align: center;
}
.page-header__subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
  h1 { font-size: 2.2rem; }
  .hero__title { font-size: 2.5rem; }
  .about-content__grid,
  .contacts-content__grid { grid-template-columns: 1fr; }
  .about-content__image { order: -1; }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #FFFFFF;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
  }
  .nav.active { display: block; }
  .nav__list { flex-direction: column; gap: 1rem; }
  .nav-toggle { display: block; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  .hero { padding: 80px 0 60px; }
  .hero__title { font-size: 2rem; }
  .hero__subtitle { font-size: 1.1rem; }
  .section { padding: 60px 0; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__links { align-items: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.7rem; }
  .btn--lg { padding: 14px 28px; font-size: 1rem; }
  .section__title { font-size: 1.5rem; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print */
@media print {
  .header, .footer, .btn, .nav-toggle { display: none; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}