/* ============================================================
   Country Cousins Waste Services — Global Stylesheet
   Brand: Tropical Blue #00A3E1 | Smoke Grey #6C6463 | White
   Font: Montserrat 700 / 800 (Google Fonts)
   ============================================================ */

/* === Custom Properties === */
:root {
  --blue:      #00A3E1;
  --blue-dark: #0090c8;
  --grey:      #6C6463;
  --grey-dark: #4e4a49;
  --white:     #ffffff;
  --off-white: #f7f7f7;
  --text:      #1a1a1a;
  --text-muted:#555555;
  --border:    #e5e5e5;
  --font:      'Montserrat', sans-serif;
  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 2px 8px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --container: 1200px;
  --gap:       1.5rem;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* === Typography === */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(2rem,   5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem,2.5vw, 1.6rem); }
h4 { font-size: 1rem; }
p  { line-height: 1.7; }
p + p { margin-top: 0.85em; }

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

.section      { padding-block: 4rem; }
.section--lg  { padding-block: 6rem; }
.section--sm  { padding-block: 2.5rem; }
.section--blue  { background: var(--blue);      color: var(--white); }
.section--grey  { background: var(--off-white); }
.section--dark  { background: var(--grey);      color: var(--white); }
.section--white { background: var(--white); }

.grid   { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* === Site Header === */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 42px; width: auto; }

/* Desktop nav */
.site-nav { display: none; align-items: center; gap: 0.15rem; }
@media (min-width: 900px) { .site-nav { display: flex; } }
.site-nav a {
  display: block;
  padding: 0.45rem 0.8rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  color: var(--grey);
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--blue); background: rgba(0,163,225,0.08); }

/* Header phone + CTA */
.header-right { display: flex; align-items: center; gap: 0.75rem; }
.header-phone {
  display: none;
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue);
  white-space: nowrap;
}
.header-phone:hover { text-decoration: underline; }
@media (min-width: 600px) { .header-phone { display: block; } }
.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

/* Hamburger button */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--grey);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding-bottom: 1rem;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--grey-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--blue); background: rgba(0,163,225,0.04); }
.mobile-menu .mobile-phone {
  display: block;
  margin: 1rem 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  border-bottom: none;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  line-height: 1;
}
.btn:active { transform: scale(0.98); }

.btn--primary   { background: var(--blue);  color: var(--white); border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); box-shadow: var(--shadow-md); }

.btn--outline   { background: transparent;  color: var(--blue);  border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); }

.btn--white     { background: var(--white); color: var(--blue);  border-color: var(--white); }
.btn--white:hover { background: rgba(255,255,255,0.9); box-shadow: var(--shadow-md); }

.btn--outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-white:hover { background: var(--white); color: var(--blue); }

.btn--grey      { background: var(--grey);  color: var(--white); border-color: var(--grey); }
.btn--grey:hover { background: var(--grey-dark); }

.btn--lg  { padding: 1rem 2.25rem; font-size: 1.075rem; }
.btn--sm  { padding: 0.5rem 1.1rem;  font-size: 0.85rem;  }
.btn--full { width: 100%; }

/* === Trust Bar === */
.trust-bar {
  background: var(--grey);
  color: var(--white);
  padding: 0.6rem 0;
  font-size: 0.85rem;
  font-weight: 700;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.trust-item { display: flex; align-items: center; gap: 0.35rem; }
.stars { color: #FFD700; letter-spacing: 0.05em; font-size: 0.95rem; }

/* === Hero === */
.hero {
  background: var(--blue);
  color: var(--white);
  padding-block: 4.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding-block: 6rem 5rem; } }
.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
}
.hero-copy h1 { color: var(--white); margin-bottom: 1.1rem; }
.hero-copy .lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  opacity: 0.93;
  margin-bottom: 2rem;
  max-width: 48ch;
}
.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.15);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* === Photo Placeholders === */
.photo-placeholder {
  background: #e8e8e8;
  border: 2px dashed #ccc;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  color: #999;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem;
}

/* === Section Headings === */
.section-heading { margin-bottom: 2.5rem; }
.section-heading--center { text-align: center; }
.section-heading--center p { margin-inline: auto; }
.section-heading p { max-width: 58ch; color: var(--text-muted); margin-top: 0.5rem; font-size: 1.05rem; }
.section-heading.on-dark p { color: rgba(255,255,255,0.8); }
.section-heading.on-dark h2 { color: var(--white); }

/* === Service Cards === */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-top: 4px solid var(--blue);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card h3 { color: var(--grey-dark); }
.service-card p { color: var(--text-muted); font-size: 0.95rem; flex: 1; }
.service-card .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.service-card .price-sub { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }

/* === Feature / Icon Rows === */
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0,163,225,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.feature-item h4 { font-weight: 800; font-size: 1rem; margin-bottom: 0.2rem; }
.feature-item p { font-size: 0.9rem; color: var(--text-muted); }

/* === Steps / How It Works === */
.steps { display: grid; gap: 2rem; }
@media (min-width: 640px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { text-align: center; }
.step-num {
  width: 3rem;
  height: 3rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.875rem; color: var(--text-muted); }

/* === Pricing Table === */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,163,225,0.12);
}
.pricing-card .price-big { font-size: 2.5rem; font-weight: 800; color: var(--blue); line-height: 1; }
.pricing-card .price-period { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.pricing-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-card li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; }
.pricing-card li::before { content: "✓"; color: var(--blue); font-weight: 800; flex-shrink: 0; margin-top: 0.05em; }

/* === Forms === */
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-weight: 700; font-size: 0.9rem; }
.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
}
.form-control:focus { outline: none; border-color: var(--blue); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 600px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.form-error { color: #c0392b; font-size: 0.85rem; }
.form-success { color: #27ae60; font-size: 0.95rem; font-weight: 700; }

/* === Testimonial / Review === */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-stars { color: #FFD700; font-size: 1.1rem; letter-spacing: 0.05em; }
.review-text { font-size: 0.95rem; color: var(--text-muted); font-style: italic; }
.review-author { font-weight: 800; font-size: 0.85rem; color: var(--grey); }

/* === CTA Banner === */
.cta-banner {
  background: var(--blue);
  color: var(--white);
  padding-block: 3.5rem;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { max-width: 52ch; margin: 0 auto 2rem; opacity: 0.9; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === Footer === */
.site-footer {
  background: var(--grey);
  color: var(--white);
  padding-top: 3.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.25fr; } }

.footer-brand img { height: 50px; width: auto; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.65;
  max-width: 30ch;
  margin-bottom: 1.25rem;
}
.footer-contact { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-contact a {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.88;
}
.footer-contact a:hover { opacity: 1; text-decoration: underline; }
.footer-contact span {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.82;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--white);
  opacity: 0.82;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.22rem 0;
}
.footer-col a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-block: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  opacity: 0.6;
}

/* === Utilities === */
.text-blue    { color: var(--blue); }
.text-grey    { color: var(--grey); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.fw-800       { font-weight: 800; }
.fw-700       { font-weight: 700; }
.d-flex       { display: flex; }
.align-center { align-items: center; }
.gap-1        { gap: 0.5rem; }
.gap-2        { gap: 1rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* === Responsive helpers === */
.hide-mobile  { display: none; }
@media (min-width: 640px)  { .hide-mobile { display: revert; } }
.show-mobile  { display: revert; }
@media (min-width: 640px)  { .show-mobile { display: none; } }

/* === Trust Grid (Why Choose Us section) === */
.trust-grid {
  display: grid;
  gap: 1.75rem 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

.trust-point {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.trust-check {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 0.1rem;
}
.trust-point h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--grey-dark);
  margin-bottom: 0.2rem;
}
.trust-point p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: none;
}

/* === FAQ === */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-item:first-child { padding-top: 0; }
.faq-item h3 { font-size: 1.05rem; font-weight: 800; color: var(--grey-dark); margin-bottom: 0.5rem; }
.faq-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; margin: 0; }

/* === Can / Cannot lists (dumpster + junk removal pages) === */
.two-col-list { display: grid; gap: 2rem; }
@media (min-width: 640px) { .two-col-list { grid-template-columns: 1fr 1fr; } }
.check-list, .cross-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.check-list li, .cross-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.65;
}
.check-list li::before { content: "✓"; color: var(--blue); font-weight: 800; position: absolute; left: 0; top: 0.1em; }
.cross-list li::before { content: "✗"; color: #c0392b; font-weight: 800; position: absolute; left: 0; top: 0.1em; }

/* === Pricing highlight block (service pages) === */
.price-highlight {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}
.price-highlight .price-amount { font-size: 2.25rem; font-weight: 800; color: var(--blue); line-height: 1; }
.price-highlight .price-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; margin-top: 0.35rem; }

/* === Pricing Table (roll-off dumpster rental) === */
.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; max-width: 620px; }
.pricing-table th {
  background: var(--blue);
  color: var(--white);
  padding: 0.7rem 1rem;
  text-align: left;
  font-weight: 800;
  font-size: 0.9rem;
}
.pricing-table td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:nth-child(even) td { background: rgba(0,0,0,0.02); }
.pricing-table .price-col { font-weight: 800; color: var(--text); }
.pricing-table small { font-size: 0.78rem; font-weight: 600; display: block; color: var(--text-muted); }

/* === Item / Price list (junk removal single-item pricing) === */
.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  gap: 0.5rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list .price-val { font-weight: 800; color: var(--blue); white-space: nowrap; flex-shrink: 0; }
.price-category h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--grey); margin-bottom: 0.5rem; }

/* === Flat-rate callout box === */
.callout-flat {
  background: rgba(0,163,225,0.07);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  max-width: 620px;
  margin-bottom: 1.5rem;
}
.callout-flat p { margin: 0; font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.callout-flat strong { color: var(--text); }
