/* Grain Valley Cleaning Co — Brand CSS */
/* Vibe: Clean, bright, trustworthy. Soft mint greens on white. Residential family brand. */

:root {
  --green-deep:   #1a4d3a;
  --green-mid:    #2a7d5a;
  --green-bright: #35a070;
  --green-soft:   #e8f5ee;
  --green-pale:   #f2faf6;

  --white:     #ffffff;
  --off-white: #fafcfb;
  --gray-100:  #f0f4f2;
  --gray-200:  #dde6e2;
  --gray-400:  #9aaeaa;
  --gray-600:  #5c7470;
  --gray-800:  #2c3836;
  --ink:       #1a2823;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-display: 'Fraunces', serif;

  --shadow-sm:  0 2px 8px rgba(26, 77, 58, 0.08);
  --shadow-md:  0 8px 32px rgba(26, 77, 58, 0.12);
  --shadow-lg:  0 20px 60px rgba(26, 77, 58, 0.16);
  --shadow-btn: 0 4px 16px rgba(53, 160, 112, 0.35);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 32px;
  height: 70px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-leaf {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green-deep) 100%);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 19px; flex-shrink: 0;
}
.logo-name { font-weight: 700; font-size: 15px; color: var(--ink); line-height: 1.2; }
.logo-name span { display: block; font-size: 11px; font-weight: 500; color: var(--gray-600); letter-spacing: 0.5px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-bright); color: white;
  padding: 10px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all 0.2s ease; box-shadow: var(--shadow-btn);
}
.nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }

/* HERO */
.hero {
  padding: 120px 32px 80px;
  background: linear-gradient(160deg, var(--green-pale) 0%, var(--white) 55%, var(--green-soft) 100%);
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(53,160,112,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 100px; padding: 6px 16px 6px 8px;
  font-size: 13px; font-weight: 500; color: var(--green-deep);
  margin-bottom: 28px; box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 22px; height: 22px; background: var(--green-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800; line-height: 1.05; letter-spacing: -1.5px;
  color: var(--ink); margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--green-bright); }
.hero-subtitle { font-size: 18px; color: var(--gray-600); line-height: 1.7; margin-bottom: 36px; max-width: 440px; }
.hero-areas { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; font-size: 14px; color: var(--gray-600); font-weight: 500; }
.hero-area-sep { color: var(--gray-400); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-bright); color: white;
  padding: 16px 32px; border-radius: 100px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.2s ease;
  box-shadow: var(--shadow-btn); font-family: var(--font-body);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(53,160,112,0.5); }
.btn-primary:active { transform: translateY(0); }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 24px; font-size: 13px; color: var(--gray-600); flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-weight: 500; }
.hero-trust-item::before {
  content: '✓'; width: 17px; height: 17px;
  background: var(--green-soft); color: var(--green-bright);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.hero-visual { position: relative; }
.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200); position: relative;
}
.hero-card-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--green-mid); margin-bottom: 16px; }
.hero-service-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.hero-service-item:last-child { border-bottom: none; }
.hero-service-icon { width: 40px; height: 40px; background: var(--green-soft); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.hero-service-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.hero-service-price { font-size: 13px; color: var(--gray-600); margin-top: 2px; }
.hero-card-badge { position: absolute; top: -14px; right: 24px; background: var(--green-deep); color: white; padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; }

/* QUOTE FORM */
.quote {
  padding: 100px 32px; background: var(--green-deep);
  position: relative; overflow: hidden; scroll-margin-top: 70px;
}
.quote::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.quote-inner { max-width: 760px; margin: 0 auto; }
.quote-heading { text-align: center; margin-bottom: 48px; }
.section-label-light { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.quote-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px); font-weight: 700; color: white; line-height: 1.1; letter-spacing: -1px; margin-bottom: 12px; }
.quote-sub { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto; line-height: 1.6; }
.quote-form { background: white; border-radius: var(--radius-xl); padding: 48px; box-shadow: 0 24px 64px rgba(0,0,0,0.25); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--gray-800); }
.form-group label .req { color: var(--green-bright); margin-left: 2px; }
.form-group input,
.form-group select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: var(--off-white); transition: all 0.2s ease;
  appearance: none; -webkit-appearance: none; outline: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c7470' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 44px; cursor: pointer;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--green-bright); background: white; box-shadow: 0 0 0 3px rgba(53,160,112,0.12); }
.form-group input::placeholder { color: var(--gray-400); }
.freq-label { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 12px; }
.freq-label .req { color: var(--green-bright); margin-left: 2px; }
.freq-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.freq-card { position: relative; }
.freq-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.freq-card label {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 10px; border: 2px solid var(--gray-200); border-radius: var(--radius);
  cursor: pointer; transition: all 0.2s ease; text-align: center;
  background: var(--off-white); font-weight: 500; color: var(--gray-800);
  font-size: 13px; gap: 3px;
}
.freq-card label .freq-icon { font-size: 22px; margin-bottom: 3px; }
.freq-card label .freq-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.freq-card label .freq-price { font-size: 12px; color: var(--gray-600); }
.freq-card label .freq-badge { display: inline-block; background: var(--green-soft); color: var(--green-deep); border-radius: 100px; padding: 2px 8px; font-size: 10px; font-weight: 700; margin-top: 3px; }
.freq-card input[type="radio"]:checked + label { border-color: var(--green-bright); background: var(--green-soft); box-shadow: 0 0 0 3px rgba(53,160,112,0.12); }
.form-submit { margin-top: 28px; }
.btn-submit {
  width: 100%; padding: 18px 32px; background: var(--green-bright);
  color: white; border: none; border-radius: 100px;
  font-family: var(--font-body); font-size: 17px; font-weight: 700;
  cursor: pointer; transition: all 0.2s ease; box-shadow: var(--shadow-btn);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(53,160,112,0.5); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-guarantees { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 16px; font-size: 13px; color: var(--gray-600); flex-wrap: wrap; }
.form-guarantee { display: flex; align-items: center; gap: 5px; font-weight: 500; }
.form-guarantee::before { content: '✓'; width: 15px; height: 15px; background: var(--green-soft); color: var(--green-bright); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; flex-shrink: 0; }
.quote-success { display: none; text-align: center; padding: 48px 32px; }
.success-icon { width: 72px; height: 72px; background: var(--green-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 24px; }
.success-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.success-msg { font-size: 16px; color: var(--gray-600); line-height: 1.7; max-width: 400px; margin: 0 auto; }

/* PRICING */
.pricing { padding: 100px 32px; background: var(--off-white); }
.pricing-inner { max-width: 1140px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.section-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--green-mid); margin-bottom: 14px; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px); font-weight: 700; color: var(--ink); line-height: 1.1; letter-spacing: -1px; }
.section-sub { font-size: 17px; color: var(--gray-600); margin-top: 14px; line-height: 1.6; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.price-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px 32px; position: relative; transition: all 0.3s ease; }
.price-card:hover { border-color: var(--green-bright); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.price-card.featured { border-color: var(--green-bright); box-shadow: var(--shadow-md); background: linear-gradient(160deg, var(--green-pale) 0%, var(--white) 100%); }
.price-badge { display: inline-block; background: var(--green-bright); color: white; padding: 5px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.price-name { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.price-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 24px; min-height: 44px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-from { font-size: 14px; color: var(--gray-600); font-weight: 500; }
.price-num { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--green-deep); letter-spacing: -1px; }
.price-per { font-size: 14px; color: var(--gray-600); }
.price-features { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-800); font-weight: 500; }
.price-features li::before { content: '✓'; width: 20px; height: 20px; background: var(--green-soft); color: var(--green-bright); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.price-cta { display: block; text-align: center; padding: 13px 24px; border-radius: 100px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s ease; border: 2px solid var(--green-bright); color: var(--green-deep); background: transparent; cursor: pointer; font-family: var(--font-body); }
.price-card.featured .price-cta { background: var(--green-bright); color: white; box-shadow: var(--shadow-btn); }
.price-cta:hover { background: var(--green-bright); color: white; box-shadow: var(--shadow-btn); }
.pricing-note { text-align: center; font-size: 15px; color: var(--gray-600); line-height: 1.7; max-width: 560px; margin: 0 auto; padding: 20px 24px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); }

/* TRUST */
.trust { padding: 100px 32px; background: var(--white); }
.trust-inner { max-width: 1140px; margin: 0 auto; }
.trust-header { text-align: center; margin-bottom: 56px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-card { padding: 32px 24px; background: var(--off-white); border-radius: var(--radius-lg); border: 1px solid var(--gray-100); transition: all 0.3s ease; }
.trust-card:hover { background: var(--green-soft); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.trust-icon { width: 52px; height: 52px; background: var(--green-soft); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.trust-card:hover .trust-icon { background: white; }
.trust-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.trust-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* PROCESS */
.process { padding: 100px 32px; background: var(--green-pale); border-top: 1px solid var(--gray-200); }
.process-inner { max-width: 1140px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 64px; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 35px; left: calc(16.66% + 36px); right: calc(16.66% + 36px); height: 2px; background: linear-gradient(90deg, var(--green-soft) 0%, var(--green-bright) 50%, var(--green-soft) 100%); z-index: 0; }
.process-step { text-align: center; padding: 0 32px; position: relative; z-index: 1; }
.step-num { width: 70px; height: 70px; background: var(--white); border: 2px solid var(--green-bright); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--green-deep); margin: 0 auto 28px; box-shadow: var(--shadow-sm); }
.step-title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.step-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* CTA BANNER */
.cta-banner { padding: 100px 32px; background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; }
.cta-banner-inner { max-width: 700px; margin: 0 auto; position: relative; }
.cta-banner-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 700; color: white; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
.cta-banner-sub { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 40px; line-height: 1.6; }
.btn-white { display: inline-flex; align-items: center; gap: 10px; background: white; color: var(--green-deep); padding: 18px 40px; border-radius: 100px; font-family: var(--font-body); font-size: 17px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s ease; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-white:hover { background: var(--green-pale); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

/* FOOTER */
.footer { background: var(--ink); padding: 64px 32px 40px; color: rgba(255,255,255,0.65); }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-mark { width: 32px; height: 32px; background: linear-gradient(135deg, var(--green-bright) 0%, var(--green-deep) 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 15px; }
.footer-logo-text { font-weight: 700; font-size: 15px; color: white; }
.footer-brand-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; margin-bottom: 8px; transition: color 0.2s; }
.footer-contact a:hover { color: white; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 15px; transition: all 0.2s ease; }
.footer-social a:hover { background: var(--green-bright); color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.35); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .quote { padding: 70px 20px; }
  .quote-form { padding: 28px 20px; border-radius: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .freq-cards { grid-template-columns: 1fr; }
  .pricing { padding: 70px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 28px 24px; }
  .trust { padding: 70px 20px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-card { padding: 24px 16px; }
  .process { padding: 70px 20px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .cta-banner { padding: 70px 20px; }
  .footer { padding: 48px 20px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}
