/* ============================================================
   Cleaners & Co. — Shared Stylesheet
   Colors: White #FFFFFF | Black #1a1a1a | Gold #C9A84C | Dark #1a1a1a
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  color: #1a1a1a;
  background: #1a1a1a;
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Color Utilities ---- */
.text-green  { color: #1a1a1a; }
.text-gold   { color: #C9A84C; }
.text-white  { color: #ffffff; }
.text-dark   { color: #1a1a1a; }
.bg-green    { background: #1a1a1a; }
.bg-gold     { background: #C9A84C; }
.bg-white    { background: #ffffff; }
.bg-light    { background: #f7f9f7; }
.bg-dark     { background: #1a1a1a; }

/* ---- Container ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-green {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}
.btn-green:hover { background: #333333; border-color: #333333; }

.btn-gold {
  background: #C9A84C;
  color: #ffffff;
  border-color: #C9A84C;
}
.btn-gold:hover { background: #b8943e; border-color: #b8943e; }

.btn-outline {
  background: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
}
.btn-outline:hover { background: #1a1a1a; color: #ffffff; }

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn-outline-white:hover { background: #ffffff; color: #1a1a1a; }

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ---- Header / Nav ---- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img {
  height: 64px;
  width: auto;
  display: block;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 0.1rem; }

.main-nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  border-radius: 4px;
  transition: color 0.18s;
  white-space: nowrap;
}
.main-nav a:hover { color: #C9A84C; }
.main-nav a.active { color: #C9A84C; }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown > a::after {
  content: '▾';
  font-size: 0.75rem;
  opacity: 0.7;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #1a1a1a;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 8px;
  min-width: 220px;
  overflow: hidden;
  z-index: 999;
}
.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a !important;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}
.dropdown-menu a:hover {
  background: #f0f9f4;
  border-left-color: #1a1a1a;
  color: #1a1a1a !important;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }

/* Book Online CTA in nav */
.nav-book-btn {
  background: #C9A84C !important;
  color: #ffffff !important;
  border-radius: 6px !important;
  padding: 0.5rem 1.1rem !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-book-btn:hover { background: #b8943e !important; color: #ffffff !important; }

/* Header phone */
.header-phone {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-phone a { color: #C9A84C; font-weight: 700; }
.header-phone a:hover { text-decoration: underline; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #1a1a1a;
  border-top: 1px solid #eee;
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.65rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav a:hover { color: #1a1a1a; }
.mobile-nav .mobile-submenu { padding-left: 1rem; }
.mobile-nav .mobile-submenu a { font-weight: 500; font-size: 0.95rem; }
.mobile-nav .nav-book-btn {
  margin-top: 0.75rem;
  text-align: center;
  background: #C9A84C !important;
  color: #ffffff !important;
  border-radius: 6px;
  padding: 0.75rem 1rem !important;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

/* Image placeholder — replace with real photo */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #333333 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 700px;
}
.hero-content h1 { margin-bottom: 1rem; }
.hero-content p  { font-size: 1.15rem; margin-bottom: 1.75rem; opacity: 0.95; }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: #1a1a1a;
  color: #ffffff;
  padding: 0.85rem 1.5rem;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}
.trust-item {
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.trust-item .icon { font-size: 1.1rem; }

/* ---- Section Spacing ---- */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; color: #555; max-width: 620px; margin: 0 auto; }

/* ---- Cards Grid ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(42,125,79,0.12); }

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; color: #1a1a1a; }
.card p  { color: #555; font-size: 0.95rem; }
.card .card-link {
  display: inline-block;
  margin-top: 1rem;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.95rem;
}
.card .card-link:hover { text-decoration: underline; }

/* ---- Image Placeholder Divs ---- */
/* Replace with real <img> or background-image when photos are available */
.img-placeholder {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 1.5rem;
  min-height: 280px;
  background: linear-gradient(135deg, #1a1a1a, #333333);
}

/* ---- Before/After Section ---- */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.before-panel, .after-panel {
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.before-panel {
  background: linear-gradient(160deg, #6b8068 0%, #9caf9a 100%);
  position: relative;
}
.after-panel {
  background: linear-gradient(160deg, #1a1a1a 0%, #333333 100%);
}
.ba-label {
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Steps ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p  { color: #555; font-size: 0.95rem; }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}
.testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-top: 4px solid #C9A84C;
}
.stars { color: #C9A84C; font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial blockquote { font-style: italic; color: #444; margin-bottom: 1rem; }
.testimonial cite { font-size: 0.88rem; font-weight: 700; color: #1a1a1a; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  color: #ffffff;
  text-align: center;
  padding: 5rem 1.5rem;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p  { font-size: 1.05rem; opacity: 0.9; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Service Detail Page ---- */
.page-hero {
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
  color: #fff;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p  { font-size: 1.1rem; opacity: 0.9; max-width: 680px; margin: 0 auto 2rem; }

/* ---- Checklist ---- */
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  list-style: none;
}
.checklist-block h4 { color: #1a1a1a; margin-bottom: 0.75rem; border-bottom: 2px solid #f0e8c8; padding-bottom: 0.5rem; }
.checklist-block ul { list-style: none; }
.checklist-block li { padding: 0.3rem 0; font-size: 0.95rem; color: #333; display: flex; gap: 0.5rem; align-items: flex-start; }
.checklist-block li::before { content: '✓'; color: #1a1a1a; font-weight: 800; flex-shrink: 0; margin-top: 0.05rem; }

/* ---- Comparison Table ---- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.comparison-table th {
  background: #1a1a1a;
  color: #fff;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
}
.comparison-table td { padding: 0.85rem 1.25rem; border-bottom: 1px solid #eee; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: #f7faf8; }

/* ---- Upsell Banner ---- */
.upsell-banner {
  background: #f0f9f4;
  border-left: 5px solid #C9A84C;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.upsell-banner .upsell-icon { font-size: 2.5rem; flex-shrink: 0; }
.upsell-banner h3 { margin-bottom: 0.25rem; color: #1a1a1a; }
.upsell-banner p { margin: 0; color: #555; font-size: 0.95rem; }
.upsell-banner .upsell-cta { flex-shrink: 0; margin-left: auto; }

/* ---- FAQ Accordion ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e5e5e5;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 3rem 1.2rem 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: color 0.15s;
}
.faq-question:hover { color: #1a1a1a; }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.6rem;
  font-weight: 300;
  color: #1a1a1a;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 1.2rem;
  color: #444;
  font-size: 0.97rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ---- Form ---- */
.form-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2.5rem;
  max-width: 740px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.88rem; font-weight: 700; color: #444; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #ddd;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1a;
  transition: border-color 0.2s;
  background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a1a1a;
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Checkbox add-on items */
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  text-transform: none;
  letter-spacing: 0;
}
.checkbox-item:hover { background: #f0e8c8; border-color: #C9A84C; }
.checkbox-item input[type="checkbox"] {
  accent-color: #C9A84C;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.form-submit { text-align: center; margin-top: 1.5rem; }
.form-submit .btn { min-width: 220px; font-size: 1.05rem; }
.form-confirm {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #1a1a1a;
}
.form-confirm h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.form-confirm p { color: #555; }

/* ---- Careers ---- */
.job-card {
  background: #fff;
  border-radius: 12px;
  border: 2px solid #f0e8c8;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s;
}
.job-card:hover { border-color: #1a1a1a; }
.job-card h3 { color: #1a1a1a; margin-bottom: 0.5rem; }
.job-card .job-meta { font-size: 0.88rem; color: #888; margin-bottom: 1rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.job-tag { background: #f0e8c8; color: #1a1a1a; padding: 0.2rem 0.6rem; border-radius: 4px; font-weight: 700; font-size: 0.82rem; }

/* ---- 2-col Layout ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse .col-text { order: 2; }
.two-col.reverse .col-img  { order: 1; }

/* ---- Service Area Pills ---- */
.area-pills { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.25rem; }
.area-pill {
  background: #f0e8c8;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 30px;
}

/* ---- Footer ---- */
#site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  max-width: 1160px;
  margin: 0 auto 3rem;
}
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 0.75rem; display: block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-brand .footer-contact { margin-top: 1rem; font-size: 0.9rem; }
.footer-brand .footer-contact a { color: #C9A84C; }
.footer-brand .footer-contact a:hover { text-decoration: underline; }
.footer-col h4 { color: #ffffff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.9rem; color: #ccc; transition: color 0.15s; }
.footer-col ul li a:hover { color: #C9A84C; }
.footer-col .area-list { font-size: 0.9rem; line-height: 2; }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  max-width: 1160px;
  margin: 0 auto;
}

/* ---- Section Divider ---- */
.divider { height: 4px; background: linear-gradient(90deg, #1a1a1a, #C9A84C); border: none; }

/* ---- Breadcrumb ---- */
.breadcrumb { font-size: 0.88rem; color: #888; margin-bottom: 0.5rem; }
.breadcrumb a { color: #1a1a1a; }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse .col-text { order: unset; }
  .two-col.reverse .col-img  { order: unset; }

  .before-after-grid { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-bar-inner { gap: 1rem; }
  .trust-item { font-size: 0.82rem; }
  .hero { min-height: 460px; }
  .section { padding: 3.5rem 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .upsell-banner { flex-direction: column; text-align: center; }
  .upsell-banner .upsell-cta { margin: 0 auto; }
  .form-card { padding: 1.5rem; }
}

/* Service area tags */
.tag {
  display: inline-block;
  background: #f0e8c8;
  color: #1a1a1a;
  border: 1px solid #C9A84C;
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
}
