﻿/* AMBez Sparkling Cleaning Service website styles */
:root {
  --brand-teal: #0c8a8a;
  --brand-blue: #0f4c81;
  --accent-green: #72c187;
  --ink: #10222f;
  --muted: #5f7281;
  --paper: #ffffff;
  --soft: #eef7f9;
  --card: #f7fbfc;
  --shadow: 0 12px 28px rgba(15, 76, 129, 0.12);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f5fbfc 0%, #ffffff 22%, #eef7f9 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

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

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

.brand {
  font-family: "Poppins", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--brand-blue);
}

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

.nav-toggle {
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--brand-blue);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  background: var(--paper);
  border-bottom: 1px solid rgba(12, 138, 138, 0.12);
}

nav ul.open {
  display: block;
}

nav li a {
  display: block;
  padding: 0.9rem 1.3rem;
  font-weight: 600;
  color: var(--brand-blue);
}

nav li a.active,
nav li a:hover {
  color: var(--brand-teal);
  background: rgba(12, 138, 138, 0.08);
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal));
  box-shadow: var(--shadow);
}

.btn-secondary {
  color: var(--brand-blue);
  background: #d9f4ee;
}

.hero {
  padding: 3.2rem 0 2.6rem;
}

.hero-grid {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--brand-teal);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

h1,
h2,
h3 {
  font-family: "Poppins", "Trebuchet MS", sans-serif;
  margin: 0.3rem 0 0.8rem;
  line-height: 1.18;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

p {
  margin: 0.4rem 0 1rem;
  color: var(--muted);
}

.hero-card,
.panel,
.card,
.form-shell {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 138, 138, 0.12);
}

.hero-card {
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  padding: 1.2rem;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-teal);
  font-weight: 700;
}

.list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: #dcf6ef;
  color: #0c5e5f;
  font-size: 0.82rem;
  font-weight: 700;
}

.showcase img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  min-height: 180px;
}

.quote-output {
  margin-top: 0.8rem;
  padding: 0.9rem;
  border-radius: 10px;
  background: #eef8f2;
  color: #145b42;
  font-weight: 700;
}

form {
  display: grid;
  gap: 0.7rem;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-blue);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(15, 76, 129, 0.25);
  padding: 0.7rem;
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.success-msg {
  display: none;
  margin-top: 0.7rem;
  padding: 0.7rem;
  border-radius: 10px;
  background: #dcf6ef;
  color: #145b42;
  font-weight: 700;
}

footer {
  background: #08283b;
  color: #eaf6fa;
  padding: 2rem 0;
  margin-top: 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.1rem;
}

.footer-title {
  color: #fff;
  margin: 0 0 0.5rem;
}

.muted-light {
  color: #cae0e8;
}

.cta-strip {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #0f4c81, #0c8a8a);
  color: #fff;
}

.cta-strip p {
  color: #e9f9f9;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.65s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal:nth-child(3) {
  animation-delay: 0.16s;
}

.reveal:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  nav ul {
    position: static;
    display: flex;
    gap: 0.2rem;
    background: transparent;
    border: 0;
  }

  nav li a {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
  }

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

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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