/* =============================================
   WestFlush Services — Main Stylesheet
   ============================================= */

:root {
  --green:       #2E7D32;
  --green-light: #4CAF50;
  --green-pale:  #E8F5E9;
  --blue:        #1565C0;
  --blue-light:  #42A5F5;
  --blue-pale:   #E3F2FD;
  --teal:        #1565C0;
  --white:       #FFFFFF;
  --off-white:   #F9FBF9;
  --gray-light:  #F1F5F1;
  --gray:        #6B7280;
  --dark:        #0D1B2A;
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --radius:      12px;
  --transition:  0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── CUSTOM LOGO (uploaded via Appearance > Customize > Site Identity) ── */

/* Header custom logo */
.site-logo--image {
  flex-shrink: 0;
  z-index: 1;
}

.site-logo--image .custom-logo-link {
  display: flex;
  align-items: center;
}

.site-logo--image .custom-logo {
  max-height: 48px;
  width: auto;
  display: block;
}

/* Footer custom logo — invert to white so it shows on the dark background */
.footer-logo .custom-logo-link {
  display: flex;
  align-items: center;
}

.footer-logo .custom-logo {
  max-height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: 72px;
  padding: 0 24px;
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
  list-style: none;
}

.desktop-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--transition);
  white-space: nowrap;
}

.desktop-nav a:hover { color: var(--blue); }

.header-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

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

.btn-white {
  background: var(--white);
  color: var(--blue);
}

.btn-white:hover {
  background: var(--blue-pale);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px 24px;
  z-index: 199;
}

.mobile-nav.active { display: block; }

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--dark);
  transition: all var(--transition);
}

.mobile-nav a:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

.mobile-nav .btn-primary {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3a6b 60%, var(--blue) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="80" r="60" fill="rgba(255,255,255,0.02)"/></svg>') no-repeat center/cover;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}

.hero-content {
  text-align: left;
  align-self: center;
  justify-self: start;
  padding-left: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--green-light);
}

.hero-desc {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-light);
}

.stat-item span {
  font-size: 0.8rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── HERO CAROUSEL ── */
.hero-carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}

.slide-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 1;
  padding: 24px 28px;
  color: white;
}

.slide-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.slide-content p {
  font-size: 0.88rem;
  opacity: 0.85;
}

.carousel-nav {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.carousel-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.3);
}

.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.carousel-dot.active {
  background: white;
  width: 24px;
}

/* ── BOOKING MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 540px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-light);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--dark);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

.modal-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  margin-right: 44px;
}

.modal-subtitle {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--blue);
  color: var(--white);
  padding: 16px 0;
}

.trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── SECTION COMMONS ── */
section { padding: 72px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--gray);
  font-size: 1rem;
  max-width: 520px;
}

.section-head { margin-bottom: 48px; }

/* ── SERVICES SECTION ── */
.services-section { background: var(--off-white); }

.services-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 40px;
  border: 2px solid var(--gray-light);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.service-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-card .price-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.price-tag {
  background: var(--green-pale);
  color: var(--green);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

.price-tag.occupied {
  background: #FFF3E0;
  color: #E65100;
}

.price-label {
  font-size: 0.7rem;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
  opacity: 0.7;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 8px;
}

/* ── PRICING SECTION ── */
.pricing-section { background: var(--white); }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table thead {
  background: var(--green);
  color: var(--white);
}

.pricing-table th,
.pricing-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
}

.pricing-table th {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.pricing-table tbody tr:nth-child(even) {
  background: var(--green-pale);
}

.pricing-table tbody tr:hover {
  background: #C8E6C9;
}

.pricing-table td:first-child {
  font-weight: 600;
}

.pricing-table .price-cell {
  font-weight: 700;
  color: var(--green);
}

.pricing-tables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.pricing-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── FUMIGATION SECTION ── */
.fumigation-section { background: var(--gray-light); }

.fumigation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.fumi-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fumi-table-wrap h3 {
  background: var(--teal);
  color: var(--white);
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 700;
}

.fumi-table {
  width: 100%;
  border-collapse: collapse;
}

.fumi-table th,
.fumi-table td {
  padding: 10px 16px;
  font-size: 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
}

.fumi-table th {
  background: var(--blue-pale);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fumi-table td:first-child { font-weight: 600; }

.fumi-table .price-cell {
  font-weight: 700;
  color: var(--teal);
}

.fumi-pests {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.pest-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.pest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.pest-card .pest-icon { font-size: 2.5rem; margin-bottom: 10px; }

.pest-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pest-card .pest-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal);
}
.pest-card .pest-price-note {
  font-size: 0.75rem;
  color: #888;
  margin-top: 3px;
}

/* ── WHY US ── */
.why-section { background: linear-gradient(135deg, var(--dark), #1a3a6b); color: var(--white); }

.why-section .section-title { color: var(--white); }
.why-section .section-label { color: var(--green-light); }
.why-section .section-desc { color: rgba(255,255,255,0.7); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.12);
}

.why-card .w-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.5;
}

/* ── CONTACT / CTA ── */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item .ci-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item span {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 56px 0 24px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 0 1 300px;
  text-align: left;
}

.footer-col {
  flex: 0 1 200px;
  text-align: left;
}

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-top: 14px;
  line-height: 1.7;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .logo-icon { background: var(--blue); }

.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-text span { color: rgba(255,255,255,0.5); }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-col a:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 100;
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--dark); transform: translateY(-2px); }

/* ── RESPONSIVE ── */

/* prevent horizontal overflow on all screens */
body { overflow-x: hidden; }

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

@media (max-width: 860px) {
  .footer-grid { flex-wrap: wrap; gap: 32px; }
  .footer-brand { flex: 0 0 100%; }
  .footer-col   { flex: 1 1 180px; }
}

@media (max-width: 768px) {
  .desktop-nav,
  .btn-call,
  .header-cta .btn-primary { display: none; }

  .hamburger { display: flex; }

  /* hero stacks: show text first, carousel below */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-carousel {
    height: 240px;
    border-radius: 14px;
  }
  .slide-visual { font-size: 3rem; }
  .slide-content h3 { font-size: 1rem; }
  .slide-content { padding: 16px 18px; }

  .hero { padding: 40px 0 36px; }
  .hero-desc { font-size: 0.95rem; }

  /* make pricing / fumigation tables scroll horizontally instead of clipping */
  .fumi-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .fumi-table { min-width: 360px; }

  .pricing-tables-grid,
  .contact-grid,
  .fumigation-grid { grid-template-columns: 1fr; }

  /* trust bar: two-column grid looks cleaner than a plain column */
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    align-items: start;
  }

  section { padding: 48px 0; }

  /* modal: full-width with comfortable padding */
  .modal-overlay { padding: 12px; align-items: flex-end; }
  .modal-box {
    padding: 28px 20px;
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
  }

  /* contact form card less padded */
  .contact-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  /* ensure services / why grids are single column */
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  /* pest cards: 2 per row on small screens */
  .fumi-pests { grid-template-columns: repeat(2, 1fr); }

  /* footer collapses to single column */
  .footer-grid { flex-direction: column; gap: 28px; }
  .footer-brand,
  .footer-col { flex: 0 0 auto; }

  /* trust bar: single column on very small screens */
  .trust-inner { grid-template-columns: 1fr; }

  /* services tabs wrap naturally */
  .tab-btn { min-height: 44px; }

  /* scroll-to-top button: slightly smaller */
  .scroll-top { bottom: 16px; right: 16px; }

  /* contact form single column */
  .contact-form { padding: 20px 14px; }

  /* modal full-screen feel */
  .modal-box { padding: 24px 14px; }
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box { border-radius: 20px 20px 0 0; }
}

/* ── VIDEO SHOWCASE ── */
.videos-section {
  background: var(--off-white);
  padding: 72px 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.video-wrap {
  position: relative;
  /* Vertical 9:16 aspect ratio — matches portrait video so there are no black bars */
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--dark);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

.video-placeholder {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  border: 2px dashed var(--blue-light);
  border-radius: var(--radius);
  background: var(--blue-pale);
  text-align: center;
  color: var(--gray);
}

.video-placeholder .vp-icon {
  font-size: 3rem;
  color: var(--blue);
  margin-bottom: 16px;
}

.video-placeholder p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 8px;
}

.video-placeholder small {
  font-size: 0.82rem;
  color: var(--gray);
}

@media (max-width: 768px) {
  .videos-grid { grid-template-columns: 1fr; }
  .video-wrap  { max-width: 320px; }
}

/* ── Pricing Note (under service / fumigation / pest sections) ── */
.pricing-note {
  margin: 10pt auto 0;
  max-width: 880px;
  padding: 16px 22px;
  background: var(--blue-pale);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  color: var(--dark);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  text-align: left;
}

.pricing-note strong {
  color: var(--blue);
  font-weight: 700;
  font-style: italic;
}

@media (max-width: 768px) {
  .pricing-note { font-size: 0.88rem; padding: 14px 16px; }
}
