/* EverSpark Cleaning Co. — stylesheet */

:root {
  --navy: #0e3a5f;
  --navy-deep: #0a2540;
  --teal: #14b8c4;
  --teal-light: #5edfe0;
  --bg: #f7fbfc;
  --white: #ffffff;
  --ink: #1c2b36;
  --ink-soft: #4b5c68;
  --border: #e2edf0;
  --shadow: 0 10px 30px rgba(14, 58, 95, 0.08);
  --shadow-lg: 0 20px 50px rgba(14, 58, 95, 0.14);
  --radius: 16px;
  --max-width: 1120px;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
}

.brand img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background: radial-gradient(circle at 80% 0%, rgba(20, 184, 196, 0.14), transparent 55%),
              radial-gradient(circle at 0% 100%, rgba(14, 58, 95, 0.08), transparent 55%),
              var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 184, 196, 0.12);
  color: var(--navy);
  border: 1px solid rgba(20, 184, 196, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  margin: 20px 0 18px;
  color: var(--navy-deep);
}

.hero h1 span {
  color: var(--teal);
}

.hero p.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 32px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art .card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 28px;
  transform: rotate(-1.5deg);
}

.hero-art img {
  border-radius: 18px;
}

.trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.trust-row strong {
  color: var(--navy);
  display: block;
  font-size: 1.1rem;
}

/* ---------- Sections ---------- */

section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-head .eyebrow { margin-bottom: 16px; }

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy-deep);
  margin: 0 0 12px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Services ---------- */

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--navy-deep);
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.service-card.coming-soon {
  background: repeating-linear-gradient(135deg, var(--white), var(--white) 10px, #fbfdfe 10px, #fbfdfe 20px);
  border-style: dashed;
  position: relative;
}

/* ---------- Pricing ---------- */

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

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  text-align: center;
}

.pricing-card h3 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-size: 1.1rem;
}

.price-from {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}

.price-from span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: block;
  margin-top: 6px;
}

.pricing-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.pricing-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 32px auto 0;
}

.pricing-note a { color: var(--teal); font-weight: 600; }

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--teal-light);
  color: var(--navy-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

/* ---------- About ---------- */

.about {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about-art {
  background: linear-gradient(135deg, rgba(20,184,196,0.14), rgba(14,58,95,0.08));
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content h2 {
  color: var(--navy-deep);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  margin: 0 0 18px;
}

.about-content p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 16px;
  font-size: 1.02rem;
}

.about-signoff {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.avatar-fallback {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.about-signoff .name {
  font-weight: 700;
  color: var(--navy-deep);
}

.about-signoff .role {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* ---------- Area ---------- */

.area {
  text-align: center;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.pill {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  box-shadow: var(--shadow);
}

/* ---------- Contact ---------- */

.contact {
  background: var(--navy-deep);
  color: var(--white);
}

.contact .section-head h2,
.contact .section-head p {
  color: var(--white);
}

.contact .section-head p { opacity: 0.75; }

.contact .eyebrow {
  background: rgba(94, 223, 224, 0.15);
  border-color: rgba(94, 223, 224, 0.4);
  color: var(--teal-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.contact-item p, .contact-item a {
  margin: 0;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.94rem;
}

.contact-item a:hover { color: var(--teal-light); }

.note-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

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

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
}

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

.contact-form .btn-primary {
  width: 100%;
}

/* ---------- Footer ---------- */

footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  height: 30px;
  border-radius: 6px;
}

footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
footer a:hover { color: var(--teal-light); }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .hero-inner, .about-inner, .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-art { order: -1; }
  .hero-art { order: -1; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
    gap: 18px;
  }

  .nav-links.open { display: flex; }

  .nav-toggle { display: flex; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 64px 0; }
  .hero { padding: 64px 0 72px; }
}
