/* ============================================
   BELL JUNK REMOVAL — Landing Page Styles
   Color Palette:
     Black:    #1a1a1a, #222, #111
     Yellow:   #FFC107 (primary accent)
     Gold:     #E5AC00 (hover)
     White:    #FFFFFF
     Gray:     #F5F5F5, #E8E8E8, #888
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-yellow {
  color: #FFC107;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-md {
  padding: 12px 28px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.btn-primary {
  background: #FFC107;
  color: #111;
  border-color: #FFC107;
}
.btn-primary:hover {
  background: #E5AC00;
  border-color: #E5AC00;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,193,7,0.35);
}

.btn-outline {
  background: transparent;
  color: #FFC107;
  border-color: #FFC107;
}
.btn-outline:hover {
  background: #FFC107;
  color: #111;
}

.btn-outline-dark {
  background: transparent;
  color: #222;
  border-color: #222;
}
.btn-outline-dark:hover {
  background: #222;
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: #111;
}

.btn-full {
  width: 100%;
}

/* ---------- 1. STICKY HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #111;
  border-bottom: 3px solid #FFC107;
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img,
.hero-badge-img,
.footer-logo-img {
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-touch-callout: none;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
.header-phone i {
  color: #FFC107;
}
.header-phone:hover {
  color: #FFC107;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFC107;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu {
  display: none;
  background: #1a1a1a;
  padding: 12px 24px 16px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #333;
  font-size: 0.95rem;
}
.mobile-menu-link:last-child {
  border-bottom: none;
}
.mobile-menu-link i {
  color: #FFC107;
  width: 20px;
  text-align: center;
}
.mobile-menu-link:hover {
  color: #FFC107;
}

/* ---------- 2. HERO SECTION ---------- */
.hero {
  position: relative;
  background: #111;
  padding: 120px 0 80px;
  overflow: hidden;
  min-height: 520px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #222 100%);
  opacity: 0.97;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,193,7,0.08) 0%, transparent 70%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-headline {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.hero-subheadline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: #FFC107;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.hero-description {
  color: #ccc;
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #999;
  font-size: 0.85rem;
}
.hero-trust i {
  color: #FFC107;
  margin-right: 3px;
}
.trust-divider {
  color: #555;
}

.hero-visual {
  flex: 0 0 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  width: 800px;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 40px rgba(255,193,7,0.3));
  animation: badgePulse 4s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(255,193,7,0.3)); }
  50% { filter: drop-shadow(0 0 60px rgba(255,193,7,0.45)); }
}

.hero-badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- 3. SERVICES BAND ---------- */
.services-band {
  background: #F5F5F5;
  padding: 60px 0 70px;
}

.services-band-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Quote Form Column */
.quote-form-col {
  flex: 0 0 380px;
}

.quote-form-card {
  background: #fff;
  border: 2px solid #FFC107;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: sticky;
  top: 90px;
}

.quote-form-title {
  font-size: 1.4rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 5px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FFC107;
  box-shadow: 0 0 0 3px rgba(255,193,7,0.15);
  background: #fff;
}

.upload-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #FAFAFA;
  border: 1.5px dashed #ccc;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s;
  font-weight: 600;
  font-size: 0.9rem;
  color: #555;
}
.upload-label:hover {
  border-color: #FFC107;
}
.upload-label i {
  color: #FFC107;
  font-size: 1.1rem;
}
.upload-hint {
  font-weight: 400;
  font-size: 0.8rem;
  color: #999;
  margin-left: auto;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success i {
  font-size: 3rem;
  color: #4CAF50;
  margin-bottom: 12px;
}
.form-success h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.form-success p {
  color: #666;
}

/* Services Right Column */
.services-right-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #FFC107;
  border-radius: 2px;
}

/* What We Remove Grid */
.remove-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.remove-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  background: #fff;
  border-radius: 8px;
  border: 1.5px solid #eee;
  transition: all 0.25s;
  text-align: center;
}
.remove-card:hover {
  border-color: #FFC107;
  box-shadow: 0 4px 12px rgba(255,193,7,0.15);
  transform: translateY(-2px);
}
.remove-card i {
  font-size: 1.5rem;
  color: #FFC107;
}
.remove-card .fridge-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #FFC107;
}
.remove-card span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
}

/* How It Works */
.steps-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.step-card {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  border: 1.5px solid #eee;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.step-card:hover {
  border-color: #FFC107;
  box-shadow: 0 4px 16px rgba(255,193,7,0.12);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: #FFC107;
  color: #111;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.step-card p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.4;
}

.step-arrow {
  color: #FFC107;
  font-size: 1.2rem;
}

/* ---------- 4. TRUST BAR ---------- */
.trust-bar {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}
.trust-item i {
  color: #FFC107;
  font-size: 1.1rem;
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #FFC107;
  font-size: 0.95rem;
  display: flex;
  gap: 2px;
}

.trust-rating strong {
  font-size: 1.2rem;
}

/* ---------- 5. WHY CHOOSE US / GALLERY ---------- */
.why-choose-us {
  padding: 70px 0 60px;
  background: #F5F5F5;
}

.section-title-center {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 14px;
}
.section-title-center::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #FFC107;
  border-radius: 2px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.reason-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 10px;
  text-align: center;
  border: 1.5px solid #eee;
  transition: all 0.25s;
}
.reason-card:hover {
  border-color: #FFC107;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.reason-card i {
  font-size: 2.2rem;
  color: #FFC107;
  margin-bottom: 14px;
}
.reason-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.reason-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}

.subsection-title {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.gallery-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 0;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.before-label {
  background: rgba(0,0,0,0.7);
  color: #ff6b6b;
}

.after-label {
  background: rgba(0,0,0,0.7);
  color: #69db7c;
}

/* Expandable gallery */
.gallery-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.gallery-expand.open {
  max-height: 800px;
}

.gallery-toggle {
  display: flex;
  margin: 0 auto 10px;
}

.gallery-toggle i {
  transition: transform 0.3s;
}

.gallery-toggle.expanded i {
  transform: rotate(180deg);
}

.section-cta {
  text-align: center;
}

/* ---------- 6. TESTIMONIALS ---------- */
.testimonials-section {
  padding: 70px 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #FAFAFA;
  padding: 28px 24px;
  border-radius: 10px;
  border: 1.5px solid #eee;
  transition: border-color 0.25s;
}
.testimonial-card:hover {
  border-color: #FFC107;
}

.stars-sm {
  color: #FFC107;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 14px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.85rem;
  color: #222;
}

/* ---------- 7. SERVICE AREA ---------- */
.service-area {
  position: relative;
  background: #111;
  padding: 70px 0;
  overflow: hidden;
}

.service-area-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.service-area-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-area-content {
  flex: 1;
}

.service-area-label {
  color: #FFC107;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.service-area-heading {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.service-area-cities span {
  background: rgba(255,193,7,0.1);
  color: #FFC107;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255,193,7,0.25);
}

.service-area-visual {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
}

.map-placeholder {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,193,7,0.15) 0%, rgba(255,193,7,0.03) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,193,7,0.2);
}
.map-placeholder i {
  font-size: 4rem;
  color: #FFC107;
  opacity: 0.6;
}

/* ---------- 8. PRICING ---------- */
.pricing-section {
  padding: 70px 0;
  background: #F5F5F5;
}

.pricing-intro {
  text-align: center;
  color: #666;
  max-width: 600px;
  margin: -20px auto 40px;
  font-size: 1rem;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 10px;
  text-align: center;
  border: 1.5px solid #eee;
  transition: all 0.25s;
  position: relative;
}
.pricing-card:hover {
  border-color: #FFC107;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.pricing-card.featured {
  border-color: #FFC107;
  box-shadow: 0 4px 20px rgba(255,193,7,0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFC107;
  color: #111;
  padding: 4px 16px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-icon {
  font-size: 2.5rem;
  color: #FFC107;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.pricing-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 18px;
}

/* ---------- 9. FAQ ---------- */
.faq-section {
  padding: 70px 0;
  background: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #222;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover {
  color: #FFC107;
}

.faq-icon {
  font-size: 0.8rem;
  color: #FFC107;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 18px;
}

.faq-answer p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.6;
  padding-right: 20px;
}

.faq-items-list {
  -webkit-columns: 2;
  columns: 2;
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.faq-items-list li {
  color: #555;
  font-size: 0.9rem;
  padding: 4px 0 4px 20px;
  position: relative;
  break-inside: avoid;
}

.faq-items-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #FFC107;
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

@media (max-width: 480px) {
  .faq-items-list {
    columns: 1;
  }
}

/* ---------- 10. FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(145deg, #1a1a1a, #111);
  padding: 70px 0;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.final-cta p {
  color: #bbb;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.final-cta-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  color: #888;
  font-size: 0.88rem;
}
.final-cta-details i {
  color: #FFC107;
  margin-right: 4px;
}

/* ---------- 11. FOOTER ---------- */
.site-footer {
  background: #0A0A0A;
  color: #ccc;
  padding: 50px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.5;
}

.site-footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #FFC107;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-contact p,
.footer-hours p {
  font-size: 0.88rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact i {
  color: #FFC107;
  width: 16px;
  text-align: center;
}
.footer-contact a:hover {
  color: #FFC107;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.88rem;
  color: #ccc;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #FFC107;
}

.footer-bottom {
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #666;
}

.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #1a1a1a;
  border-radius: 50%;
  color: #888;
  font-size: 0.9rem;
  transition: all 0.25s;
  border: 1px solid #333;
}
.footer-social a:hover {
  color: #FFC107;
  border-color: #FFC107;
  background: rgba(255,193,7,0.08);
}

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #111;
  padding: 10px 16px;
  gap: 10px;
  border-top: 2px solid #FFC107;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.mobile-sticky-btn.call {
  background: #fff;
  color: #111;
}
.mobile-sticky-btn.quote {
  background: #FFC107;
  color: #111;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-visual {
    flex: 0 0 240px;
  }

  .hero-badge {
    width: 640px;
    height: 640px;
  }

  .services-band-inner {
    flex-direction: column;
  }

  .quote-form-col {
    flex: none;
    width: 100%;
  }

  .quote-form-card {
    position: static;
  }

  .remove-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-expand.open {
    max-height: 1200px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }

  .header-phone span,
  .header-btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-inner {
    height: 58px;
  }

  .hero {
    padding: 90px 0 50px;
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .hero-headline {
    font-size: 1.8rem;
  }

  .hero-subheadline {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin: 0 auto 24px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    flex: none;
  }

  .hero-badge {
    width: 450px;
    height: 450px;
  }

  .services-band {
    padding: 40px 0 50px;
  }

  .remove-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-row {
    flex-direction: column;
    gap: 16px;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .trust-bar-inner {
    gap: 16px;
  }

  .trust-item {
    font-size: 0.82rem;
  }

  .section-title-center {
    font-size: 1.5rem;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-card img {
    height: 180px;
  }

  .gallery-expand.open {
    max-height: 1600px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .service-area-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .service-area-cities {
    justify-content: center;
  }

  .service-area-heading {
    font-size: 1.6rem;
  }

  .service-area-visual {
    flex: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .final-cta h2 {
    font-size: 1.7rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.5rem;
  }

  .hero-buttons .btn-lg {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .remove-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-placeholder {
    height: 160px;
  }

  .quote-form-card {
    padding: 24px 20px;
  }
}

/* ---------- IMAGE LIGHTBOX ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  animation: lightboxZoom 0.25s ease;
  cursor: default;
}

@keyframes lightboxZoom {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.lightbox-nav:hover {
  background: rgba(255,193,7,0.25);
}
.lightbox-prev {
  left: 16px;
}
.lightbox-next {
  right: 16px;
}

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #ccc;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.6);
  padding: 6px 18px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .lightbox {
    padding: 20px;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ---------- CALLBACK MODAL ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.65);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.25s ease;
}
.modal-overlay.open {
  display: flex;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px 28px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #999;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, #FFC107, #E5AC00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: #111;
}

.modal-header h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #111;
}

.modal-header p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.5;
}

.modal-form .form-group {
  margin-bottom: 14px;
}

.modal-success {
  text-align: center;
  padding: 30px 10px;
}
.modal-success i {
  font-size: 3rem;
  color: #4CAF50;
  margin-bottom: 12px;
}
.modal-success h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.modal-success p {
  color: #666;
  font-size: 0.9rem;
}

.modal-note {
  text-align: center;
  margin-top: 18px;
  font-size: 0.82rem;
  color: #999;
}
.modal-note a {
  color: #FFC107;
}
.modal-note a:hover {
  text-decoration: underline;
}

/* SMS Disclaimer */
.sms-disclaimer {
  background: #111;
  color: #999;
  padding: 40px 0 30px;
  font-size: 0.75rem;
  line-height: 1.7;
  border-top: 1px solid #222;
}
.sms-disclaimer .container {
  max-width: 800px;
}
.sms-disclaimer-title {
  color: #ccc;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sms-disclaimer-subtitle {
  color: #777;
  font-size: 0.72rem;
  margin-bottom: 18px;
}
.sms-disclaimer h5 {
  color: #bbb;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 16px 0 6px;
}
.sms-disclaimer p {
  margin-bottom: 8px;
}
.sms-disclaimer ul {
  padding-left: 20px;
  margin: 8px 0 12px;
}
.sms-disclaimer ul li {
  margin-bottom: 8px;
}
.sms-disclaimer-link {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #222;
}
.sms-disclaimer a {
  color: #FFC107;
  text-decoration: none;
}
.sms-disclaimer a:hover {
  text-decoration: underline;
}

/* Print */
@media print {
  .site-header, .mobile-sticky-cta, .final-cta {
    display: none;
  }
  body {
    color: #000;
    background: #fff;
  }
}
