/* Google Ads Landing Page Premium Custom Styles */
:root {
  --brand-blue: #0a1d4d;
  --brand-orange: #f39c12;
  --whatsapp-green: #25d366;
  --call-blue: #2196f3;
}

body {
  background-color: #ffffff;
}

/* Hero Section */
.ads-hero {
  background:
    linear-gradient(to right, rgba(10, 29, 77, 0.9), rgba(10, 29, 77, 0.7)),
    url("../img/slider/homee.jpg") center/cover no-repeat;
  padding: 80px 0 60px;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: #f8f9fa;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.6;
}

/* CTA Buttons */
.btn-ads-orange {
  background-color: var(--brand-orange);
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-ads-orange:hover {
  background-color: #d68910;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
  text-decoration: none;
}
.btn-ads-whatsapp {
  background-color: var(--whatsapp-green);
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-ads-whatsapp:hover {
  background-color: #1ebe57;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  text-decoration: none;
}

/* Lead Form */
.lead-form-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-top: 6px solid var(--brand-orange);
  position: relative;
  z-index: 10;
}
.form-control {
  border-radius: 5px;
  border: 1px solid #ced4da;
  padding: 12px 15px;
  height: auto;
  font-size: 15px;
  background-color: #fcfcfc;
}
.form-control:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.15);
  background-color: #fff;
}

/* Trust Badges */
.trust-section {
  background: #f8f9fa;
  padding: 40px 0;
  border-bottom: 1px solid #eaeaea;
}
.trust-box {
  text-align: center;
  padding: 25px 15px;
  margin-bottom: 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: calc(100% - 20px);
}
.trust-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-orange);
}
.trust-icon {
  font-size: 50px;
  color: var(--brand-orange);
  margin-bottom: 15px;
}
.trust-text {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 17px;
  margin: 0;
}

/* Google Reviews Trust Badge Custom CSS */
.google-trust-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  gap: 20px;
}
.border-left-lg {
  border-left: 1px solid #dee2e6;
}

/* General Section Styling */
.section-heading {
  color: var(--brand-blue);
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}
.section-heading::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--brand-orange);
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Service Cards */
.service-card-ads {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 35px 20px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: left;
}
.service-card-ads:hover {
  border-color: var(--brand-blue);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Why Choose Us List */
.check-list li {
  font-size: 18px;
  margin-bottom: 18px;
  color: #444;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.check-list i {
  color: var(--brand-orange);
  font-size: 26px;
  margin-right: 15px;
}

/* Service Areas */
.area-card {
  background: var(--brand-blue);
  color: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 25px rgba(10, 29, 77, 0.15);
  border-bottom: 5px solid var(--brand-orange);
  transition: 0.3s;
}
.area-card:hover {
  transform: scale(1.03);
}
.area-card h3 {
  color: var(--brand-orange);
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.area-card p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
  font-weight: 300;
}

/* Location Badges Hover Effect */
.area-card .auto-fill-trigger {
  transition: all 0.25s ease-in-out !important;
  cursor: pointer !important;
}
.area-card .badge-light.auto-fill-trigger:hover {
  background-color: var(--brand-orange) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(243, 156, 18, 0.4) !important;
}
.area-card .badge-primary.auto-fill-trigger:hover {
  background-color: var(--brand-orange) !important;
  color: #ffffff !important;
  border-color: var(--brand-orange) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(243, 156, 18, 0.4) !important;
}

/* Stats */
.stat-box {
  text-align: center;
  padding: 30px 15px;
  position: relative;
}
.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-text {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border-left: 4px solid var(--brand-orange);
  transition: 0.3s;
}
.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.faq-item h3 {
  color: var(--brand-blue);
  font-weight: 800;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-item h3:hover {
  color: var(--brand-orange);
}
.faq-item h3 i {
  color: var(--brand-orange);
  margin-right: 12px;
  margin-top: 2px;
  font-size: 24px;
}
.faq-item p {
  margin: 0;
  color: #555;
  padding-left: 36px;
  line-height: 1.7;
  display: none;
  margin-top: 12px;
}

/* Desktop Custom Floating Buttons */
.float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-green);
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulsing-wa 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
.float:hover {
  color: #fff;
}
.float.call {
  background-color: var(--call-blue);
  bottom: 165px;
  animation: pulsing-call 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulsing-wa {
  to {
    box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
  }
}
@keyframes pulsing-call {
  to {
    box-shadow: 0 0 0 25px rgba(33, 150, 243, 0);
  }
}

/* Sticky Mobile Footer (CRITICAL) */
.mobile-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
.sticky-item {
  flex: 1;
  text-align: center;
  padding: 12px 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sticky-item:hover {
  color: #fff;
  text-decoration: none;
}
.sticky-item i {
  font-size: 24px;
  margin-bottom: 2px;
}
.sticky-call {
  background-color: var(--call-blue);
}
.sticky-wa {
  background-color: var(--whatsapp-green);
}

/* Exit Intent Popup Modal */
.exit-intent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.exit-intent-modal {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-top: 5px solid var(--brand-orange);
  animation: popup-drop 0.4s ease-out forwards;
}
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
}
.close-popup:hover {
  color: #333;
}
@keyframes popup-drop {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Squeeze Page Custom Header */
.ads-standalone-header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Clickable interactive pointers for JS functions */
.auto-fill-trigger {
  cursor: pointer !important;
  transition: all 0.3s ease;
}
.auto-fill-trigger:active {
  transform: scale(0.95);
}

/* Lightbox Image Hover Effect */
.image-popup img {
  transition: transform 0.3s ease;
}
.image-popup:hover img {
  transform: scale(1.03);
  cursor: zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* Universal Fix for Nice Select Dropdowns (Hero & Footer) */
.nice-select .list {
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  max-height: 220px !important;
  overflow-y: auto !important;
  top: auto !important;
  bottom: 100% !important;
  margin-bottom: 5px !important;
  border-radius: 5px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.15) !important;
}
.nice-select .option {
  display: block !important;
  width: 100% !important;
  text-align: left !important;
  white-space: normal !important;
}
.nice-select .list::-webkit-scrollbar {
  width: 6px;
}
.nice-select .list::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.nice-select .list::-webkit-scrollbar-thumb {
  background-color: var(--brand-orange);
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .copyright-line {
    padding-bottom: 40px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .stat-box::after {
    display: none;
  }
  body {
    padding-bottom: 60px; /* Space for the new mobile bottom footer */
  }
  .google-trust-badge {
    flex-direction: column;
    border-radius: 15px;
    padding: 20px;
    width: 100%;
  }
  .google-trust-badge .border-left-lg {
    border-left: none !important;
    border-top: 1px solid #e0e0e0;
    padding-left: 0 !important;
    margin-left: 0 !important;
    padding-top: 15px;
    margin-top: 15px;
    text-align: center !important;
  }
  .trust-badge-center {
    text-align: center !important;
  }

  /* 1. Stack Before & After images into two different rows */
  .before-after-wrapper .col-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-bottom: 25px; /* Adds space between the before and after image */
  }

  /* 2. Make Expert Services show exactly one card per row */
  #services-grid > div[class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
