/*
Theme Name: Wash Whiz Cleaning
Theme URI: https://washwhiz.ca
Author: Wash Whiz
Author URI: https://washwhiz.ca
Description: Professional Home & Commercial Cleaning Services WordPress Theme for Wash Whiz Canada
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: washwhiz
Tags: cleaning, business, services, responsive, bootstrap
*/

/* =========================================================
   WASH WHIZ – CUSTOM THEME STYLES
   ========================================================= */

:root {
  --navy:       #1C3254;
  --navy-dark:  #142440;
  --yellow:     #f7a927;
  --yellow-dk:  #e09518;
  --white:      #ffffff;
  --offwhite:   #F5F8FF;
  --light-blue: #EEF3FB;
  --muted:      #6B7280;
  --border:     #D8E3F0;
  --shadow:     0 4px 24px rgba(28,50,84,0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #1a2b42;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

a { text-decoration: none; }

/* ── TOP INFO BAR ── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar a { color: rgba(255,255,255,0.85); transition: color .2s; }
.topbar a:hover { color: var(--yellow); }
.topbar i { color: var(--yellow); margin-right: 4px; }

/* ── NAVBAR ── */
.main-nav {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 4px 20px rgba(28,50,84,0.25);
}
.navbar-brand img {
  height: 62px;
  border-radius: 8px;
  transition: opacity .2s;
}
.main-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 24px 14px !important;
  position: relative;
  transition: color .2s;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--yellow) !important; }
.main-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px 2px 0 0;
}
.dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(28,50,84,0.18);
  padding: 8px;
  margin-top: 4px;
}
.dropdown-item {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 6px;
  color: var(--navy);
  transition: background .15s;
}
.dropdown-item:hover { background: var(--light-blue); color: var(--navy-dark); }

.btn-yellow {
  background: var(--yellow);
  border: none;
  color: #1a1200;
  font-weight: 700;
  border-radius: 7px;
  padding: 11px 24px;
  font-size: 0.9rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.btn-yellow:hover {
  background: var(--yellow-dk);
  color: #1a1200;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(247,169,39,0.35);
}
.btn-phone-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background .2s;
}
.btn-phone-icon:hover { background: rgba(255,255,255,0.2); color: #fff; }
.navbar-toggler {
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 7px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.85%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(28,50,84,0.88) 0%, rgba(28,50,84,0.72) 55%, rgba(28,50,84,0.40) 100%);
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.hero-form-card {
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(28,50,84,0.3);
}
.hero-form-card h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.hero-form-card .form-control,
.hero-form-card .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--navy);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  margin-bottom: 0;
}
.hero-form-card .form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,50,84,0.1);
  outline: none;
}
.check-row { color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 600; }
.check-row i { color: var(--yellow); }
.hero-headline h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 18px;
  color: #fff;
}
.hero-headline h1 span { color: var(--yellow); }
.hero-headline p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
}
.feature-box { text-align: center; padding: 10px 20px; }
.feature-icon-wrap {
  width: 70px; height: 70px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(28,50,84,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: transform .2s, box-shadow .2s;
}
.feature-box:hover .feature-icon-wrap {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28,50,84,0.16);
}
.feature-icon-wrap img { height: 36px; }
.feature-box h3 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--navy); margin: 0; }
.feature-box p { font-size: 0.8rem; color: var(--muted); margin: 4px 0 0; }

/* ── ABOUT ── */
.about-section { padding: 90px 0; }
.about-img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-dk);
  margin-bottom: 10px;
  display: block;
}
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--navy); line-height: 1.15; margin-bottom: 18px; }
.about-check-list { list-style: none; padding: 0; margin: 0 0 24px; }
.about-check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: #374151; margin-bottom: 10px; }
.about-check-list li i { color: var(--yellow-dk); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ── SERVICES ── */
.services-section {
  padding: 90px 0;
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(28,50,84,0.15); }
.service-card-img { aspect-ratio: 16/10; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 22px 22px 26px; }
.service-card-body h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card-body p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; margin: 0; }
.service-tag {
  display: inline-block;
  background: var(--light-blue);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
  margin-bottom: 10px;
}

/* ── PROMO STRIP ── */
.promo-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #0e2a4a 100%);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,169,39,0.15);
  border: 1px solid rgba(247,169,39,0.3);
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

/* ── CHECKLIST ── */
.checklist-section { padding: 80px 0; }
.nav-pills-custom { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; list-style: none; padding: 0; margin: 0 0 40px; }
.nav-pills-custom .nav-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 24px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all .2s;
  cursor: pointer;
}
.nav-pills-custom .nav-link.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.checklist-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.checklist-col ul { list-style: none; padding: 0; margin: 0; }
.checklist-col li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: #374151;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.checklist-col li:last-child { border-bottom: none; }
.checklist-col li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow-dk);
  flex-shrink: 0;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--light-blue);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s;
  cursor: pointer;
}
.btn-navy:hover { background: var(--navy-dark); color: #fff; transform: translateY(-1px); }

/* ── FAQ ── */
.faq-section { padding: 80px 0; background: var(--offwhite); }
.accordion-item { border: 1px solid var(--border) !important; border-radius: 10px !important; margin-bottom: 10px; overflow: hidden; }
.accordion-button { font-weight: 600; font-size: 0.92rem; color: var(--navy); background: #fff; border-radius: 10px !important; }
.accordion-button:not(.collapsed) { color: var(--navy); background: var(--light-blue); box-shadow: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-body { font-size: 0.9rem; color: var(--muted); line-height: 1.75; background: #fff; }

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); padding: 70px 0 0; color: rgba(255,255,255,0.65); }
.site-footer img.footer-logo { height: 60px; border-radius: 8px; margin-bottom: 14px; }
.site-footer h5 { color: #fff; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-family: 'Inter', sans-serif; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color .2s; display: flex; align-items: center; gap: 7px; }
.site-footer ul a:hover { color: var(--yellow); }
.site-footer ul a i { font-size: 0.8rem; color: var(--yellow); }
.footer-contact p { font-size: 0.88rem; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: rgba(255,255,255,0.65); }
.footer-contact p i { color: var(--yellow); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.7); transition: color .2s; }
.footer-contact a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 50px; padding: 20px 0; font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.social-icons a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  transition: all .2s;
  margin-right: 6px;
}
.social-icons a:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(247,169,39,0.1); }

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 9999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform .2s;
}
.whatsapp-fab:hover { color: #fff; transform: scale(1.12); animation: none; box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
.whatsapp-fab .wa-tip {
  position: absolute;
  right: 68px;
  background: var(--navy-dark);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 7px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.whatsapp-fab .wa-tip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-dark);
}
.whatsapp-fab:hover .wa-tip { opacity: 1; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .main-nav .nav-link { padding: 12px 16px !important; }
  .main-nav .nav-link.active::after { display: none; }
}
@media (max-width: 767.98px) {
  .hero { min-height: auto; padding: 50px 0 60px; }
  .about-section, .services-section, .checklist-section, .faq-section { padding: 60px 0; }
  .hero-headline { margin-bottom: 36px; }
}
@media (max-width: 575.98px) {
  .whatsapp-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.45rem; }
}

/* ── WP ADMIN BAR FIX ── */
.admin-bar .main-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .main-nav { top: 46px; }
}
