/* ===================================================
   BBC BED BUG CLEANING - Main Stylesheet
   tahtakurusuzev.com - White-dominant professional design
   =================================================== */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1a7a35;
  --primary-dark: #146128;
  --primary-light: #22a748;
  --primary-ultra-light: #e8f5ec;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --danger: #dc3545;
  --success: #198754;

  /* White-dominant palette */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --bg: #ffffff;
  --bg-alt: #f8fffe;
  --bg-section: #f4fbf6;
  --text: #1f2937;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --border-green: rgba(26, 122, 53, 0.15);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-green: 0 4px 24px rgba(26, 122, 53, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: all 0.25s ease;
  --transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

  --navbar-h: 135px;
  --topbar-h: 40px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-h) + var(--topbar-h));
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  max-width: 100%;
  overflow-x: hidden;
  padding-top: calc(var(--navbar-h) + var(--topbar-h));
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,122,53,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--primary-ultra-light);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  white-space: nowrap;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-right a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.topbar-right a:hover { color: white; }
.topbar-sep { opacity: 0.4; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), top 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.navbar.scrolled {
  top: 0;
  box-shadow: var(--shadow-md);
}
.navbar.nav-hidden {
  transform: translateY(-120%);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.logo-badge {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.logo-brand { font-size: 17px; color: var(--primary); line-height: 1.1; display: block; }
.logo-sub { font-size: 11px; color: var(--text-muted); font-weight: 400; letter-spacing: 0.5px; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-ultra-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--navbar-h) - var(--topbar-h));
  background: var(--bg-section);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(26,122,53,0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(26,122,53,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-ultra-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--border-green);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.hero-title .text-green { color: var(--primary); }

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.stat-item {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero image side */
.hero-image-wrap {
  position: relative;
}
.hero-image-main {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 520px;
}
.hero-image-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}
.hero-image-badge.badge-tl {
  top: 24px; left: -24px;
}
.hero-image-badge.badge-br {
  bottom: 32px; right: -24px;
}
.hib-icon { font-size: 28px; }
.hib-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--gray-900); }
.hib-text span { font-size: 12px; color: var(--text-muted); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 180px;
  justify-content: center;
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 28px; }
.trust-title { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.trust-sub { font-size: 12px; color: var(--text-muted); }

/* ===== SECTION COMMON ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-section); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--primary-ultra-light);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid var(--border-green);
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title .text-green { color: var(--primary); }
.section-desc { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

/* ===== DETAIL PAGE GRIDS ===== */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.icon-box {
  background: var(--primary-ultra-light);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  font-size: 80px;
  margin-bottom: 32px;
}

.service-card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-green);
}
.service-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--bg-section);
}
.service-card-img-placeholder {
  width: 100%;
  height: 220px;
  background: var(--primary-ultra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.service-card-body { padding: 24px; }
.service-featured-badge {
  display: inline-block;
  margin-bottom: 12px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.service-card-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.service-card-price { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.service-card-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}
.service-card-link:hover { gap: 8px; }

/* ===== PRODUCTS GRID ===== */
.products-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-green);
}
.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg-section);
}
.product-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--primary-ultra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.product-card-body { padding: 18px; }
.product-card-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.product-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price { font-size: 16px; font-weight: 800; color: var(--primary); }
.product-price-label { font-size: 12px; color: var(--text-muted); }

/* ===== RENTAL TABLE ===== */
.rental-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.rental-table th {
  background: var(--primary);
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.rental-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.rental-table tr:last-child td { border-bottom: none; }
.rental-table tr:hover td { background: var(--bg-section); }
.rental-price { font-weight: 700; color: var(--primary); }

/* ===== QUOTE FORM ===== */
.quote-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.quote-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.quote-content p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.quote-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.quote-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 500;
}
.quote-features .check { color: #4ade80; font-size: 18px; }

.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.quote-form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 28px;
  text-align: center;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,122,53,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group .field-error { font-size: 12px; color: var(--danger); margin-top: 4px; }
.form-privacy { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ===== GOOGLE REVIEWS SECTION ===== */
.google-reviews-section-container {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

/* Left Badge Styling */
.google-reviews-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  transition: var(--transition);
}

.google-reviews-badge:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-green);
  transform: translateY(-2px);
}

.google-badge-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--primary-ultra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
}

.company-badge-svg {
  width: 100%;
  height: 100%;
}

.google-badge-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.3;
  margin: 4px 0 0 0;
  letter-spacing: -0.2px;
}

.google-badge-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-badge-rating {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}

.google-stars {
  color: #f59e0b;
  font-size: 16px;
  display: flex;
  gap: 2px;
}

.google-badge-count {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.google-badge-powered {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.google-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.google-logo-text .g-blue { color: #4285f4; }
.google-logo-text .g-red { color: #ea4335; }
.google-logo-text .g-yellow { color: #fbbc05; }
.google-logo-text .g-green { color: #34a853; }

.google-rate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1a73e8;
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(26,115,232,0.3);
  transition: var(--transition);
  margin-top: 8px;
}

.google-rate-btn:hover {
  background: #1557b0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26,115,232,0.4);
}

.google-rate-g-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Right Slider Wrapper Styling */
.google-reviews-slider-wrapper {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: visible;
  padding: 10px 24px 40px 24px;
  box-sizing: border-box;
}

.google-reviews-slider-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
}

.google-reviews-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Card Styling */
.google-review-card {
  background: #f7f7f7;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  box-sizing: border-box;
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
  flex: 0 0 calc((100% - 48px) / 3);
}

.google-review-card:hover {
  background: var(--white);
  border-color: var(--border-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.google-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.google-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}

.google-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.google-author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.google-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.google-review-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.google-card-g-logo {
  width: 18px;
  height: 18px;
}

.google-card-g-logo svg {
  width: 100%;
  height: 100%;
}

.google-card-stars {
  color: #f59e0b;
  font-size: 14px;
  display: flex;
  gap: 1px;
}

.google-card-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray-700);
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.google-review-card:hover .google-card-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* Arrows styling */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: var(--transition);
  color: var(--gray-700);
  cursor: pointer;
}

.slider-arrow:hover {
  background: var(--primary-ultra-light);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: 4px;
}

.next-arrow {
  right: 4px;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Dots Styling */
.google-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  width: 100%;
}

.slider-dot {
  width: 8px;
  height: 8px;
  background: var(--gray-300);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--accent);
  width: 16px;
  border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .google-reviews-section-container {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  
  .google-reviews-badge {
    display: none !important;
  }
  
  .google-review-card {
    flex: 0 0 calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 768px) {
  .prev-arrow {
    left: 4px;
  }
  
  .next-arrow {
    right: 4px;
  }
  
  .google-review-card {
    padding: 20px;
    min-height: 200px;
  }
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-item:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow-sm);
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--primary-ultra-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid var(--border-green);
}
.why-content h4 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.why-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.why-image-wrap { position: relative; }
.why-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  height: 480px;
  object-fit: cover;
}
.why-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  text-align: center;
  min-width: 110px;
}
.why-stat-card.card-tl { top: 24px; left: -24px; }
.why-stat-card.card-br { bottom: 32px; right: -24px; }
.why-stat-num { font-size: 20px; font-weight: 900; color: var(--primary); }
.why-stat-label { font-size: 11px; color: var(--text-muted); }

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  opacity: 0.2;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.process-step:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.step-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-green);
}
.step-icon { font-size: 40px; margin-bottom: 16px; margin-top: 8px; }
.step-title { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--gray-900);
  padding: 60px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: white; }
.cta-band p { color: var(--gray-400); font-size: 16px; }
.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-700);
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-weight: 800;
  color: white;
}
.footer-logo-badge {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.footer-brand-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: var(--gray-700);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-300);
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: white; }

.footer-col h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--gray-400); }
.footer-col a:hover { color: var(--primary-light); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact-item span:first-child { font-size: 16px; margin-top: 2px; }
.footer-cert-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.cert-badge {
  padding: 4px 10px;
  background: var(--gray-700);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-300);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: var(--primary-light); }

/* ===== FLOATING BUTTONS ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 90px; right: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.5); color: white; }

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: 1px solid #25D366;
}
.btn-whatsapp:hover {
  background: #128c7e;
  border-color: #128c7e;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.floating-call {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-green);
  transition: var(--transition);
}
.floating-call:hover { background: var(--primary-dark); transform: translateY(-2px); color: white; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--bg-section);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.page-hero-content { text-align: center; }
.page-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.page-hero p { font-size: 17px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  justify-content: center;
}
.breadcrumb a { color: var(--primary); }

/* ===== ALERTS ===== */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* ===== CONTACT INFO GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--bg-section);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 44px; height: 44px;
  background: var(--primary-ultra-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid var(--border-green);
}
.ci-label { font-size: 12px; color: var(--text-muted); margin-bottom: 3px; }
.ci-value { font-size: 15px; font-weight: 600; color: var(--gray-900); }
.ci-value a { color: var(--primary); }

/* ===== BLOG GRID ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { width: 100%; height: 200px; object-fit: contain; background: var(--bg-section); }
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.blog-card-title { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; line-height: 1.3; }
.blog-card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

/* ===== SUCCESS PAGE ===== */
.success-box {
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid #6ee7b7;
  box-shadow: var(--shadow-md);
  max-width: 560px;
  margin: 0 auto;
}
.success-icon { font-size: 64px; margin-bottom: 20px; }
.success-box h3 { font-size: 26px; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.success-box p { color: var(--text-muted); font-size: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  :root { --topbar-h: 0px; }
  .topbar { display: none; }

  .nav-links {
    display: none;
    position: fixed;
    top: calc(var(--navbar-h) + 12px);
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(26, 122, 53, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(26, 122, 53, 0.05);
    gap: 8px;
    z-index: 1100;
    transform-origin: top center;
    animation: slideDownFade 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  
  @keyframes slideDownFade {
    from {
      opacity: 0;
      transform: translateY(-12px) scale(0.97);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: normal;
    line-height: 1.4;
  }

  .nav-link::before {
    content: '•';
    color: var(--primary-light);
    font-size: 18px;
    transition: var(--transition);
  }

  .nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: var(--primary-ultra-light);
    padding-left: 22px;
  }
  
  .nav-link:hover::before, .nav-link.active::before {
    content: '⚡';
    transform: scale(1.2);
  }

  .nav-cta {
    margin-top: 12px;
    padding: 14px 20px;
    font-size: 15px;
    border-radius: var(--radius-md);
    justify-content: center;
    box-shadow: var(--shadow-green);
    animation: pulseGlow 2s infinite;
  }

  @keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(26, 122, 53, 0.15); }
    50% { box-shadow: 0 4px 24px rgba(26, 122, 53, 0.35); }
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--border);
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
    gap: 5px;
  }

  .hamburger:hover {
    background: var(--gray-50);
    border-color: var(--primary);
  }

  .hamburger[aria-expanded="true"] {
    background: var(--primary-ultra-light);
    border-color: var(--primary);
  }

  .hamburger[aria-expanded="true"] span {
    background: var(--primary);
  }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-slogan { font-size: 16px !important; margin-bottom: 16px !important; }
  .hero-image-wrap { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-wrap { display: none; }
  .comparison-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }

  /* Google Reviews Mobile Tweaks */
  .google-reviews-badge {
    display: none !important;
  }
  
  .google-reviews-slider-wrapper {
    padding: 10px 16px 30px 16px;
  }
  
  .slider-arrow {
    display: none !important;
  }
  
  .google-review-card {
    padding: 16px;
    min-height: auto;
    gap: 12px;
    flex: 0 0 100% !important;
  }
  
  .google-card-text {
    font-size: 13px;
    -webkit-line-clamp: 5;
  }

  /* Compact Floating Action Buttons for Mobile */
  .floating-whatsapp {
    width: 50px !important;
    height: 50px !important;
    bottom: 80px !important;
    right: 16px !important;
    font-size: 24px !important;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3) !important;
  }
  
  .floating-call {
    width: 50px !important;
    height: 50px !important;
    bottom: 16px !important;
    right: 16px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 16px rgba(26,122,53,0.3) !important;
  }
  
  .floating-call span:last-child {
    display: none !important; /* Hide the text "Hemen Ara" */
  }
  
  .floating-call span:first-child {
    font-size: 20px !important;
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}/* ===== FAQ ACCORDION ===== */
.faq-accordion { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--primary); }
.faq-question { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--gray-900); font-size: 16px; }
.faq-icon { font-size: 20px; color: var(--primary); transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: var(--gray-700); }
.faq-item.active .faq-answer { padding: 0 24px 20px 24px; max-height: 500px; }

/* ===== COMPARISON TABLE ===== */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.comp-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-xl); padding: 40px; text-align: center; position: relative; transition: var(--transition); }
.comp-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.comp-card.recommended { border-color: var(--accent); }
.comp-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; padding: 6px 16px; border-radius: 99px; font-weight: 700; font-size: 14px; white-space: nowrap; }
.comp-title { font-size: 24px; font-weight: 800; color: var(--gray-900); margin-bottom: 24px; }
.comp-list { text-align: left; margin-bottom: 32px; }
.comp-list li { padding: 12px 0; border-bottom: 1px solid var(--gray-100); display: flex; align-items: flex-start; gap: 12px; }
.comp-list li:last-child { border: none; }
.comp-list li span.icon { flex-shrink: 0; font-size: 18px; }
/* ========================================= */
/* CRITICAL MOBILE OVERRIDES (MUST BE AT END)*/
/* ========================================= */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr !important;
    }
    .comp-card {
        padding: 24px 20px !important;
    }
}

/* ========================================= */
/* BBC BED BUG CLEANING - GLOBAL MODERNIZATION */
/* ========================================= */
:root {
  --fluid-h1: clamp(28px, 5vw, 48px);
  --fluid-h2: clamp(22px, 4vw, 36px);
  --fluid-h3: clamp(18px, 3vw, 24px);
  --fluid-p: clamp(15px, 2vw, 16px);
}

h1, .hero-title, [style*="font-size: 56px"], [style*="font-size: 60px"] {
  font-size: var(--fluid-h1) !important;
  line-height: 1.2 !important;
  word-break: normal !important;
}

h2, .comp-title, [style*="font-size: 40px"], [style*="font-size: 36px"], [style*="font-size: 28px"] {
  font-size: var(--fluid-h2) !important;
  line-height: 1.3 !important;
  word-break: normal !important;
}

h3, [style*="font-size: 24px"], [style*="font-size: 22px"], [style*="font-size: 20px"] {
  font-size: var(--fluid-h3) !important;
  line-height: 1.4 !important;
}

p, span:not(.comp-badge):not(.badge):not(.icon), li, [style*="font-size: 16px"], [style*="font-size: 18px"] {
  line-height: 1.7 !important;
  word-break: normal !important;
}

/* Modern Details/Accordion Styling */
.modern-details {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.modern-details summary {
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modern-details summary::-webkit-details-marker { display: none; }
.modern-details summary::after {
  content: '+';
  font-size: 24px;
  color: var(--gray-400);
}
.modern-details[open] summary::after { content: '-'; }
.modern-details-content {
  padding: 0 24px 24px 24px;
  color: var(--gray-700);
}

/* Mobile specific fixes */
@media (max-width: 768px) {
  /* Prevent text squishing in flex/grid */
  .faq-content ul, 
  .checklist ul,
  .features-grid {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .faq-content li, 
  .checklist li {
    display: flex !important;
    align-items: flex-start !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
  }
  
  /* Reset padding on containers so it touches edges nicely but leaves reading space */
  .container {
    padding: 0 16px !important;
  }
  
  /* Removed scroll-reveal padding as it broke layouts */

  .navbar-inner {
    width: 100% !important;
    justify-content: space-between !important;
    display: flex !important;
    flex-direction: row !important;
  }

  /* Responsive Grids for Detail Page */
  .detail-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .related-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .icon-box {
    padding: 30px !important;
    font-size: 60px !important;
  }

  /* Fix trust strip staggered icons */
  .trust-items {
    flex-direction: column !important;
  }
  .trust-item {
    justify-content: flex-start !important;
    width: 280px !important;
    margin: 0 auto !important;
    padding: 16px 20px !important;
  }

  /* Fix massive gaps between sections */
  .section {
    padding: 40px 0 !important;
  }
  .section-header {
    margin-bottom: 16px !important;
  }
  .faq-accordion {
    margin-top: 8px !important;
  }
}

/* Logo adjustments */
.site-main-logo {
    height: 85px; /* Cleanly cropped logo height */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transform: scale(1.4);
    transform-origin: left center;
    flex-shrink: 0;
    min-height: 85px;
}
.navbar-inner > .logo {
    margin-right: 80px;
    margin-left: 0px;
    flex-shrink: 0;
}
.site-footer-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .site-main-logo {
        height: 90px;
        transform: scale(1.4);
        transform-origin: left center;
        flex-shrink: 0;
        min-height: 90px;
    }
    .navbar-inner > .logo {
        margin-left: -15px;
        margin-top: 2px;
        margin-right: 0;
        flex-shrink: 0;
    }
}
