/* Victoria Cleaner Services — desert palette pulled from the brand logo */
:root {
  --navy: #16305c;
  --navy-dark: #0d1f3d;
  --gold: #caa14b;
  --gold-light: #e8c97a;
  --sky: #3f92d2;
  --terracotta: #c1663c;
  --cream: #faf6ee;
  --sand: #f0e6d2;
  --ink: #22314a;
  --gray: #5c6a7f;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(22, 48, 92, 0.12);
  --max-width: 1140px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', serif; color: var(--navy); line-height: 1.2; margin: 0 0 0.6em; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--gray); }
a { color: var(--sky); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { padding-left: 1.2em; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
  padding: 10px 16px; z-index: 1000;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky; top: 0; z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-logo { width: 46px; height: 46px; border-radius: 50%; }
.brand-name { font-family: Georgia, serif; font-weight: 700; color: var(--navy); font-size: 1.15rem; line-height: 1.1; display: block; }
.brand-name-accent { display: block; font-size: 0.7rem; letter-spacing: 2px; color: var(--sky); font-weight: 600; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { color: var(--navy); font-weight: 600; font-size: 0.95rem; }
.site-nav a:hover { color: var(--sky); text-decoration: none; }
.lang-switch {
  border: 1.5px solid var(--gold); border-radius: 20px; padding: 5px 14px !important;
  color: var(--gold) !important; font-size: 0.85rem !important;
}
.lang-switch:hover { background: var(--gold); color: #fff !important; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 30px; font-weight: 700;
  border: none; cursor: pointer; font-size: 1rem; text-align: center; transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-accent { background: var(--terracotta); color: #fff; }
.btn-accent:hover { background: #a8542e; color: #fff; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 11px 26px; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy-dark); }
.btn-block { display: block; width: 100%; }
.nav-cta { padding: 10px 20px !important; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #eaf3fb 0%, var(--cream) 100%);
  padding: 70px 0 60px;
  position: relative; overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero-badge {
  display: inline-block; background: var(--sand); color: var(--terracotta); font-weight: 700;
  padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-image img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-alt { background: var(--white); }

/* ---------- Why-us grid ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 22px; box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.why-card .icon { font-size: 2rem; margin-bottom: 10px; }

/* ---------- Cards / tagged pages ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--sand); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.card-tag {
  align-self: flex-start; background: var(--sand); color: var(--navy); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 14px; margin-bottom: 10px;
}
.card-body p { flex: 1; }
.card-body .btn { align-self: flex-start; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; text-align: center; }
.cta-band h2, .cta-band p { color: #fff; }
.cta-band .container { padding: 20px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px 26px;
  text-align: center; display: flex; flex-direction: column; border: 2px solid transparent;
}
.price-card.featured { border-color: var(--gold); transform: scale(1.03); }
.price-badge { background: var(--gold); color: var(--navy-dark); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; padding: 5px 14px; border-radius: 14px; align-self: center; margin-bottom: 14px; }
.price-amount { font-family: Georgia, serif; font-size: 2.4rem; color: var(--navy); font-weight: 700; margin: 6px 0; }
.price-amount span { font-size: 1rem; color: var(--gray); font-weight: 400; }
.price-list { list-style: none; padding: 0; text-align: left; margin: 20px 0; flex: 1; }
.price-list li { padding: 8px 0; border-bottom: 1px solid var(--sand); color: var(--ink); }
.price-list li::before { content: "✓ "; color: var(--sky); font-weight: 700; }
.pricing-disclaimer { text-align: center; color: var(--gray); font-size: 0.88rem; margin-top: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 600; color: var(--navy); font-size: 0.92rem; }
input, select, textarea {
  padding: 12px 14px; border: 1.5px solid #d9d2bf; border-radius: 10px; font-size: 1rem; font-family: inherit;
  background: var(--white); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(63,146,210,0.15); }
textarea { resize: vertical; min-height: 120px; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px;
}
.direct-contact-list { list-style: none; padding: 0; margin: 20px 0; }
.direct-contact-list li { margin-bottom: 14px; }
.direct-contact-list a { font-weight: 600; font-size: 1.05rem; color: var(--navy); }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; }
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 22px; font-weight: 600; }
.alert-success { background: #e5f5ec; color: #1e7a46; border: 1px solid #b7e3c8; }
.alert-error { background: #fbe9e6; color: var(--terracotta); border: 1px solid #f0c3b3; }

/* ---------- Page (CMS) template ---------- */
.page-hero { background: var(--white); padding: 50px 0 20px; border-bottom: 4px solid var(--sand); }
.page-hero .card-tag { margin-bottom: 14px; }
.page-featured-img { border-radius: var(--radius); overflow: hidden; margin: 30px 0; box-shadow: var(--shadow); aspect-ratio: 16/7; }
.page-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.page-body { max-width: 780px; margin: 0 auto; }
.page-body h2 { margin-top: 1.4em; }
.breadcrumbs { font-size: 0.85rem; color: var(--gray); margin-bottom: 10px; }
.breadcrumbs a { color: var(--gray); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #cbd6e8; padding-top: 50px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.site-footer h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.site-footer p { color: #a9b6cc; }
.site-footer .brand-name, .site-footer .brand-name-accent { color: #fff; }
.footer-links, .footer-contact { list-style: none; padding: 0; }
.footer-links li, .footer-contact li { margin-bottom: 10px; }
.footer-links a, .footer-contact a { color: #cbd6e8; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.service-area { font-size: 0.88rem; color: var(--gold-light) !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; text-align: center; font-size: 0.85rem; color: #8fa0bc; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; background: #25D366; color: #fff; width: 58px; height: 58px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 200;
}
.whatsapp-float:hover { background: #1ebe57; }

/* ---------- 404 ---------- */
.not-found { text-align: center; padding: 100px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner, .contact-wrap { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column;
    align-items: flex-start; padding: 16px 20px 24px; gap: 14px; box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    display: none;
  }
  .site-nav.open { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
}
