/* ==========================================================================
   ProClean Home Services — homepage styles
   Layout/structure cloned from tappt.com.au; colors/copy are ProClean's own.
   ========================================================================== */

:root {
  --navy: #0f2a43;
  --navy-dark: #0a1d30;
  --blue: #1f6fd6;
  --blue-light: #eaf3fc;
  --gold: #f5a623;
  --text: #29323c;
  --muted: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 10px;
  --max-width: 1180px;
  --shadow: 0 10px 30px rgba(15, 42, 67, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
h1, h2, h3 { font-family: "Poppins", "Inter", sans-serif; margin: 0; line-height: 1.2; }
.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}
.section { padding: 72px 0; }
.section-alt { background: var(--blue-light); }
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo img { height: 56px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > ul { display: flex; gap: 26px; }
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  position: relative;
}
.main-nav li.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 220px;
}
.main-nav li.has-dropdown:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 18px; font-weight: 500; }
.dropdown a:hover { background: var(--blue-light); }
.header-cta { display: flex; align-items: center; gap: 20px; }
.header-cta .phone { font-weight: 700; color: var(--navy); font-size: 15px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.9;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(15,42,67,0.85) 30%, rgba(15,42,67,0.45));
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  padding-top: 70px;
  padding-bottom: 70px;
  align-items: start;
}
.hero h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 700;
  margin-bottom: 22px;
}
.hero h1 .highlight {
  color: var(--gold);
  border-bottom: 4px solid var(--gold);
}
.badge-list { display: flex; flex-wrap: wrap; gap: 16px 28px; margin: 26px 0 34px; }
.badge-list li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; }
.badge-list li::before { content: "✔"; color: var(--gold); font-weight: 900; }
.hero-actions { display: flex; align-items: center; gap: 20px; }
.hero-actions .call-link { font-weight: 700; font-size: 16px; }

/* Quote form card */
.quote-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.quote-card h2 {
  font-size: 20px;
  text-align: center;
  color: var(--navy);
  margin-bottom: 18px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}
.form-grid textarea { resize: vertical; min-height: 70px; }
.quote-card .btn { margin-top: 6px; }
.hp-field { display: none; }
.form-message {
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
.form-message.success { color: #1a7f37; }
.form-message.error { color: #b42318; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--navy-dark); color: var(--white); padding: 32px 0; }
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-bar .item .num { font-size: 22px; font-weight: 800; color: var(--gold); display: block; }
.trust-bar .item .label { font-size: 14px; color: #cbd5e1; }

/* ---------- Testimonials ---------- */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; }
.reviews-summary .count { color: var(--muted); font-size: 14px; }
.review-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.review-card .stars { font-size: 14px; margin-bottom: 10px; display: block; }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-head img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review-head .name { font-weight: 700; font-size: 14px; }
.review-head .date { font-size: 12px; color: var(--muted); }
.review-card p { font-size: 13.5px; color: var(--text); margin: 0; }
.reviews-attribution {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}

/* ---------- Services ---------- */
.service-group { margin-bottom: 46px; }
.service-group h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
  margin-bottom: 22px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  box-shadow: var(--shadow);
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,29,48,0.85), rgba(10,29,48,0.1));
}
.service-card span {
  position: relative;
  z-index: 1;
  padding: 20px;
  font-size: 19px;
  font-weight: 700;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.gallery-grid img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

/* ---------- Second CTA ---------- */
.cta-section { background: var(--blue); color: var(--white); }
.cta-section .section-title { color: var(--white); }
.cta-section .quote-card { max-width: 640px; margin: 0 auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #cbd5e1; padding: 60px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-top .logo img { height: 46px; margin-bottom: 14px; background: var(--white); border-radius: 4px; }
.footer-top p { font-size: 13.5px; color: #94a3b8; }
.footer-top h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-top ul li { margin-bottom: 10px; font-size: 14px; }
.footer-top ul a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.footer-bottom {
  text-align: center;
  font-size: 12.5px;
  color: #64748b;
  padding: 22px 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .hero .container { grid-template-columns: 1fr; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .review-track { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .review-track { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
