/* ============================================
   Peach Window Cleaning - Styles
   ============================================ */

:root {
  --peach: #E8787E;
  --peach-dark: #D4636A;
  --peach-light: #F5B0B3;
  --peach-bg: #FFF5F3;
  --peach-50: #FFF0EE;
  --cream: #FFF8F6;
  --dark: #1E1E2E;
  --dark-secondary: #3A3A4F;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--peach);
  color: var(--white);
  border-color: var(--peach);
}

.btn--primary:hover {
  background: var(--peach-dark);
  border-color: var(--peach-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
  background: var(--white);
  color: var(--peach);
}

.btn--white {
  background: var(--white);
  color: var(--peach);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.nav--scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-secondary);
}

.nav__link:hover {
  color: var(--peach);
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.nav__phone:hover {
  color: var(--peach);
}

.nav__phone svg {
  color: var(--peach);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.88) 0%, rgba(255,245,243,0.82) 40%, rgba(255,240,238,0.65) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(232, 120, 126, 0.12);
  color: var(--peach-dark);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__actions .btn--outline {
  color: var(--dark);
  border-color: var(--dark);
}

.hero__actions .btn--outline:hover {
  background: var(--dark);
  color: var(--white);
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--cream);
}

.section--peach {
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-dark) 100%);
}

.section__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--peach);
  margin-bottom: 12px;
}

.section__label--white {
  color: rgba(255,255,255,0.85);
}

.section__title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 16px;
}

.section__title--white {
  color: var(--white);
}

.section__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 56px;
}

/* ============================================
   Features (Why Us)
   ============================================ */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature {
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.feature:hover {
  border-color: var(--peach-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--peach-bg);
  color: var(--peach);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.feature__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

/* ============================================
   Services
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-align: center;
}

.service-card:hover {
  border-color: var(--peach-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--peach-bg);
  color: var(--peach);
  border-radius: var(--radius);
  margin: 0 auto 20px;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

/* ============================================
   How It Works
   ============================================ */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--peach);
  color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.step__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

.step__connector {
  width: 80px;
  height: 2px;
  background: var(--border);
  margin-top: 32px;
  flex-shrink: 0;
}

.steps__cta {
  text-align: center;
}

/* ============================================
   Plans
   ============================================ */
.plans__content {
  max-width: 640px;
}

.plans__text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
}

.plans__options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.plan-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  color: var(--white);
}

.plan-option__icon {
  flex-shrink: 0;
  opacity: 0.9;
}

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

.plan-option strong {
  font-size: 16px;
  font-weight: 700;
}

.plan-option span {
  font-size: 13px;
  opacity: 0.8;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  margin-bottom: 16px;
}

.testimonial__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  background: var(--peach-bg);
  color: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.testimonial__author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial__author span {
  font-size: 13px;
  color: var(--gray-light);
}

/* ============================================
   Quote Form
   ============================================ */
.quote__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.quote__text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 32px;
}

.quote__contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote__method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.quote__method:hover {
  border-color: var(--peach-light);
  box-shadow: var(--shadow-sm);
}

.quote__method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--peach-bg);
  color: var(--peach);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.quote__method strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.quote__method span {
  font-size: 13px;
  color: var(--gray-light);
}

.quote__form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form__input:focus {
  border-color: var(--peach);
  box-shadow: 0 0 0 3px rgba(232, 120, 126, 0.12);
}

.form__input::placeholder {
  color: var(--gray-light);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__radios {
  display: flex;
  gap: 24px;
  padding-top: 4px;
}

.form__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: var(--dark-secondary);
}

.form__radio input {
  accent-color: var(--peach);
  width: 18px;
  height: 18px;
}

.form__disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--gray-light);
  margin-top: 12px;
}

.form__input.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-dark) 100%);
  padding: 80px 0;
}

.cta-banner__inner {
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner__text {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  border-radius: 6px;
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__links a,
.footer__contact a,
.footer__contact p {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--peach-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   Modal
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 420px;
  width: 100%;
  transform: scale(0.9);
  transition: transform var(--transition);
}

.modal.active .modal__content {
  transform: scale(1);
}

.modal__icon {
  color: #22C55E;
  margin-bottom: 20px;
}

.modal__content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.modal__content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 24px;
}

/* ============================================
   Animations
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid .testimonial:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav__menu.active {
    transform: translateX(0);
  }

  .nav__toggle {
    display: flex;
  }

  .nav__link {
    font-size: 18px;
  }

  .nav__phone {
    font-size: 18px;
  }

  .nav__cta {
    padding: 14px 32px;
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero__bg-img {
    object-fit: contain;
    object-position: center bottom;
    top: auto;
    bottom: 0;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 64px 0;
  }

  .section__title {
    font-size: 28px;
  }

  .section__subtitle {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .step__connector {
    width: 2px;
    height: 40px;
    margin-top: 0;
  }

  .plans__options {
    flex-direction: column;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid .testimonial:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .quote__form {
    padding: 24px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }
}
