/* EzeeCleans — site styles (blue + lime theme, Poppins/Roboto) */

:root {
  --blue: #0095eb;
  --navy: #2e5aa8;
  --navy-deep: #161922;
  --lime: #90c924;
  --lime-dark: #7bc236;
  --grey: #747d86;
  --ink: #32373c;
  --bg-tint: #edf3f8;
  --bg-tint2: #d5e5ee;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(22, 25, 34, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Roboto", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, .btn, .logo {
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.section-title .accent { color: var(--blue); }

.section-sub {
  text-align: center;
  color: var(--grey);
  margin-bottom: 34px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Top contact bar */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.83rem;
  padding: 7px 0;
}

.top-bar a { color: var(--white); text-decoration: none; }

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

/* Header */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(22, 25, 34, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span { color: var(--blue); }

.logo .lime { color: var(--lime); }

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

.main-nav a {
  margin-left: 20px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active { color: var(--blue); }

.main-nav .header-phone {
  color: var(--navy);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.main-nav .btn { margin-left: 20px; }

/* Secondary service nav */
.sub-nav {
  background: var(--bg-tint);
  border-top: 1px solid var(--bg-tint2);
  font-size: 0.86rem;
}

.sub-nav .container {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.sub-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}

.sub-nav a:hover { color: var(--blue); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--lime);
  color: var(--white) !important;
  padding: 13px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}

.btn:hover { background: var(--lime-dark); transform: translateY(-2px); }

.btn-blue { background: var(--blue); }

.btn-blue:hover { background: #007cc3; }

.btn-small { padding: 9px 20px; font-size: 0.82rem; }

.btn-full { width: 100%; margin-top: 18px; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white) !important;
}

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

.btn-light {
  background: var(--white);
  color: var(--navy) !important;
}

.btn-light:hover { background: var(--bg-tint); }

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(22, 30, 48, 0.85) 15%, rgba(46, 90, 168, 0.55) 60%, rgba(0, 149, 235, 0.25)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=70") center/cover no-repeat;
  color: var(--white);
  padding: 110px 0 130px;
}

.hero-inner { max-width: 620px; }

.hero-kicker {
  display: inline-block;
  background: var(--lime);
  color: var(--white);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero h1 .accent { color: #7fd4ff; }

.hero .tagline {
  font-size: 1.12rem;
  opacity: 0.92;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Quote form */
.quote-section { margin-top: -70px; padding-bottom: 20px; position: relative; z-index: 5; }

.quote-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--blue);
  padding: 36px 38px 30px;
  max-width: 900px;
  margin: 0 auto;
}

.quote-card.collapsed .quote-form,
.quote-card.collapsed .quote-sub { display: none; }

.quote-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--grey);
  cursor: pointer;
}

.quote-close:hover { color: var(--ink); }

.quote-card h2 {
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.quote-sub { color: var(--grey); margin-bottom: 20px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.form-field { margin-bottom: 12px; }

.form-field label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 0.88rem;
  color: var(--ink);
}

.checkbox-field label { display: flex; align-items: center; gap: 8px; font-weight: 500; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d0d8de;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  color: var(--ink);
}

.checkbox-field input { width: auto; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--blue);
  border-color: transparent;
}

.form-success {
  display: none;
  background: #f2f9e6;
  border: 1px solid var(--lime);
  color: #4c7a10;
  border-radius: 6px;
  padding: 14px;
  margin-top: 16px;
  font-weight: 500;
}

/* Why choose us (value props) */
.value-props-section { padding: 70px 0 30px; }

.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

.feature-card { text-align: center; padding: 10px 14px; }

.feature-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: var(--bg-tint);
  border: 3px solid var(--blue);
}

.feature-card:nth-child(even) .feature-icon { border-color: var(--lime); }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-card p { color: var(--grey); font-size: 0.92rem; }

/* Services */
.services-section { padding: 60px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  margin-top: 10px;
}

.service-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}

.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(22, 25, 34, 0.16); }

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card-body { padding: 22px 22px 24px; }

.service-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-card p { color: var(--grey); font-size: 0.92rem; }

.service-card .link-more {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
}

/* Trust logos */
.trust-section { padding: 50px 0; background: var(--bg-tint); }

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}

.trust-logo {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(22, 25, 34, 0.08);
  padding: 16px 28px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

/* Offer strip */
.offer-strip {
  background:
    linear-gradient(90deg, rgba(46, 90, 168, 0.93), rgba(0, 149, 235, 0.85)),
    url("https://images.unsplash.com/photo-1563453392212-326f5e854473?auto=format&fit=crop&w=1600&q=60") center/cover no-repeat;
  color: var(--white);
  padding: 54px 0;
}

.offer-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.offer-strip h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 6px; }

.offer-strip p { opacity: 0.92; max-width: 560px; }

/* Checklist */
.checklist-section { padding: 60px 0; }

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
  margin-top: 10px;
}

.checklist-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.checklist-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.checklist-card-body { padding: 20px 22px 24px; }

.checklist-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.checklist-card li {
  list-style: none;
  padding-left: 24px;
  position: relative;
  margin: 6px 0;
  color: var(--grey);
  font-size: 0.9rem;
}

.checklist-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}

/* Exclusions */
.exclusions-section { padding: 56px 0; background: var(--bg-tint); }

.exclusions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px 30px;
  max-width: 900px;
  margin: 0 auto;
}

.exclusions-list li {
  list-style: none;
  padding-left: 26px;
  position: relative;
  color: var(--ink);
  font-size: 0.94rem;
}

.exclusions-list li::before {
  content: "✚";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* Pricing */
.pricing-section { padding: 60px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 10px auto 0;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--bg-tint2);
}

.pricing-head {
  background: var(--navy);
  color: var(--white);
  padding: 26px 20px 22px;
}

.pricing-card.featured .pricing-head { background: var(--blue); }

.pricing-head h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 2px; }

.pricing-head .starting { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }

.price-big {
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.pricing-body { padding: 24px 26px 30px; }

.pricing-body li {
  list-style: none;
  margin: 8px 0;
  color: var(--grey);
  font-size: 0.93rem;
}

.pricing-body .btn { margin-top: 16px; }

/* Stats band */
.stats-band {
  background:
    linear-gradient(90deg, rgba(22, 25, 34, 0.88), rgba(46, 90, 168, 0.82)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=60") center/cover no-repeat;
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.stats-band h2 { font-size: 1.7rem; font-weight: 700; margin-bottom: 30px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
}

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--lime);
}

.stat-label { opacity: 0.9; font-size: 0.95rem; }

/* Testimonials carousel */
.testimonials { padding: 60px 0; background: var(--bg-tint); }

.carousel {
  position: relative;
  max-width: 740px;
  margin: 20px auto 0;
  min-height: 150px;
}

.carousel-slide {
  display: none;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 34px;
  text-align: center;
}

.carousel-slide.active { display: block; animation: fadeIn 0.5s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.carousel-slide .stars { color: #f5b301; letter-spacing: 3px; margin-bottom: 8px; }

.carousel-slide p { font-size: 1.05rem; color: var(--ink); }

.carousel-slide cite {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-style: normal;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
}

.carousel-dots { text-align: center; margin-top: 18px; }

.carousel-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: var(--bg-tint2);
  margin: 0 5px;
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.active { background: var(--blue); }

/* Contact cards section */
.contact-section { padding: 60px 0; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 10px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--bg-tint2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 34px 24px;
}

.contact-card .icon { font-size: 2rem; margin-bottom: 10px; }

.contact-card h3 { color: var(--navy); font-weight: 700; margin-bottom: 6px; }

.contact-card p { color: var(--grey); font-size: 0.95rem; }

.contact-card a { color: var(--blue); text-decoration: none; font-weight: 600; }

/* Page headers (inner pages) */
.page-header {
  background:
    linear-gradient(100deg, rgba(22, 30, 48, 0.85), rgba(0, 149, 235, 0.55)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=70") center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}

.page-header h1 { font-size: 2.5rem; font-weight: 800; }

/* Service detail blocks (services page) */
.service-detail {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
  padding: 30px;
  margin: 26px 0;
  scroll-margin-top: 130px;
}

.service-detail h2 { color: var(--navy); font-weight: 700; margin-bottom: 6px; }

.service-detail .price { color: var(--lime-dark); font-weight: 800; margin-bottom: 10px; font-family: "Poppins", sans-serif; }

.service-detail p { color: var(--ink); }

/* About */
.about-content { padding: 50px 0; max-width: 760px; }

.about-content h2 { margin: 26px 0 10px; color: var(--navy); }

.about-content p { margin-bottom: 14px; }

.fun-facts {
  background: var(--bg-tint);
  border-radius: var(--radius);
  padding: 24px 30px;
  margin-top: 28px;
}

.fun-facts h2 { margin-top: 0; }

.fun-facts li { margin: 8px 0 8px 18px; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(90deg, var(--navy), var(--blue));
  color: var(--white);
  text-align: center;
  padding: 56px 0;
}

.cta-banner h2 { margin-bottom: 20px; font-weight: 700; }

/* Contact page */
.contact-wrap {
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--blue);
  padding: 30px;
}

.contact-form label { display: block; font-weight: 500; margin: 14px 0 6px; font-size: 0.9rem; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d0d8de;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--blue);
  border-color: transparent;
}

.contact-form .btn { margin-top: 20px; width: 100%; }

.contact-info h2 { margin-bottom: 14px; color: var(--navy); }

.contact-info p { margin-bottom: 12px; }

.contact-info .info-line { font-weight: 600; color: var(--navy); }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #9aa4ae;
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px;
  padding-bottom: 32px;
}

.footer-grid h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 700;
}

.footer-grid a { color: #6db3e8; text-decoration: none; }

.footer-grid a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid #2a2f3a;
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 0.83rem;
}

.site-footer .footer-links a {
  color: #6db3e8;
  text-decoration: none;
  margin: 0 4px;
}

/* Responsive */
@media (max-width: 720px) {
  .hero { padding: 70px 0 110px; }
  .hero h1 { font-size: 2.1rem; }
  .contact-wrap { grid-template-columns: 1fr; }
  .header-inner { flex-direction: column; }
  .main-nav a, .main-nav .btn { margin-left: 8px; margin-right: 8px; }
  .top-bar-inner { justify-content: center; }
  .offer-strip-inner { flex-direction: column; text-align: center; }
}
