/* Happy Home Cleaning — Blue + Light Teal + Light Grey Theme
   Drop-in replacement for styles.css
*/

:root {
  /* Backgrounds */
  --bg-main: #F5F7F8;     /* light grey */
  --bg-soft: #dff1f1;     /* very light teal */

  /* Brand */
  --blue-main: #4d979c;   /* deep teal-blue */
  --teal-light: #b7dcdf;  /* light teal accent */
  --accent-blue: #348489; /* bright accent for hover/highlights */

  /* Text */
  --text-dark: #1F2933;
  --text-muted: #6B7280;

  /* Lines + surfaces */
  --border-light: #D1D5DB;
  --white: #ffffff;

  /* Effects */
  --radius: 16px;
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-main);
  color: var(--text-dark);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial;
  line-height: 1.55;
}

a {
  color: var(--blue-main);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header / Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--text-dark);
}

.brand-title {
  height: 26px;      
  width: auto;
  display: block;
}

@media (max-width: 420px) {
  .brand-title {
    display: none;
  }
}


.brand-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: none;
  border: none;
  box-shadow: none;
}

.brand-mark img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-text {
  color: #39a3ab;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--text-dark);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--text-dark);
  padding: 8px 10px;
  border-radius: 12px;
}

/* Hero */
.hero {
  padding: 64px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.hero-copy h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.06;
  margin: 0 0 14px;
  color: var(--blue-main);
  letter-spacing: -0.5px;
}

.lead {
  color: var(--text-muted);
  font-size: 18px;
  margin: 0 0 18px;
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 16px;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
}

.hero-badges li {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Cards */
.hero-card,
.tile,
.quote,
.price-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  padding: 18px;
}

.card-title {
  margin: 0;
  font-size: 18px;
  color: var(--text-dark);
}

.card-subtitle {
  margin: 4px 0 14px;
  color: var(--text-muted);
}

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

.section.alt {
  background: var(--bg-soft);
  border-top: 1px solid rgba(14, 116, 144, 0.12);
  border-bottom: 1px solid rgba(14, 116, 144, 0.12);
}

h2 {
  margin: 0 0 10px;
  font-size: 28px;
  color: var(--blue-main);
}

h3 {
  margin: 0 0 8px;
  color: var(--text-dark);
}

.muted {
  color: var(--text-muted);
  margin: 0 0 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tile,
.quote {
  padding: 18px;
}

.tile p,
.quote blockquote,
.price-card p {
  color: var(--text-muted);
}

.tile ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  padding: 18px;
}

.price {
  font-size: 34px;
  margin: 8px 0 0;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: var(--blue-main);
}

.price-card.featured {
  border-color: #87c2c6;
  box-shadow: 0 0 0 3px rgba(57, 163, 171, 0.25), var(--shadow-soft);
}

/* Quotes */
blockquote {
  margin: 0;
  color: var(--text-dark);
}

figcaption {
  margin-top: 10px;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(14, 116, 144, 0.25);
  background: var(--blue-main);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, filter 0.15s ease;
}

.btn:hover {
  background: var(--accent-blue);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0px);
}

.btn-ghost {
  background: var(--white);
  color: var(--blue-main);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  background: rgba(94, 202, 212, 0.12);
}

.btn-small {
  padding: 8px 12px;
  border-radius: 12px;
}

.btn-full {
  width: 100%;
}

/* Forms */
.form label,
.big-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--text-dark);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(47, 137, 144, 0.8);
  box-shadow: 0 0 0 3px rgba(52, 132, 137, 0.18);
}

.form {
  display: grid;
  gap: 12px;
}

.form-note {
  margin: 10px 0 0;
  color: var(--blue-main);
  min-height: 20px;
  font-weight: 600;
}

.card-divider {
  height: 1px;
  background: var(--border-light);
  margin: 16px 0;
}

.big-form {
  display: grid;
  gap: 14px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Footer / Contact */
.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.contact-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.tiny {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.bottom {
  padding: 18px 0;
  border-top: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.7);
}

.bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-muted);
}

.bottom-row a {
  color: var(--blue-main);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid,
  .pricing {
    grid-template-columns: 1fr;
  }

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

  .two-col {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 16px;
    top: 60px;
    flex-direction: column;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    min-width: 200px;
    box-shadow: var(--shadow-soft);
  }

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

}
