/*
Theme Name: ProTech Cleaning
Theme URI: https://websiteasap.com.au
Description: Professional cleaning business theme for WebsiteASAP
Author: WebsiteASAP
Version: 1.0
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a4a8a;
  --primary-dark: #0d2f5e;
  --primary-light: #2563b0;
  --accent: #38bdf8;
  --text: #2c2c2c;
  --text-light: #666;
  --bg-light: #f0f7ff;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --radius: 10px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.7; background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; }

.container { width: 92%; max-width: 1200px; margin: 0 auto; }
section { padding: 80px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); }
.btn-primary:hover { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--primary-dark); }
.btn-green { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-green:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px; font-weight: 800;
}
.logo-text { font-size: 1.2rem; font-weight: 700; color: var(--primary-dark); line-height: 1.2; }
.logo-text span { display: block; font-size: 0.75rem; font-weight: 400; color: var(--text-light); }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a { font-size: 0.95rem; font-weight: 500; color: var(--text); transition: color 0.2s; }
.site-nav a:hover { color: var(--primary); }
.nav-cta { padding: 10px 22px; background: var(--primary); color: white; border-radius: 50px; font-size: 0.9rem; font-weight: 600; transition: background 0.2s; }
.nav-cta:hover { background: var(--primary-dark); color: white; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: all 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,47,94,0.92) 0%, rgba(26,74,138,0.80) 60%, rgba(0,0,0,0.50) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 680px;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,192,64,0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}
.hero-content h1 em { color: var(--accent); font-style: normal; }
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.stat { text-align: center; }
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 2px; }
.hero-image-aside {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  z-index: 2;
  display: none;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
#trust-bar {
  background: var(--primary-dark);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-icon { color: var(--accent); font-size: 1.1rem; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--text); margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.service-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.service-body { padding: 24px; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.service-body h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--primary-dark); }
.service-body p { font-size: 0.93rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 16px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--primary);
  color: white;
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-number { font-size: 2rem; font-weight: 800; color: var(--accent); }
.badge-text { font-size: 0.8rem; color: rgba(255,255,255,0.85); }
.about-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; color: var(--primary-dark); }
.about-content p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.about-points { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.about-point {
  display: flex; align-items: flex-start; gap: 12px;
}
.point-check {
  width: 24px; height: 24px; min-width: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.75rem; margin-top: 2px;
}
.point-text { font-size: 0.95rem; color: var(--text); }

/* ============================================================
   WHY US
   ============================================================ */
#why-us {
  background: var(--primary);
  color: white;
}
#why-us .section-header h2 { color: white; }
#why-us .section-header p { color: rgba(255,255,255,0.75); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.14); }
.why-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 1.1rem; color: var(--accent); margin-bottom: 10px; }
.why-card p { font-size: 0.93rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--bg-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
}
.author-name { font-weight: 600; font-size: 0.95rem; }
.author-location { font-size: 0.8rem; color: var(--text-light); }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  background: var(--primary-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1527515545081-5db817172677?w=1600&q=60') center/cover;
  opacity: 0.12;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: white; margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #111;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: white; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.5); }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 12px; line-height: 1.7; }
.footer-col h4 { color: white; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 20px; box-shadow: var(--shadow); gap: 16px; }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge { right: 10px; bottom: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { padding: 100px 0 60px; }
  .trust-items { gap: 20px; }
}
