/* Pestokart India – Tailwind-style theme: dark + orange */
@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

:root {
  /* Primary: brand orange */
  --color-primary: #F88119;
  --color-primary-hover: #d96f12;
  --color-primary-light: #FFE8CC;
  /* Dark: brand dark */
  --color-dark: #0E0E0E;
  --color-dark-hover: #1a1a1a;
  /* Neutrals */
  --color-bg-alt: #f8fafc;
  --color-border: #e2e8f0;
  --color-border-light: #e5e7eb;
  --color-text: #111827;
  --color-text-muted: #64748b;
  --color-card-bg: #ffffff;
  /* WhatsApp brand */
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #20bd5a;
  /* Icon size for inline icons */
  --icon-size: 1.1em;
  --icon-size-sm: 0.95em;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-card-bg);
  color: var(--color-text);
  line-height: 1.6;
  position: relative;
}

/* ----- Background animation: spray repelling bugs ----- */
.bg-pest-animation {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-pest-animation .bg-spray-icon {
  position: absolute;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--color-primary);
  opacity: 0.07;
  animation: bg-spray-pulse 3s ease-in-out infinite;
}

.bg-pest-animation .bg-spray-icon:nth-child(1) { animation-delay: 0s; }
.bg-pest-animation .bg-spray-icon:nth-child(2) { animation-delay: 0.8s; }
.bg-pest-animation .bg-spray-icon:nth-child(3) { animation-delay: 1.6s; }
.bg-pest-animation .bg-spray-icon:nth-child(4) { animation-delay: 2.2s; }

@keyframes bg-spray-pulse {
  0%, 100% { opacity: 0.06; transform: scale(1); }
  50% { opacity: 0.11; transform: scale(1.08); }
}

.bg-pest-animation .bg-bug-icon {
  position: absolute;
  font-size: clamp(0.9rem, 2vw, 1.4rem);
  color: var(--color-text-muted);
  opacity: 0.08;
  will-change: transform;
}

.bg-pest-animation .bg-bug-float {
  opacity: 0.06;
  font-size: clamp(0.75rem, 1.5vw, 1.1rem);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.white { color: #fff !important; }
.text-align-center { text-align: center; }
.is-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.row.no-vertical-margin { margin-top: 0; margin-bottom: 0; }

/* ----- Action bar (top strip) ----- */
.action-bar {
  background-color: var(--color-dark);
  color: #fff;
  font-size: 0.875rem;
}

.action-bar-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
  padding: 0.5rem 0;
}

.action-bar-number {
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.action-bar-number:hover {
  text-decoration: underline;
  color: #fff;
}

.action-bar-sep {
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  user-select: none;
}

.action-bar-link {
  color: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.action-bar-link:hover {
  color: #fff;
  text-decoration: underline;
}

.action-bar-whatsapp {
  color: var(--color-whatsapp);
}

.action-bar-whatsapp:hover {
  color: var(--color-whatsapp-hover);
}

.btn-call {
  margin-left: 0;
}

.action-bar-mobile-question {
  display: none;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  animation: action-bar-question-pulse 2.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes action-bar-question-pulse {
  0%, 100% { opacity: 0.92; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

@media (max-width: 768px) {
  .action-bar-number,
  .action-bar-sep,
  .action-bar-link {
    display: none !important;
  }
  .action-bar-mobile-question {
    display: block;
  }
  .action-bar-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
  }
  .action-bar {
    font-size: 0.8125rem;
  }
  .btn-call {
    width: 100%;
    max-width: 280px;
    margin: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .action-bar-mobile-question {
    font-size: 0.85rem;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
}

/* ----- Iconify inline icons ----- */
.icon-inline {
  font-size: 1em;
  vertical-align: -0.15em;
  margin-right: 0.35em;
}

.btn .iconify,
.action-bar-link .iconify,
.contact-details a .iconify {
  font-size: 1.05em;
}

/* ----- Inline icons (SVG mask) ----- */
.icon-svg {
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  flex-shrink: 0;
  background: currentColor;
  vertical-align: -0.2em;
}
.icon-svg.icon-sm {
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
}

.icon-phone {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 2.09 2.09 0 00.7 1.61 10.86 10.86 0 005 5 2.09 2.09 0 001.61.7A2 2 0 0022 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 2.09 2.09 0 00.7 1.61 10.86 10.86 0 005 5 2.09 2.09 0 001.61.7A2 2 0 0022 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-whatsapp {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-contact {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 2.09 2.09 0 00.7 1.61 10.86 10.86 0 005 5 2.09 2.09 0 001.61.7A2 2 0 0022 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 2.09 2.09 0 00.7 1.61 10.86 10.86 0 005 5 2.09 2.09 0 001.61.7A2 2 0 0022 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-chevron-right {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-location {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #fff;
  box-shadow: 0 4px 12px rgba(11, 107, 62, 0.35);
}

.btn-primary-dark {
  background-color: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}

.btn-primary-dark:hover {
  background-color: var(--color-dark-hover);
  border-color: var(--color-dark-hover);
  color: #fff;
}

.btn-secondary-light {
  background-color: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn-secondary-light:hover {
  background-color: var(--color-dark);
  color: #fff;
  text-decoration: none;
}

.btn-secondary-dark {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.9);
}

.btn-secondary-dark:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

.btn-small {
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

@media (max-width: 600px) {
  .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.95rem;
  }
  .btn-small {
    padding: 0.45rem 0.85rem;
    font-size: 0.875rem;
  }
}

/* ----- Navigation ----- */
.navigation {
  background-color: var(--color-card-bg);
  border-bottom: 1px solid var(--color-border-light);
}

.utility-nav-wrapper {
  border-bottom: 1px solid var(--color-border-light);
}

.utility-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.skip-to-content {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--color-dark);
  color: #fff;
}

.skip-to-content:focus {
  left: 1rem;
  top: 0.5rem;
}

.navigation-main-logo-wrapper {
  display: inline-block;
}

.navigation-main-logo {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  transition: color 0.2s ease;
}

.navigation-main-logo-wrapper:hover .navigation-main-logo {
  color: var(--color-primary);
}

.utility-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.utility-nav-links a {
  color: var(--color-text);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.utility-nav-links a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.utility-nav-mobile-burger-btn {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 1.35rem;
  color: var(--color-text);
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
}

.utility-nav-mobile-burger-btn:hover {
  color: var(--color-primary);
}

.nav-toggle-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.nav-toggle-close {
  opacity: 0;
  pointer-events: none;
}

.utility-nav-mobile-burger-btn.is-open .nav-toggle-menu {
  opacity: 0;
  pointer-events: none;
}

.utility-nav-mobile-burger-btn.is-open .nav-toggle-close {
  opacity: 1;
  pointer-events: auto;
}

.global-nav-wrapper {
  padding: 0.5rem 0;
}

.global-nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0 1.5rem;
}

.global-nav-link {
  color: var(--color-text);
  font-weight: 600;
  padding: 0.5rem 0;
}

.global-nav-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

@media (max-width: 768px) {
  .utility-nav-mobile-burger-btn {
    display: block;
  }

  .utility-nav-links li:not(.utility-nav-mobile) {
    display: none;
  }

  .global-nav-wrapper {
    display: none;
    padding: 1rem 0;
  }

  .global-nav-wrapper.open {
    display: block;
  }

  .global-nav-list {
    flex-direction: column;
  }
}

/* ----- Local nav strip ----- */
.local-nav-container {
  background-color: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border-light);
}

.local-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.75rem 0;
}

.local-nav-menu-item.parent a {
  font-weight: 700;
  color: var(--color-dark);
}

.local-nav-menu-items {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0 0.75rem;
}

.local-nav-menu-item.child a {
  color: var(--color-text);
}

.local-nav-menu-item.child a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

@media (max-width: 768px) {
  .local-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .local-nav-menu-items {
    gap: 0.5rem;
  }
  .local-nav-menu-item.child {
    font-size: 0.875rem;
  }
}

/* ----- Hero (image from Reference folder) ----- */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, rgba(12, 31, 23, 0.92) 0%, rgba(12, 31, 23, 0.78) 70%), var(--color-dark) url("Reference/Gemini_Generated_Image_f22x7qf22x7qf22x.png") 50% 50% / cover no-repeat;
  color: #fff;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}

.hero-section {
  position: relative;
  padding: 2rem 0 3rem;
}

/* Shorter hero on service pages */
.hero.hero-service {
  min-height: 320px;
}

/* ----- Hero Slider ----- */
.hero.hero-slider {
  overflow: hidden;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  min-height: 420px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
  background: linear-gradient(135deg, rgba(12, 31, 23, 0.9) 0%, rgba(12, 31, 23, 0.7) 70%), var(--color-dark) url("Reference/image-banner-stock-ants-flying-ants-on-poison-trap-getty-1133230104.webp") 50% 50% / cover no-repeat;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-2 { background-image: linear-gradient(135deg, rgba(12, 31, 23, 0.9) 0%, rgba(12, 31, 23, 0.7) 70%), url("Reference/Gemini_Generated_Image_f22x7qf22x7qf22x.png"); background-size: cover; background-position: 50% 50%; }
.hero-slide-3 { background-image: linear-gradient(135deg, rgba(12, 31, 23, 0.9) 0%, rgba(12, 31, 23, 0.7) 70%), url("Reference/Hero_Image.png"); background-size: cover; background-position: 50% 50%; }

.hero-slider-prev,
.hero-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: rgba(255,255,255,0.35);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.hero-slider-prev { left: 1rem; }
.hero-slider-next { right: 1rem; }

.hero-slider-dots {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hero-dot:hover {
  background: rgba(255,255,255,0.4);
}

.hero-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

.breadcrumb-centered {
  margin-bottom: 1rem;
}

.ri-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
}

.ri-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ri-breadcrumb-item + .ri-breadcrumb-item {
  margin-left: 0.35rem;
}

.ri-breadcrumb-item .fa-chevron-right {
  margin-right: 0.25rem;
  opacity: 0.85;
}

.action-bar .fa,
.utility-nav-links .fa {
  margin-right: 0.25rem;
}

.ri-breadcrumb-item a {
  color: rgba(255,255,255,0.9);
}

.ri-breadcrumb-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumbs-title {
  color: rgba(255,255,255,0.9);
}

.icon-arrow {
  display: inline-flex;
  align-items: center;
  margin-right: 0.25rem;
  opacity: 0.85;
}
.icon-arrow::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  margin-right: 0.2em;
}

.hero-content-section {
  text-align: left;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-content-inner {
  max-width: 620px;
  margin: 0;
}

.hero-image-panel {
  min-height: 260px;
  border-radius: 14px;
  background: #111 url("Reference/Hero_Image.png") center center / cover no-repeat;
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}

.hero-brand-name {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.25rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.5rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title-text {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  color: #fff;
}

.hero-subtitle-text {
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.5;
}

.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.hero-tagline span::before {
  content: "•";
  margin-right: 0.35rem;
  color: var(--color-primary);
}

.hero-tagline span:first-child::before {
  content: "";
  margin-right: 0;
}

.hero-text-button {
  margin-bottom: 1rem;
}

.hero-text-button .link-large {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.hero-text-button .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.telephone-ltr {
  direction: ltr;
}

.heroButton {
  margin-bottom: 1.5rem;
}

.hero-text-button .btn .fa,
.heroButton .btn .fa,
.hero-whatsapp-btn .fa {
  margin-right: 0.4rem;
}

.hero-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-whatsapp-btn:hover {
  background-color: var(--color-whatsapp);
  border-color: var(--color-whatsapp);
  color: #fff;
}

.hero-continue {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-continue-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem;
}

.hero-continue-link:hover {
  color: #fff;
  text-decoration: none;
}

.hero-continue-icon {
  font-size: 1.5rem;
  display: block;
  animation: heroScroll 2s ease-in-out infinite;
}

@keyframes heroScroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.6; }
}

.scroll-offset {
  height: 0;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 360px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hero-content-inner {
    max-width: 100%;
  }
  .hero-image-panel {
    min-height: 220px;
  }
  .hero-content-section {
    text-align: center;
  }
  .hero-tagline {
    justify-content: center;
  }
  .hero-text-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-text-button .btn {
    margin: 0;
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .hero-brand-name {
    font-size: 1.75rem;
  }
  .hero-title-text {
    font-size: 1.35rem;
  }
  .hero-subtitle-text {
    font-size: 1rem;
  }
}

/* ----- Content rows ----- */
.content-row.vertical-padding {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.content-row-wrapper {
  margin: 0 auto;
}

.body-content {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .content-row.vertical-padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 600px) {
  .content-row.vertical-padding {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Service detail hero images on individual pest pages */
.service-hero-image {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.service-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
}

.grid.text-block {
  margin-bottom: 1.5rem;
}

.grid.text-block .text h2 {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.grid.text-block .text p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.blue-grey {
  background-color: var(--color-bg-alt);
}

.landing-button {
  margin-top: 1.5rem;
}

/* ----- Scroll-triggered animations ----- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll .animated-card-wrapper .animated-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.in-view .animated-card-wrapper .animated-card:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll.in-view .animated-card-wrapper .animated-card:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll.in-view .animated-card-wrapper .animated-card:nth-child(3) { transition-delay: 0.3s; }

.animate-on-scroll.in-view .animated-card-wrapper .animated-card {
  opacity: 1;
  transform: translateY(0);
}

.margin-top-20 {
  margin-top: 1.25rem;
}

/* ----- Animated cards (3-step process) ----- */
.animated-container {
  margin-top: 1.5rem;
}

.animated-card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.animated-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.animated-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.animated-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  color: var(--color-primary);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.animated-icon i {
  font-size: 1.4rem;
}

.animated-card:hover .animated-icon {
  transform: scale(1.08);
  background-color: var(--color-primary);
  color: #fff;
}

.animated-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.animated-text {
  margin-bottom: 0.75rem;
}

.animated-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.animated-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.animated-list-item {
  margin-bottom: 0.35rem;
}

@media (max-width: 900px) {
  .animated-card-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ----- Pest cards slider ----- */
.pest-slider-wrapper {
  position: relative;
  margin-top: 1.5rem;
  padding: 0 3rem;
}

.pest-slider-viewport {
  overflow: hidden;
  margin: 0 -0.5rem;
}

.pest-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}

.pest-slider-track .card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 260px;
}

.pest-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--color-card-bg);
  color: var(--color-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.pest-slider-btn:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 16px rgba(11, 107, 62, 0.3);
}

.pest-slider-prev { left: 0; }
.pest-slider-next { right: 0; }

@media (max-width: 900px) {
  .pest-slider-wrapper {
    padding: 0 2.5rem;
  }
  .pest-slider-track .card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .pest-slider-wrapper {
    padding: 0;
  }
  .pest-slider-viewport {
    margin: 0;
    overflow: visible;
  }
  .pest-slider-btn {
    display: none;
  }
  .pest-slider-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    transform: none !important;
  }
  .pest-slider-track .card {
    width: 100%;
  }
}

/* ----- Pest cards grid (fallback when no slider) ----- */
.card-group.three-card-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.card-group.three-card-group:not(.pest-slider-track) {
  margin-top: 1.5rem;
}

.card.card-pest {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.card.card-pest:hover {
  box-shadow: 0 8px 24px rgba(11, 107, 62, 0.12);
  border-color: var(--color-border);
}

.card-upper {
  flex: 1;
}

.card-banner-image {
  height: 160px;
  background-size: cover;
  background-position: 50% 50%;
  background-color: #c8d4d9;
  background-repeat: no-repeat;
}

/* Pest card images – specific pest photos */
.card-pest-termites {
  background-image:  url("https://entomologytoday.org/wp-content/uploads/2024/08/coptotermes-subterranean-termites-1024x577.jpg");
}
.card-pest-flies {
  background-image:  url("https://raid.com/_next/image?url=https%3A%2F%2Fedge.sitecorecloud.io%2Fscjohnsonana080-dart-production-40df%2Fmedia%2Fproject%2Fdart%2Fraid%2Farticle-detail-pages%2F8-facts-about-flies%2Fraid_us-2_25-article-8_fact_about_flies-hero.webp%3Fh%3D990%26iar%3D0%26w%3D1760&w=3840&q=75");
}
.card-pest-mosquitoes {
  background-image:  url("https://www.britannica.com/cdn/68/257368-101-059FB2B3/images/image-2.jpg");
}
.card-pest-ants {
  background-image:  url("https://www.fireants.org.au/__data/assets/image/0019/2005471/alert-during-cyclone-cleanup-3-1.jpg");
}
.card-pest-cockroaches {
  background-image: url("https://www.schendelpest.com/wp-content/uploads/2018/06/cockroach-on-wood.webp");
}
.card-pest-bedbugs {
  background-image:  url("https://upload.wikimedia.org/wikipedia/commons/8/87/Bed_bug%2C_Cimex_lectularius.jpg");
}

/* Taller, standout card for Honey Bee Removal on the homepage slider */
.card-banner-image.card-pest-honeybees {
  height: 220px;
  background-image: url("https://gumlet.assettype.com/down-to-earth/import/library/large/2024-03-05/0.27839800_1709603500_istock-984020308.jpg?w=1200&h=675&auto=format%2Ccompress&fit=max&enlarge=true");
}

.card-head {
  padding: 1rem 1.25rem 0;
}

.card-headline {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.card-head-link {
  color: var(--color-dark);
}

.card-head-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.card-button-container {
  padding: 1rem 1.25rem 1.25rem;
}

@media (max-width: 900px) {
  .card-group.three-card-group {
    grid-template-columns: 1fr;
  }
}

/* Center the last Honey Bee card in the 3-column grid on desktop only */
@media (min-width: 901px) {
  .card-group.three-card-group .card-pest-honeybee-card {
    grid-column: 2 / span 1;
  }
}

/* ----- Tiles (Show all pests / Show less) ----- */
.tilesGroupContainer {
  margin-top: 2rem;
}

.tileGroup.primary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tileGroup .tile {
  margin: 0;
}

.tileGroup .tile a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 1.3em;
  color: var(--color-dark);
  font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s;
}

.tileGroup .tile a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
}

.tile.show-more.is-hidden {
  display: none !important;
}

.tile.btn-tile a {
  background: var(--color-bg-alt);
  border-color: #c8d4d9;
}

.tile.btn-tile a.is-hidden {
  display: none !important;
}

.tile.btn-tile a.is-visible {
  display: inline-block;
}

/* ----- Two-card group (About + Prices) ----- */
.card-group.two-card-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.card.card-no-image .card-upper {
  padding: 1.25rem 1.25rem 0;
}

.card.card-no-image .card-body {
  padding: 0 1.25rem;
}

.card.card-no-image .card-body p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .card-group.two-card-group {
    grid-template-columns: 1fr;
  }
}

/* ----- Popular services cards (with body text) ----- */
.card.card-with-body .card-body {
  padding: 0 1.25rem 0.5rem;
}

.card.card-with-body .card-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ----- Two-column feature row ----- */
.full-width.feature-row.two-col-feature-row {
  margin-top: 0;
  margin-bottom: 0;
  background: #fff;
}

.two-col-feature-row .main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.two-col-feature-row-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  min-height: 280px;
}

.two-col-feature-row .column-first,
.two-col-feature-row .column-second {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-size: cover;
  background-position: 50% 50%;
  background-color: var(--color-bg-alt);
}

.two-col-feature-row .column-first {
  position: relative;
  background-color: #c8d4d9;
  background-image: url("https://www.lifewire.com/thmb/asEzONNcFA7EhoxEyqpSO_bS8wk=/1500x0/filters:no_upscale():max_bytes(150000):strip_icc()/StreetView-08b27ad0e7b543cd9ebdb19e314c6972.jpg");
  background-size: cover;
  background-position: 50% 50%;
}

.two-col-feature-row .column-first::before,
.two-col-feature-row .column-second::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,10,21,0.5), rgba(0,10,20,0.35));
  pointer-events: none;
}

.two-col-feature-row .column-first .card,
.two-col-feature-row .column-second .card {
  position: relative;
  z-index: 1;
}

.two-col-feature-row .column-second {
  position: relative;
  background-color: #dce1e4;
  background-image: url("https://swfpestcontrol.com/wp-content/uploads/2023/05/swf-pest-control-company-about.jpg");
  background-size: cover;
  background-position: 50% 50%;
}

.two-col-feature-row .card-headline,
.two-col-feature-row .card-body p {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.two-col-feature-row .card-body p {
  color: rgba(255,255,255,0.95);
}

.two-col-feature-row .btn-secondary-light {
  border-color: #fff;
  color: #fff;
}

.two-col-feature-row .btn-secondary-light:hover {
  background-color: #fff;
  color: var(--color-dark);
}

.two-col-feature-row .card {
  background: transparent;
  border: none;
  max-width: 320px;
}

.two-col-feature-row .card-no-banner-image .card-head {
  padding-top: 0;
}

.two-col-feature-row .card-headline {
  color: #fff;
}

.two-col-feature-row .card-body p {
  color: rgba(255,255,255,0.95);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .two-col-feature-row-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .two-col-feature-row .column-first,
  .two-col-feature-row .column-second {
    min-height: 240px;
  }
}

@media (max-width: 600px) {
  .two-col-feature-row .column-first,
  .two-col-feature-row .column-second {
    padding: 1.5rem;
  }
  .two-col-feature-row .card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .two-col-feature-row-grid {
    grid-template-columns: 1fr;
  }

  .two-col-feature-row .column-first,
  .two-col-feature-row .column-second {
    min-height: 200px;
  }
}

/* ----- Contact ----- */
.contact-section .grid.text-block {
  margin-bottom: 2rem;
}

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

.contact-details h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}

.contact-details h3:first-of-type {
  margin-top: 0;
}

.contact-details p {
  margin: 0 0 0.5rem;
  color: var(--color-text-muted);
}

.contact-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  padding: 1.5rem;
}

.contact-card h3 {
  margin: 0 0 0.35rem;
}

.contact-card > p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.quote-form .form-group {
  margin-bottom: 1rem;
}

.quote-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(11, 107, 62, 0.25);
}

.form-hint {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0.75rem 0 0;
}

.form-status {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.form-status.success { color: var(--color-primary); }
.form-status.error { color: #c00; }

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-card {
    padding: 1.5rem;
  }
  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 16px;
  }
}

/* ----- Footer (multi-column like Rentokil) ----- */
.footer {
  background-color: var(--color-dark);
  color: rgba(255,255,255,0.85);
  padding: 0;
  margin-top: 2rem;
}

.footer-top-wrapper {
  padding: 2rem 0;
}

.footer-desktop-columns .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
}

.first-column-links ul,
.second-column-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.first-column-links li,
.second-column-links li {
  margin-bottom: 0.5rem;
}

.footer-link a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}

.footer-link a:hover {
  color: #fff;
  text-decoration: underline;
}

.desktop-logo {
  text-align: right;
}

.footer-logo-text {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.footer-legal {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.footer-legal p {
  margin: 0.5rem 0 0;
}

.footer-bottom-wrapper {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 1rem 0;
}

.footer-bottom {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.footer .country {
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* ----- Floating quick action buttons (mobile) ----- */
.floating-quick-actions {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 60;
}

.floating-btn {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.floating-btn span.iconify {
  font-size: 1.6rem;
}

.floating-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.floating-btn-whatsapp {
  background: #25d366;
}

.floating-btn-whatsapp:hover {
  background: #1ebe5a;
}

.floating-btn-map {
  background: var(--color-primary);
}

.floating-btn-map:hover {
  background: var(--color-primary-hover);
}

@media (max-width: 768px) {
  .floating-quick-actions {
    display: flex;
  }
}

@media (max-width: 768px) {
  .footer-desktop-columns .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .desktop-logo {
    text-align: center;
  }
}

/* Nav contact icon (phone) */
.icon.icon-contact {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.25em;
  vertical-align: middle;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 2.09 2.09 0 00.7 1.61 10.86 10.86 0 005 5 2.09 2.09 0 001.61.7A2 2 0 0022 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 2.09 2.09 0 00.7 1.61 10.86 10.86 0 005 5 2.09 2.09 0 001.61.7A2 2 0 0022 16.92z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.icon-svg.icon-contact {
  margin-right: 0.25em;
}
