/* Sydney Gutter & Window Cleaners — House Washing Sydney | custom.css */
/* Colour scheme: Dark Navy #1B2D42 + Lime Yellow #D4FF00 (matches gutter funnel) */

/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  --primary: #1B2D42;        /* Dark navy — matches gutter funnel */
  --primary-dark: #142235;
  --primary-darker: #0C1A2A;
  --teal-mid: #243D58;       /* Mid navy for gradients */
  --yellow: #D4FF00;         /* Lime yellow — matches gutter funnel */
  --yellow-dark: #BFEA00;
  --yellow-glow: rgba(212,255,0,0.35);
  --green: #28A745;
  --green-light: #4ADE80;
  --red: #EF4444;
  --bg-light: #F4F6F8;
  --bg-white: #FFFFFF;
  --text-dark: #1A2B3C;
  --text-muted: #5A6E7F;
  --text-light: #94A3B8;
  --border: #DDE4EA;
  --shadow-sm: 0 2px 10px rgba(27,45,66,0.07);
  --shadow-md: 0 6px 24px rgba(27,45,66,0.10);
  --shadow-lg: 0 12px 48px rgba(27,45,66,0.14);
  --shadow-yellow: 0 8px 30px rgba(212,255,0,0.3);
}

/* ===========================
   Base
   =========================== */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   Top Contact Bar
   =========================== */
.contact-bar {
  background: rgba(12, 26, 42, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(212,255,0,0.12);
  position: relative;
  z-index: 60;
}
.contact-bar a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-bar a:hover { color: var(--yellow); }

/* ===========================
   Navigation
   =========================== */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* ===========================
   Hero — Background Image with dark overlay
   Replace images/house-hero.jpg with your solar/roof photo
   =========================== */
.hero-gradient {
  background:
    linear-gradient(rgba(12, 26, 42, 0.55), rgba(12, 26, 42, 0.68)),
    url('../images/house-hero.jpg') center / cover no-repeat;
}

/* ===========================
   Buttons — Lime Yellow CTA to match gutter funnel
   =========================== */
.btn-primary {
  background: var(--yellow);
  color: #000000;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
  color: #000000;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 700;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-yellow-outline {
  background: transparent;
  color: var(--yellow);
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 700;
  border: 2px solid var(--yellow);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-yellow-outline:hover {
  background: var(--yellow);
  color: #000;
  transform: translateY(-2px);
}

/* ===========================
   Trust Strip
   =========================== */
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.trust-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ===========================
   Hero Trust Badges (below form)
   =========================== */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 14px;
}
.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
}
.hero-trust-badge svg {
  flex-shrink: 0;
  color: var(--yellow);
}

/* ===========================
   Video Section
   =========================== */
.video-section {
  background: linear-gradient(160deg, #1B2D42 0%, #0C1A2A 100%);
}
.video-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  aspect-ratio: 16 / 9;
}
.video-wrapper iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}
/* Lime yellow accent ring around video */
.video-ring {
  border-radius: 24px;
  padding: 4px;
  background: linear-gradient(135deg, var(--yellow), transparent 60%);
}

/* ===========================
   Reviews Widget
   =========================== */
.reviews-section {
  background: var(--bg-light);
}
.lc_reviews_widget {
  border-radius: 16px !important;
  overflow: hidden;
}

/* ===========================
   Modern Benefit Cards
   =========================== */
.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(27,45,66,0.14);
}
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.6rem;
}
.benefit-icon.teal   { background: rgba(27,45,66,0.08); }
.benefit-icon.green  { background: rgba(40,167,69,0.09); }
.benefit-icon.yellow { background: rgba(212,255,0,0.15); }
.benefit-icon.blue   { background: rgba(27,45,66,0.06); }
.benefit-icon.orange { background: rgba(249,115,22,0.09); }

/* ===========================
   Away / Towards Cards
   =========================== */
.away-card {
  background: linear-gradient(135deg, #FEF2F2 0%, #FFF7ED 100%);
  border-left: 5px solid var(--red);
  border-radius: 20px;
  padding: 36px 32px;
}
.towards-card {
  background: linear-gradient(135deg, #EFF8FF 0%, #F0FDF4 100%);
  border-left: 5px solid var(--primary);
  border-radius: 20px;
  padding: 36px 32px;
}
.away-card li, .towards-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.97rem;
  color: var(--text-dark);
}
.away-card li:last-child, .towards-card li:last-child { border-bottom: none; }

/* ===========================
   Pricing Cards — Dark style (matches gutter funnel)
   =========================== */
.pricing-card {
  background: #1A2A3D;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(255,255,255,0.07);
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(212,255,0,0.15), var(--shadow-lg);
}
.pricing-card-header {
  padding: 36px 32px 28px;
  text-align: center;
}
.pricing-card-header.teal-bg {
  background: #142235;
  color: white;
}
.pricing-card-header.mid-bg {
  background: #0C1A2A;
  color: white;
}
.pricing-card-header.dark-bg {
  background: linear-gradient(160deg, #0C1A2A 0%, #060E18 100%);
  color: white;
}
.pricing-price {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--yellow);
}
.pricing-body { padding: 28px 32px; }
.pricing-body ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.pricing-body ul li:last-child { border-bottom: none; }

/* ===========================
   Modern Step / Process Cards
   =========================== */
.step-card {
  background: white;
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.step-number {
  width: 64px; height: 64px;
  background: var(--yellow);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 auto 22px;
  box-shadow: 0 4px 20px rgba(212,255,0,0.4);
}
.step-connector {
  position: absolute;
  top: 56px; right: -22px;
  width: 44px; height: 2px;
  background: var(--yellow);
  opacity: 0.5;
  z-index: 1;
}

/* ===========================
   Modern Testimonial Cards
   =========================== */
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card:hover::after { transform: scaleX(1); }
.quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: var(--yellow);
  font-weight: 900;
  margin-bottom: -16px;
  display: block;
  font-family: Georgia, serif;
}
.modern-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
  position: relative;
}
.verified-badge {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 16px; height: 16px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: #000;
  font-weight: 900;
  border: 2px solid white;
}

/* ===========================
   Before/After
   =========================== */
.before-after-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.before-after-label {
  position: absolute;
  top: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.65);
  color: white;
  padding: 5px 12px 5px 8px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
}

/* ===========================
   Quote Form / Hero Form
   =========================== */
.quote-form {
  background: #1E2D3F;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.30);
  border: 1px solid rgba(212,255,0,0.12);
}
.form-field {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #FAFCFF;
  outline: none;
  margin-bottom: 12px;
}
.form-field:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(212,255,0,0.15);
  background: white;
}
.form-field::placeholder { color: var(--text-light); }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--yellow);
  color: #000;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.form-submit:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}
.form-privacy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-top: 10px;
}
.form-privacy a { color: var(--yellow); }

/* ===========================
   GHL / Form Section
   =========================== */
.form-section {
  background: linear-gradient(135deg, #EEF2F5 0%, #F4F6F8 50%, #F8F9FA 100%);
}
.ghl-form-wrapper {
  min-height: 539px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ghl-form-wrapper iframe {
  width: 100%; height: 539px;
  border: none; display: block;
}

/* ===========================
   Urgency / Promo Banner
   =========================== */
.promo-banner {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.promo-banner a { color: var(--yellow); }
.promo-banner strong { color: var(--yellow); }

/* ===========================
   Section Labels
   =========================== */
.section-label {
  display: inline-block;
  background: rgba(27,45,66,0.08);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-label-light {
  display: inline-block;
  background: rgba(212,255,0,0.2);
  color: var(--yellow);
  padding: 6px 18px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

/* ===========================
   Suburb Tags
   =========================== */
.suburb-tag {
  display: inline-block;
  background: rgba(27,45,66,0.06);
  color: var(--primary);
  border: 1px solid rgba(27,45,66,0.15);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.87rem;
  font-weight: 500;
  margin: 4px;
  transition: all 0.2s ease;
}
.suburb-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===========================
   Check List
   =========================== */
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 1.1em;
}

/* ===========================
   Floating CTA
   =========================== */
.floating-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 100;
  animation: pulse-glow 2.5s ease-in-out infinite;
  border-radius: 9999px;
  text-decoration: none;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,255,0,0.4); }
  50%       { box-shadow: 0 4px 40px rgba(212,255,0,0.7); }
}

/* ===========================
   Mobile Menu
   =========================== */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  background: #ffffff !important;  /* solid white */
  z-index: 9999 !important;
}
.mobile-menu.open { transform: translateX(0); }

/* Backdrop — dims page behind the open menu */
.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9998;
  cursor: pointer;
}
.menu-backdrop.open { display: block; }

/* ===========================
   Scroll Fade-In
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in[data-delay="1"] { transition-delay: 0.1s; }
.fade-in[data-delay="2"] { transition-delay: 0.2s; }
.fade-in[data-delay="3"] { transition-delay: 0.3s; }
.fade-in[data-delay="4"] { transition-delay: 0.4s; }

/* ===========================
   FAQ Accordion
   =========================== */
.faq-item {
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(27,45,66,0.10);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 18px rgba(27,45,66,0.10);
}
.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}
.faq-toggle:hover { color: var(--primary); }
.faq-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s ease;
}
.faq-icon.rotate-180 { transform: rotate(180deg); }
.faq-content {
  padding: 0 24px 20px;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid rgba(27,45,66,0.06);
  padding-top: 16px;
}
.faq-content.hidden { display: none; }

/* ===========================
   Footer — Simple
   =========================== */
footer { background: var(--primary-darker); }
footer a:hover { color: var(--yellow) !important; }
.footer-divider { border-color: rgba(255,255,255,0.08); }

/* ===========================
   Utility
   =========================== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.text-teal { color: var(--primary); }
.text-yellow { color: var(--yellow); }
.bg-teal { background: var(--primary); }
.bg-yellow { background: var(--yellow); }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) { .step-connector { display: none; } }
@media (max-width: 768px) {
  .stat-number { font-size: 2rem; }
  .quote-form  { padding: 22px 18px; }
  .pricing-price { font-size: 2.1rem; }
  .hero-gradient { padding-top: 110px; }
  .ghl-form-wrapper iframe { height: 650px; }
  .floating-cta { bottom: 16px; right: 14px; }
  .away-card, .towards-card { padding: 24px 18px; }
  .benefit-card { padding: 24px 18px; }
  .step-card { padding: 28px 20px; }
  .pricing-body { padding: 20px; }
}
@media (max-width: 480px) {
  .btn-primary, .btn-secondary { padding: 12px 22px; font-size: 0.95rem; }
  .testimonial-card { padding: 22px 18px; }
}
