/*
Theme Name: Veritas Cleaners
Theme URI: https://veritascleaners.com
Author: Copilot
Description: Modern WordPress theme for Veritas Cleaners.
Version: 1.0
Text Domain: veritas-cleaners
*/

:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef3f8;
  --text: #14213d;
  --muted: #5e6a82;
  --primary: #2f7d6f;
  --primary-dark: #21594a;
  --accent: #7ec8b5;
  --border: #dce7ee;
  --shadow: 0 18px 40px rgba(20, 33, 61, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(245, 247, 251, 0.86);
  border-bottom: 1px solid rgba(220, 231, 238, 0.8);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 52px;
  height: 52px;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  color: var(--muted);
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.split-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.8rem;
}

.hero-copy,
.page-hero p,
.section p,
.info-panel p,
.card p,
.site-footer p,
.site-footer li {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.6rem 0;
}

.hero > .container > div:first-child {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border-color: var(--border);
  background: var(--surface);
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  color: var(--muted);
}

.hero-highlights li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.4rem;
}

.hero-card,
.info-panel,
.card,
.testimonial-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1rem;
}

.section {
  padding: 2.8rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(126, 200, 181, 0.12), rgba(255,255,255,0.3));
}

.section-heading {
  margin-bottom: 1.5rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 1.4rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.card a {
  color: var(--primary);
  font-weight: 600;
}

.info-panel {
  padding: 1.5rem;
}

.check-list {
  padding-left: 1.1rem;
  color: var(--muted);
}

.testimonial-block {
  padding: 2rem;
  text-align: center;
}

blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
}

.quote-author {
  margin-top: 0.7rem;
  color: var(--primary);
  font-weight: 600;
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form-message {
  min-height: 1.2em;
  color: var(--primary);
  font-weight: 600;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(220, 231, 238, 0.8);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.brand-footer {
  margin-bottom: 0.7rem;
}

@media (max-width: 800px) {
  .site-nav {
    position: absolute;
    top: 76px;
    right: 1rem;
    flex-direction: column;
    background: var(--surface);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }

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

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

  .hero-grid,
  .split-grid,
  .footer-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }
}
