/* ===========================================================
   Roxiada Cleaning Services
   Palette derived from custom_background.svg
   Base line-art colour: #0f818f (teal)
   =========================================================== */
:root {
  --teal-darkest: #062f35;
  --teal-dark: #0a5a64;
  --teal-base: #0f818f;
  --teal-light: #4fb0bc;
  --teal-lightest: #dceef0;

  --ink: #10252a;
  --muted: #4a6a6f;
  --line: rgba(15, 129, 143, 0.16);

  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  /* Frosted-glass panel surface */
  --panel-bg: rgba(255, 255, 255, 0.72);
  --panel-border: rgba(255, 255, 255, 0.6);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 16px rgba(6, 47, 53, 0.08);
  --shadow-md: 0 18px 44px rgba(6, 47, 53, 0.14);
  --maxw: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background-color: #f7fbfc;
}

/* ---- The "cool effect": line-art stays fixed and highly visible,
   while content floats above it on frosted-glass panels. ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("custom_background.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: -2;
  pointer-events: none;
}
/* Gentle top-to-bottom fade of the page base so panels read cleanly,
   without putting any colour cast over the line art itself. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(247, 251, 252, 0.85) 0%,
    rgba(247, 251, 252, 0.35) 30%,
    rgba(247, 251, 252, 0.15) 60%,
    rgba(247, 251, 252, 0.55) 100%);
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  letter-spacing: -0.01em;
  color: var(--teal-darkest);
  line-height: 1.2;
}

a { color: var(--teal-dark); }

/* ---- Shared frosted panel ---- */
.panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
  backdrop-filter: blur(10px) saturate(115%);
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.1; }
.brand-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--teal-darkest);
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-base);
  font-weight: 600;
}

.site-nav { display: flex; align-items: center; gap: 0.35rem; }
.site-nav a {
  text-decoration: none;
  color: var(--teal-darkest);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-nav a:hover { background: var(--teal-lightest); }
.nav-call {
  border: 1.5px solid var(--teal-base);
}
.nav-cta { background: var(--teal-base); color: #fff !important; }
.nav-cta:hover { background: var(--teal-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: var(--teal-darkest);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ============ Layout helpers ============ */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2rem);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 0 0 0.6rem; }
.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }

/* ============ Hero ============ */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 5vw, 4rem);
  display: flex;
  justify-content: flex-start;
}
.hero-panel {
  max-width: 720px;
  padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backdrop-filter: blur(12px) saturate(120%);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-base);
  margin: 0 0 0.9rem;
}
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); margin: 0 0 0.75rem; }
.hero-motto {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  font-style: italic;
  font-weight: 500;
  color: var(--teal-base);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin: 0 0 1rem;
}
.lede { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--muted); margin: 0 0 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1.05rem; }
.btn-block { width: 100%; margin-top: 1rem; }
.btn-primary { background: var(--teal-base); color: #fff; box-shadow: 0 8px 20px rgba(15, 129, 143, 0.28); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-outline { background: rgba(255,255,255,0.6); color: var(--teal-dark); border-color: var(--teal-base); }
.btn-outline:hover { background: var(--teal-lightest); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.wa-icon { font-size: 1.1rem; transform: rotate(-15deg); }

/* ============ Services ============ */
.service { padding: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 1.75rem; }
.service-head { margin-bottom: 1.5rem; }
.service-head h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 0 0 0.5rem; }
.service-head p { color: var(--muted); margin: 0; max-width: 60ch; }

.service-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.service-detail h4 { font-size: 1rem; margin: 0 0 0.75rem; color: var(--teal-dark); }
.service-detail h4:not(:first-child) { margin-top: 1.5rem; }

.ticks { list-style: none; padding: 0; margin: 0; }
.ticks li { position: relative; padding-left: 1.75rem; margin-bottom: 0.5rem; color: var(--ink); }
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  background: var(--teal-base);
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticks.cols { columns: 2; column-gap: 1.5rem; }
.ticks.cols li { break-inside: avoid; }

.extras { list-style: none; padding: 0; margin: 0; }
.extras li, .price-table li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
}
.note-inline {
  margin: 1.25rem 0 0;
  padding: 0.85rem 1rem;
  background: rgba(15, 129, 143, 0.06);
  border-left: 3px solid var(--teal-base);
  border-radius: 0 8px 8px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Price table card */
.price-table {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}
.price-table h4 { margin: 0 0 0.75rem; font-size: 1.05rem; color: var(--teal-dark); }
.price-table ul { list-style: none; padding: 0; margin: 0; }
.price-table li:last-of-type { border-bottom: none; }
.from { font-weight: 700; color: var(--teal-base); white-space: nowrap; }
.quote-row .from { color: var(--teal-dark); }

/* ============ Meet Roxi & Ada ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: stretch;
}
.about-copy { padding: clamp(1.5rem, 4vw, 2.5rem); }
.about-copy p { margin: 0 0 1.25rem; color: var(--ink); }
.about-points { list-style: none; padding: 0; margin: 0; }
.about-points li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--teal-darkest);
}
.about-points li:last-child { margin-bottom: 0; }
.about-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #fff;
  background: var(--teal-base);
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo { margin: 0; padding: 0.75rem; }
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--teal-base), var(--teal-dark));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
}
.about-photo-initials {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0.02em;
}
.about-photo-caption {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
}

/* ============ Standard of Care ============ */
.standard-care {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-left: 4px solid var(--teal-base);
  text-align: center;
}
.standard-care h2 { font-size: clamp(1.6rem, 3.5vw, 2.1rem); margin: 0 0 1rem; }
.standard-care p { margin: 0; color: var(--muted); font-size: 1.05rem; }

/* ============ Promise band (fast quote + referral) ============ */
.promise-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.promise-card { padding: clamp(1.5rem, 4vw, 2.25rem); }
.promise-card h3 { font-size: 1.3rem; margin: 0 0 0.75rem; }
.promise-card p { margin: 0 0 1.25rem; color: var(--muted); }
.promise-card .btn { margin-top: auto; }

/* ============ Why Choose Us ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.why-card { padding: 1.5rem 1.6rem; }
.why-card h3 { font-size: 1.15rem; margin: 0 0 0.5rem; }
.why-card p { margin: 0; color: var(--muted); }

/* ============ Quote form ============ */
.quote-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.quote-form { padding: clamp(1.5rem, 4vw, 2.25rem); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; display: flex; flex-direction: column; }
.field label { font-weight: 600; margin-bottom: 0.35rem; color: var(--teal-darkest); font-size: 0.95rem; }
.optional { font-weight: 400; color: var(--muted); }
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(15, 129, 143, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  resize: vertical;
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-base);
  box-shadow: 0 0 0 3px rgba(79, 176, 188, 0.35);
}
.field input[type="file"] { padding: 0.5rem; background: rgba(255,255,255,0.6); }
.hint { font-size: 0.85rem; color: var(--muted); margin: 0.4rem 0 0; }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }

.quote-aside { padding: clamp(1.5rem, 4vw, 2.25rem); }
.quote-aside h3 { margin: 0 0 0.5rem; }
.quote-aside > p { color: var(--muted); margin: 0 0 1.25rem; }
.contact-line {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-line strong { color: var(--teal-base); margin-right: 0.5rem; }
.coverage { margin-top: 1.25rem; }
.coverage h4 { margin: 0 0 0.35rem; color: var(--teal-dark); }
.coverage p { margin: 0; color: var(--muted); }

.disclaimer {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

/* ============ Footer ============ */
.site-footer {
  margin-top: 2rem;
  background: var(--teal-darkest);
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2.5rem) 1.5rem;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem;
}
.footer-inner p, .footer-inner a { color: rgba(255, 255, 255, 0.82); }
.footer-inner a { display: block; text-decoration: none; padding: 0.25rem 0; }
.footer-inner a:hover { color: #fff; }
.footer-brand { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.4rem; color: #fff; margin: 0 0 0.2rem; }
.footer-motto { font-style: italic; color: var(--teal-light) !important; margin: 0 0 0.6rem; }
.footer-heading { font-weight: 700; color: #fff; margin: 0 0 0.5rem; }
.copyright {
  max-width: var(--maxw);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* ============ Floating contact buttons ============ */
.floating-contact {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 60;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease;
}
.fab:hover { transform: scale(1.08); }
.fab-whatsapp { background: var(--whatsapp); }
.fab-call { background: var(--teal-base); }

/* ============ Responsive ============ */
@media (max-width: 860px) {
  .service-body { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .promise-band { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem clamp(1rem, 4vw, 2.5rem) 1.25rem;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.8rem 0.85rem; }
  .nav-cta, .nav-call { text-align: center; }
  .grid-2 { grid-template-columns: 1fr; }
  .ticks.cols { columns: 1; }
  body::before { background-size: contain; background-position: center center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .fab { transition: none; }
}
