/* ========================================
   HOME PAGE CSS FIXES AND IMPROVEMENTS
   ======================================== */

/* ===== 1. EXPLORE SERVICES BUTTON - Remove shadow and flickering ===== */
.about .about-content .cta-buttons .btn.btn-primary {
  box-shadow: none !important;
  animation: none !important;
}

.about .about-content .cta-buttons .btn.btn-primary:hover {
  box-shadow: none !important;
  animation: none !important;
}

.about .about-content .cta-buttons .btn.btn-outline {
  box-shadow: none !important;
  animation: none !important;
}

.about .about-content .cta-buttons .btn.btn-outline:hover {
  box-shadow: none !important;
  animation: none !important;
}

/* ===== 2. COMPREHENSIVE DIGITAL SOLUTIONS - Add underline, remove flickering ===== */
.features .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgb(229, 84, 0), transparent);
  margin: 15px auto 0;
  border-radius: 2px;
}

.feature-box {
  animation: none !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
}

.feature-box:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
  animation: none !important;
}

.feature-box::before {
  display: none !important;
}

/* ===== 3. DIGITAL MARKETING SOLUTIONS - Make only 5 cards visible ===== */
.index-page .services-grid {
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 20px !important;
}

.service-panel .services-grid .service-card:nth-child(n+6) {
  display: none !important;
}

.service-card {
  box-shadow: none !important;
  animation: none !important;
}

.service-card:hover {
  box-shadow: 0 8px 20px rgba(229, 84, 0, 0.1) !important;
  animation: none !important;
}

.service-card::before {
  display: none !important;
}

/* ===== 4. SCHEDULE YOUR FREE CONSULTATION - Add underline, remove flickering, decrease button size ===== */
#consultation-section-title h2 {
  position: relative !important;
  display: inline-block !important;
  padding-bottom: 25px !important;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
}

#consultation-section-title h2::after {
  content: "" !important;
  position: absolute !important;
  display: block !important;
  width: 150px !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, rgb(229, 84, 0), transparent) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 0 !important;
  border-radius: 2px !important;
}

#consultation-section-title {
  margin-bottom: 3rem !important;
}

.book-a-service .reservation-form-container .btn-book-table {
  padding: 12px 28px !important;
  font-size: 15px !important;
  box-shadow: none !important;
  animation: none !important;
}

.book-a-service .reservation-form-container .btn-book-table:hover {
  box-shadow: none !important;
  animation: none !important;
  transform: none !important;
}

.book-a-service .reservation-form-container .btn-book-table::before {
  display: none !important;
}

.book-a-service .reservation-form-container .btn-book-table i {
  font-size: 14px !important;
}

/* ===== 5. WAYS TO REACH US - Fix styling ===== */
.book-a-service .consultation-info .contact-methods .method-item {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06) !important;
  animation: none !important;
}

.book-a-service .consultation-info .contact-methods .method-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06) !important;
  animation: none !important;
}

/* ===== 6. LOADING CIRCLE - Fix animation ===== */
.book-a-service .reservation-form-container .loading {
  animation: none !important;
}

.book-a-service .reservation-form-container .loading::after {
  animation: spin 0.8s linear infinite !important;
}

@keyframes spin {
  to {
    transform: translateY(0) rotate(360deg);
  }
}

/* ===== 7. CHOOSE YOUR SERVICE PACKAGE - Add underline, remove flickering ===== */
#service-package-header h3 {
  position: relative !important;
  display: inline-block !important;
  padding-bottom: 25px !important;
  margin-bottom: 30px !important;
}

#service-package-header h3::after {
  content: "" !important;
  position: absolute !important;
  display: block !important;
  width: 150px !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, rgb(229, 84, 0), transparent) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 0 !important;
  border-radius: 2px !important;
}

#service-package-header {
  margin-bottom: 4rem !important;
}

.Price .event-packages .package-card {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
  animation: none !important;
  transform: none !important;
}

.Price .event-packages .package-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
  animation: none !important;
  transform: none !important;
}

/* Remove the scale effect on featured/center card */
.Price .event-packages .package-card.featured {
  transform: none !important;
  scale: 1 !important;
}

.Price .event-packages .package-card.standard.featured {
  transform: none !important;
  scale: 1 !important;
}

.Price .event-packages .package-card .package-cta .btn-package {
  box-shadow: none !important;
  animation: none !important;
}

.Price .event-packages .package-card .package-cta .btn-package:hover {
  box-shadow: none !important;
  animation: none !important;
  transform: none !important;
}

.Price .event-packages .package-card .package-cta .btn-package::before {
  display: none !important;
}

/* ===== 8. QUICK SERVICE INQUIRY - Remove button flickering and shadow, make button smaller ===== */
.Price .booking-section .quick-booking-form .btn-submit {
  padding: 14px 32px !important;
  width: auto !important;
  max-width: 200px !important;
  box-shadow: none !important;
  animation: none !important;
}

.Price .booking-section .quick-booking-form .btn-submit:hover {
  box-shadow: none !important;
  animation: none !important;
  transform: none !important;
}

/* ===== 9. GET IN TOUCH - Remove shadow on hover for button ===== */
.contact .contact-form-wrapper .php-email-form button {
  box-shadow: none !important;
  animation: none !important;
}

.contact .contact-form-wrapper .php-email-form button:hover {
  box-shadow: none !important;
  animation: none !important;
  transform: none !important;
}

.contact .contact-form-wrapper .php-email-form button::before {
  display: none !important;
}

/* ===== 10. MOBILE VIEW IMPROVEMENTS ===== */
@media (max-width: 768px) {

  /* Transform Your Digital Presence - Move text ABOVE image */
  .about .row {
    flex-direction: column !important;
  }

  .about .col-lg-6:first-child {
    order: 1 !important;
    margin-bottom: -15px !important;
  }

  .about .col-lg-6:last-child {
    order: 2 !important;
    margin-top: 40px !important;
    margin-bottom: 0 !important;
  }

  /* Remove top padding from hero section in mobile */
  .about.section {
    padding-top: 25px !important;
    padding-bottom: 30px !important;
    margin-top: 0 !important;
  }

  /* Move text content up */
  .about .about-content {
    margin-top: 0 !important;
  }

  /* Hide background decorations in mobile */
  .about-bg-decoration,
  .about .about-bg-decoration,
  .curved-shape,
  .dot-particle,
  .line-decoration,
  .image-lines,
  .straight-line {
    display: none !important;
  }

  /* Reduce space above Why Choose Us section */
  .features.section {
    padding-top: 25px !important;
    margin-top: 0 !important;
  }

  /* Make hero image smaller in mobile */
  .about .about-image img {
    max-height: 300px !important;
    object-fit: cover !important;
  }

  /* Center the stats overlay on mobile */
  .about .about-image .stats-overlay {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    max-width: 350px !important;
  }

  /* Center social links in Follow Us section */
  .Price .booking-section .booking-info .social-links {
    justify-content: center !important;
  }

  /* Make buttons smaller and better looking */
  .about .about-content .cta-buttons .btn {
    padding: 12px 20px !important;
    font-size: 14px !important;
    width: 100% !important;
  }

  /* Digital Marketing Solutions - Better mobile view */
  .index-page .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .service-panel .services-grid .service-card:nth-child(n+6) {
    display: block !important;
  }

  .service-card {
    padding: 20px 16px !important;
  }

  .service-icon {
    width: 55px !important;
    height: 55px !important;
  }

  .service-icon i {
    font-size: 26px !important;
  }

  .service-card h4 {
    font-size: 15px !important;
  }

  .service-card p {
    font-size: 12px !important;
  }

  /* PRICING CARDS - Show only popular/featured card in mobile */
  .Price .event-packages .col-lg-4 {
    display: none !important;
  }

  /* Show only the featured/popular card - using class selector for better compatibility */
  .Price .event-packages .col-lg-4:nth-child(2) {
    display: block !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .Price .event-packages .package-card {
    margin-bottom: 0 !important;
  }
}

/* ===== 11. TABLET VIEW - Choose Your Service Package ===== */
@media (min-width: 769px) and (max-width: 991px) {

  /* Hero section - move image down */
  .about .about-image {
    margin-top: 40px !important;
  }

  /* Hide background decorations in hero section for tablet */
  .about-bg-decoration,
  .about .about-bg-decoration,
  .curved-shape,
  .dot-particle,
  .line-decoration,
  .image-lines,
  .straight-line {
    display: none !important;
  }

  /* ===== HOME PAGE ONLY - Using ID selectors for specificity ===== */

  /* Transform Your Digital Presence - Hero Section */
  #hero-section .section-title h2,
  #hero-section .about-content h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    padding: 0 20px !important;
    margin-bottom: 1rem !important;
  }

  #hero-section .about-content p {
    font-size: 1rem !important;
    padding: 0 30px !important;
    margin-top: 1rem !important;
  }

  /* Comprehensive Digital Solutions - Features Section */
  #features-section .section-title {
    padding: 0 30px !important;
    margin-bottom: 3rem !important;
  }

  #features-section .section-title h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    padding: 0 20px !important;
    margin-bottom: 1rem !important;
  }

  #features-section .section-title::after {
    width: 120px !important;
    margin-top: 15px !important;
  }

  /* Schedule Your Free Consultation */
  #consultation-section .section-title {
    padding: 0 30px !important;
    margin-bottom: 3rem !important;
  }

  #consultation-section-title h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    padding: 0 20px !important;
    padding-bottom: 20px !important;
    margin-bottom: 1rem !important;
  }

  #consultation-section-title h2::after {
    width: 120px !important;
    margin-top: 15px !important;
  }

  /* Choose Your Service Package */
  #pricing-section .section-title {
    padding: 0 30px !important;
    margin-bottom: 1.25rem !important;
  }

  #service-package-header h3 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    padding: 0 20px !important;
    padding-bottom: 20px !important;
    margin-bottom: 1rem !important;
  }

  #service-package-header h3::after {
    width: 120px !important;
    margin-top: 15px !important;
  }

  /* Client Success Stories - Testimonials */
  #testimonials .section-title {
    padding: 0 30px !important;
    margin-bottom: 3rem !important;
  }

  #testimonials .section-title h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    padding: 0 20px !important;
    margin-bottom: 1rem !important;
  }

  /* Trusted by Leading Companies */
  #trusted-companies-section .mas-companies-title {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    padding: 0 20px !important;
    margin-bottom: 2rem !important;
  }

  /* Visit Our Office */
  #visit-office-section .section-title {
    padding: 0 30px !important;
    margin-bottom: 3rem !important;
  }

  #visit-office-section .section-title h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    padding: 0 20px !important;
    margin-bottom: 1rem !important;
  }

  /* Get In Touch - Contact Section */
  #contact-section .section-title {
    padding: 0 30px !important;
    margin-bottom: 3rem !important;
  }

  #contact-section .section-title h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    padding: 0 20px !important;
    margin-bottom: 1rem !important;
  }

  /* Quick Service Inquiry */
  #quick-inquiry-section h4 {
    font-size: 1.5rem !important;
    padding: 0 15px !important;
  }

  /* Section padding for home page sections */
  #hero-section,
  #features-section,
  #consultation-section,
  #pricing-section,
  #testimonials,
  #trusted-companies-section,
  #visit-office-section,
  #contact-section {
    padding: 50px 0 !important;
  }

  /* PRICING CARDS - Show only popular/featured card in tablet */
  .Price .event-packages .col-lg-4 {
    display: none !important;
  }

  /* Show only the featured/popular card (2nd card) */
  .Price .event-packages .col-lg-4:nth-child(2) {
    display: block !important;
    flex: 0 0 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
  }

  .Price .event-packages .row {
    display: flex;
    justify-content: center;
  }

  .Price .event-packages .package-card {
    margin-bottom: 0 !important;
    height: auto !important;
  }

  .Price .event-packages .package-card.featured {
    transform: none !important;
  }

  /* Add space between Follow Us and Quick Service Inquiry */
  .Price .booking-section .booking-info .social-links-section {
    margin-bottom: 60px !important;
    padding-bottom: 40px !important;
  }
}

/* ===== TABLET VIEW - Wider cards for better layout ===== */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Show only popular card */
  .Price .event-packages .col-lg-4 {
    display: none !important;
  }

  .Price .event-packages .col-lg-4:nth-child(2) {
    display: block !important;
    flex: 0 0 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
  }
}

/* ===== 12. REMOVE ANIMATIONS ON SPECIFIC ELEMENTS ===== */
.float-animation,
[data-aos],
.feature-box,
.service-card,
.package-card,
.btn-package,
.btn-submit,
.btn-book-table,
.btn-primary,
.btn-outline {
  animation: none !important;
  -webkit-animation: none !important;
}

/* ===== 13. REMOVE ALL TRANSLATEY HOVER EFFECTS ===== */
/* Remove up/down movement on ALL cards */
.feature-box:hover,
.service-card:hover,
.package-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.info-card:hover,
.method-item:hover,
.transport-item:hover,
.trust-badge:hover,
.workspace-info-box:hover,
.faq-item:hover,
.gallery-item:hover {
  transform: none !important;
  -webkit-transform: none !important;
}

/* Remove up/down movement on ALL buttons */
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover,
.btn-package:hover,
.btn-submit:hover,
.btn-book-table:hover,
button:hover,
a.btn:hover,
.cta-buttons .btn:hover,
.action-buttons a:hover,
.workspace-booking-btn:hover,
.faq-cta-btn:hover,
.btn-link:hover {
  transform: none !important;
  -webkit-transform: none !important;
}

/* Remove up/down movement on social links */
.social-link:hover,
.social-links a:hover,
.social-icon:hover {
  transform: none !important;
  -webkit-transform: none !important;
}

/* Remove up/down movement on service tabs */
.service-tab:hover {
  transform: none !important;
  -webkit-transform: none !important;
}

/* Remove up/down movement on hour items */
.hour-item:hover,
.workspace-timing-row:hover {
  transform: none !important;
  -webkit-transform: none !important;
}

/* Keep only icon rotations and scales, but NO translateY */
.feature-box:hover .feature-box-icon {
  transform: scale(1.05) !important;
  -webkit-transform: scale(1.05) !important;
}

.service-card:hover .service-icon {
  transform: scale(1.05) !important;
  -webkit-transform: scale(1.05) !important;
}

/* Remove translateY from images */
.about-image img:hover,
.gallery-item img:hover,
.office-image:hover {
  transform: scale(1.02) !important;
  -webkit-transform: scale(1.02) !important;
}

/* ===== 14. ADDITIONAL MOBILE IMPROVEMENTS (SMALL SCREENS) ===== */
@media (max-width: 576px) {

  /* Services tabs - make them stack vertically */
  .services-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .service-tab {
    width: 100%;
    justify-content: center;
  }

  .service-tab:hover {
    transform: none !important;
  }

  /* Digital Marketing Solutions - Single column */
  .index-page .services-grid {
    grid-template-columns: 1fr !important;
  }

  /* Feature boxes - Better spacing */
  .feature-box {
    padding: 1.5rem 1rem !important;
    min-height: auto !important;
  }

  .feature-box:hover {
    transform: none !important;
  }

  .feature-box-icon {
    width: 60px !important;
    height: 60px !important;
  }

  .feature-box-icon i {
    font-size: 1.5rem !important;
  }

  .feature-box h3 {
    font-size: 1.2rem !important;
  }

  /* Quick Service Inquiry - Full width button */
  .Price .booking-section .quick-booking-form .btn-submit {
    max-width: 100% !important;
    width: 100% !important;
  }

  .Price .booking-section .quick-booking-form .btn-submit:hover {
    transform: none !important;
  }
}

/* ===== 15. OVERRIDE ALL MAIN.CSS HOVER TRANSFORMS ===== */
/* This section specifically targets and overrides the main.css hover effects */

/* About section buttons */
.about .about-content .cta-buttons .btn.btn-primary:hover,
.about .about-content .cta-buttons .btn.btn-outline:hover {
  transform: none !important;
}

/* Feature boxes */
.features .feature-box:hover {
  transform: none !important;
}

/* Service cards */
#our-services-section .service-card:hover {
  transform: none !important;
}

/* Book a service section */
.book-a-service .reservation-form-container .btn-book-table:hover {
  transform: none !important;
}

.book-a-service .consultation-info .contact-methods .method-item:hover {
  transform: none !important;
}

/* Price section */
.Price .event-packages .package-card:hover {
  transform: none !important;
}

.Price .event-packages .package-card .package-cta .btn-package:hover {
  transform: none !important;
}

.Price .booking-section .quick-booking-form .btn-submit:hover {
  transform: none !important;
}

/* Contact section */
.contact .contact-card:hover {
  transform: none !important;
}

.contact .contact-form-wrapper .php-email-form button:hover {
  transform: none !important;
}

.contact .btn-submit:hover {
  transform: none !important;
}

.contact .trust-badge:hover {
  transform: none !important;
}

.contact .social-icon:hover {
  transform: none !important;
}

/* Testimonials */
.testimonials .testimonial-card:hover {
  transform: none !important;
}

/* Location/Visit Office section */
.location .contact-card:hover,
.workspace-info-box:hover {
  transform: none !important;
}

.location .transport-item:hover {
  transform: none !important;
}

.location .action-buttons .btn-primary:hover {
  transform: none !important;
}

/* Scroll to top button */
.scroll-top:hover {
  transform: none !important;
}

/* Gallery items */
.event-gallery-grid .gallery-item:hover {
  transform: none !important;
}

/* FAQ section */
.faq-cta-btn:hover {
  transform: none !important;
}

/* All anchor tags with button classes */
a.btn:hover,
a.btn-primary:hover,
a.btn-secondary:hover,
a.btn-outline:hover,
a.workspace-booking-btn:hover,
a.btn-link:hover {
  transform: none !important;
}

/* Override any remaining transform effects */
[class*="btn"]:hover {
  transform: none !important;
}

/* Ensure icons can still have subtle effects but no parent movement */
.feature-box:hover .feature-box-icon,
.service-card:hover .service-icon,
.contact-card:hover .card-icon,
.workspace-info-box:hover .workspace-box-badge {
  transform: scale(1.05) !important;
}

/* But ensure the icon transform doesn't affect parent */
.feature-box-icon,
.service-icon,
.card-icon,
.workspace-box-badge {
  display: inline-flex !important;
  will-change: transform !important;
}



/* ===== 16. ADDITIONAL MOBILE CENTERING FIXES ===== */
@media (max-width: 768px) {

  /* Center Follow Us social icons */
  .Price .booking-section .booking-info .social-links-section {
    text-align: center !important;
  }

  .Price .booking-section .booking-info .social-links-section h5 {
    text-align: center !important;
  }

  /* Center contact methods */
  .Price .booking-section .booking-info .contact-methods {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .Price .booking-section .booking-info .contact-methods .contact-item {
    width: 100% !important;
    max-width: 350px !important;
  }

  /* Center stats overlay */
  .about .about-image .stats-overlay {
    justify-content: center !important;
  }

  /* Ensure proper spacing */
  .about.section {
    margin-bottom: 0 !important;
  }

  .features.section {
    margin-top: 0 !important;
  }
}

/* ===== 17. FIX NAVIGATION LINKS ===== */
/* Ensure all navigation links work properly */
.nav-link,
.mobile-nav-link {
  cursor: pointer !important;
  pointer-events: auto !important;
}

.nav-link:hover,
.mobile-nav-link:hover {
  opacity: 0.8 !important;
}

/* Fix any z-index issues that might block clicks */
.offcanvas {
  z-index: 1050 !important;
}

/* ===== DESKTOP: Move hero section up ===== */
@media (min-width: 992px) {
  #hero-section.about.section {
    padding-top: 60px !important;
  }
}

/* ===== $299 AUDIT REPORT BANNER ===== */
.audit-report-banner {
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
  border-radius: 16px;
  padding: 28px 28px 24px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.audit-report-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(229, 84, 0, 0.12);
  border-radius: 50%;
}

.audit-banner-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.audit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 107, 0));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audit-icon i {
  font-size: 1.4rem;
  color: #fff;
}

.audit-badge {
  background: rgba(229, 84, 0, 0.2);
  color: rgb(255, 140, 60);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(229, 84, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.audit-report-banner h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.audit-report-banner>p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.audit-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.audit-includes li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  line-height: 1.4;
}

.audit-includes li i {
  color: rgb(229, 84, 0);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.audit-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.audit-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}

.audit-price .price-old {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  margin-right: 6px;
}

.audit-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 107, 0));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.audit-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 84, 0, 0.4);
}

@media (max-width: 576px) {
  .audit-includes {
    grid-template-columns: 1fr;
  }

  .audit-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .audit-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Reduce section-to-section gap on home page ── */
.index-page section,
.index-page .section {
  padding: 52px 0;
}

@media (max-width: 767px) {

  .index-page section,
  .index-page .section {
    padding: 36px 0;
  }
}

/* ── Global section spacing fix — all pages ── */
section,
.section {
  padding: 48px 0 !important;
}

section.py-5 {
  padding: 48px 0 !important;
}

@media (max-width: 1199px) {

  section,
  .section,
  section.py-5 {
    padding: 36px 0 !important;
  }
}

@media (max-width: 767px) {

  section,
  .section,
  section.py-5 {
    padding: 28px 0 !important;
  }
}

/* Hero sections keep more breathing room */
.pg-hero,
#hero-section,
.services-hero-section,
.hero-section {
  padding: 0 !important;
}