﻿:root {
  --primary-blue: #0f61b4;
  --dark-blue: #171d30;
  --green: #41b649;
  --text-dark: #2a2d39;
  --text-light: #ffffff;
  --bg-light: #f3f3f5;
  --white: #ffffff;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --transition: 0.3s ease;
  --header-height: 78px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.5;
  padding-top: var(--header-height);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .container {
    width: min(1000px, calc(100% - 32px));
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100%, calc(100% - 16px));
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  min-height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  border-bottom: 1px solid rgba(20, 24, 38, 0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 10px 24px rgba(15, 24, 48, 0.08);
}

.header-container {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.04em;
  white-space: nowrap;
  line-height: 1;
}

.logo img {
  height: 55px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .logo img {
    height: 45px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }
}

.main-nav {
  justify-self: right;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

@media (max-width: 1200px) {
  .main-nav ul {
    gap: 28px;
  }
}

@media (max-width: 1000px) {
  .main-nav ul {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .main-nav ul {
    gap: 16px;
  }
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2f3140;
  letter-spacing: 0.01em;
  transition: var(--transition);
}

@media (max-width: 1100px) {
  .main-nav a {
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .main-nav a {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .main-nav a {
    font-size: 0.75rem;
  }
}

.main-nav a:hover {
  color: var(--primary-blue);
}

.main-nav i {
  font-size: 0.72rem;
  margin-left: 6px;
  vertical-align: middle;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  font-size: 1.7rem;
  color: #2f3140;
  cursor: pointer;
  padding: 6px 40px;
  margin-left: -10px;
  line-height: 1;
}

.internal-banner {
  background: linear-gradient(90deg, #1d2234 0%, #202538 100%);
  padding: 28px 0 32px;
}

@media (max-width: 768px) {
  .internal-banner {
    padding: 20px 0 24px;
  }
}

@media (max-width: 480px) {
  .internal-banner {
    padding: 16px 0 18px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
}

.breadcrumb a:hover {
  color: var(--white);
}

.internal-banner h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .internal-banner h1 {
    font-size: 1.4rem;
  }
}

.info-section {
  padding: 46px 0 80px;
  background: transparent;
}

.info-section h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 3.05rem);
  font-weight: 500;
  margin-bottom: 52px;
  color: #2b2d39;
  letter-spacing: -0.03em;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cards-grid > .info-card:nth-last-child(2):nth-child(4n + 1) {
  grid-column: 2;
}

.cards-grid > .info-card:last-child:nth-child(4n + 2) {
  grid-column: 3;
}

.info-card {
  position: relative;
  min-height: 132px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.info-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 64, 129, 0.44) 0%,
    rgba(10, 98, 185, 0.88) 100%
  );
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.card-content h3 {
  font-size: 0.98rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--white);
  max-width: 94%;
  text-wrap: balance;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.card-actions a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1rem;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.14);
  transition: var(--transition);
}

.card-actions a:hover {
  transform: translateY(-2px);
  background: #f2f2f2;
}

.info-card:hover {
  transform: translateY(-4px);
  transition: var(--transition);
}

.whatsapp-button {
  position: fixed;
  right: 19px; /* afasta da borda */
  bottom: 110px; /* fica acima do botÃ£o de voltar */
  width: 64px;
  height: 64px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  z-index: 1001;
  transition: 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.08);
}

@media (max-width: 1200px) {
  .container {
    width: min(1000px, calc(100% - 32px));
  }
}

@media (max-width: 1100px) {
  .main-nav ul {
    gap: 28px;
  }

  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header-container {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    position: absolute;
    top: var(--header-height);
    right: 16px;
    width: min(280px, calc(100% - 32px));
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
  }

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: #2f3140;
  letter-spacing: 0.01em;
  padding: 10px 16px;
  border-radius: 8px;
  transition: 0.25s ease;
}

.main-nav a:hover {
  background: var(--primary-blue);
  color: #ffffff;
}

.main-nav a.active {
  background: var(--primary-blue);
  color: #ffffff;
}


  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .logo-green,
  .logo-blue {
    font-size: 0.96rem;
  }

  .logo-swoosh {
    left: 23px;
    width: 74px;
  }

  .internal-banner {
    padding: 26px 0 24px;
  }

  .info-section {
    padding: 40px 0 60px;
  }

  .info-section h2 {
    font-size: 1.9rem;
    margin-bottom: 28px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card-content h3 {
    max-width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1120px, calc(100% - 20px));
  }

  body {
    padding-top: 72px;
  }

  .internal-banner {
    padding: 20px 0 20px;
  }

  .internal-banner h1 {
    font-size: 1.4rem;
  }

  .breadcrumb {
    font-size: 0.85rem;
  }

  .contact-cta-banner {
    padding: 30px 0;
  }

  .contact-cta-banner h1 {
    font-size: 1.3rem;
  }

  .contact-cta-banner p {
    font-size: 0.9rem;
  }

  .contact-cta-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .content-wrapper {
    gap: 20px;
  }

  .content-left h2 {
    font-size: 1.2rem;
  }

  .content-left h3 {
    font-size: 0.95rem;
  }

  .content-left p {
    font-size: 0.85rem;
  }
}

@media (max-width: 384px) {
  .logo img {
    height: 60px;
  }

  .header-container {
    gap: 12px;
  }

  .internal-banner h1 {
    font-size: 1.2rem;
  }

  .contact-cta-banner h1 {
    font-size: 1.1rem;
  }

  .contact-cta-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  .carousel-slides {
    height: 150px;
  }

  .carousel-btn {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 12px;
    height: 12px;
  }
}

.site-footer {
  background: #f3f3f5;
  padding: 40px 0 30px;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 30px 0 24px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 20px 0 16px;
  }
}

.footer-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 1024px) {
  .footer-container {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.footer-logo img {
  width: 150px;
  max-width: 100%;
  display: block;
}

@media (max-width: 480px) {
  .footer-logo img {
    width: 120px;
  }
}

.footer-column h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2f3140;
  margin-bottom: 16px;
}

@media (max-width: 480px) {
  .footer-column h3 {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
}

.footer-links a,
.footer-contact a,
.footer-contact span,
.footer-social a {
  font-size: 0.9rem;
  color: #5a5d6b;
  transition: 0.3s ease;
}

@media (max-width: 480px) {
  .footer-links a,
  .footer-contact a,
  .footer-contact span,
  .footer-social a {
    font-size: 0.85rem;
  }
}

.footer-links,
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 480px) {
  .footer-links,
  .footer-contact,
  .footer-social {
    gap: 8px;
  }
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
  color: #0f61b4;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5a5d6b;
  line-height: 1.55;
}

.footer-contact i {
  color: #2f3140;
  font-size: 0.95rem;
  margin-top: 4px;
  min-width: 14px;
}

.footer-social li a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid #7b7e88;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4d505d;
  font-size: 1rem;
  transition: 0.3s ease;
}

.footer-social li a:hover .social-icon {
  border-color: #0f61b4;
  color: #0f61b4;
  transform: translateY(-1px);
}

.back-to-top {
  position: fixed;
  right: 18px; /* mesma linha do WhatsApp */
  bottom: 30px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0f61b4;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s ease;
  z-index: 1001;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: #0a4c8e;
}

/* ===== HERO BANNER ===== */
.hero-banner {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin-top: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 97, 180, 0.7) 0%,
    rgba(15, 97, 180, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 40px 20px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 500;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .hero-banner {
    height: 300px;
    margin-top: calc(var(--header-height) - 10px);
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 500px) {
  .hero-banner {
    height: 240px;
  }

  .hero-content {
    padding: 30px 15px;
  }

  .hero-content h1 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 0.85rem;
  }
}

.services-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  font-size: 1.7rem;
  color: #2f3140;
  cursor: pointer;
  padding: 6px 14px;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
}

.services-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  width: 720px;
  max-width: min(720px, calc(100vw - 40px));
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(15, 24, 48, 0.18);
  border: 1px solid rgba(20, 24, 38, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.28s ease;
  z-index: 1300;
  overflow: hidden;
}

.services-menu:hover .services-dropdown,
.services-menu.active .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-dropdown-top {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(20, 24, 38, 0.08);
  background: #ffffff;
}

.services-dropdown-top h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #171d30;
  margin-bottom: 12px;
}

.services-search {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(23, 29, 48, 0.12);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
  color: #2f3140;
  outline: none;
  transition: 0.25s ease;
}

.services-search:focus {
  border-color: #0f61b4;
  box-shadow: 0 0 0 3px rgba(15, 97, 180, 0.08);
}

.services-dropdown-body {
  max-height: 430px;
  overflow-y: auto;
  padding: 14px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-list li {
  margin: 0;
}

.services-list a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 500;
  color: #2f3140;
  line-height: 1.35;
  transition: 0.2s ease;
  background: #ffffff;
}

.services-list a:hover {
  background: #f3f6fb;
  color: #0f61b4;
}

.services-empty {
  grid-column: 1 / -1;
  padding: 14px 10px;
  font-size: 0.94rem;
  color: #6b7280;
}

.services-dropdown-body::-webkit-scrollbar {
  width: 8px;
}

.services-dropdown-body::-webkit-scrollbar-thumb {
  background: rgba(15, 97, 180, 0.25);
  border-radius: 999px;
}

@media (max-width: 980px) {
  .services-dropdown {
    width: 620px;
  }
}

@media (max-width: 860px) {
  .services-dropdown {
    width: min(94vw, 420px);
    right: 0;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .services-dropdown-body {
    max-height: 360px;
  }
}

.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ===== OVERLAY DO MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* ===== CONTAINER DO POPUP ===== */
.whatsapp-popup {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1001;
}

.modal-overlay.active .whatsapp-popup {
    transform: scale(1);
    opacity: 1;
}

/* ===== HEADER DO POPUP ===== */
.popup-header {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.popup-header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popup-header-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.popup-header-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.popup-header-info p {
    font-size: 14px;
    opacity: 0.95;
    margin-bottom: 6px;
}

.online-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #31a24c;
    border-radius: 50%;
    display: inline-block;
}

/* ===== BOTÃƒO FECHAR ===== */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    transition: all 0.2s ease;
    z-index: 1002;
}

.close-btn:hover {
    background: #f0f0f0;
    color: #333;
}

/* ===== CORPO DO POPUP ===== */
.popup-body {
    padding: 20px;
}

.popup-message {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

/* ===== FORMULÃRIO ===== */
.popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #25d366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.form-group svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: #25d366;
    pointer-events: none;
}

/* ===== BOTÃƒO ENVIAR ===== */
.send-btn {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

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

.send-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 600px) {
    .whatsapp-icon {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-icon svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-popup {
        width: 95%;
        max-width: 100%;
    }

    .popup-header {
        padding: 15px;
    }

    .popup-header-icon {
        width: 45px;
        height: 45px;
    }

    .popup-header-icon svg {
        width: 24px;
        height: 24px;
    }

    .popup-header-info h3 {
        font-size: 16px;
    }

    .popup-body {
        padding: 15px;
    }

    .popup-message {
        font-size: 13px;
    }

    .form-group input {
        font-size: 16px;
        padding: 11px 12px 11px 38px;
    }

    .send-btn {
        font-size: 13px;
        padding: 11px 18px;
    }
}

@media (max-width: 400px) {
    .whatsapp-icon {
        bottom: 15px;
        right: 15px;
        width: 52px;
        height: 52px;
    }

    .popup-header-info h3 {
        font-size: 15px;
    }

    .popup-header-info p {
        font-size: 12px;
    }

    .online-status {
        font-size: 11px;
    }
}

/* ===== CONTENT TOPICS SECTION ===== */
.content-topics-section {
    padding: 40px 0 30px 0;
    background: var(--white);
}

@media (max-width: 640px) {
  .content-topics-section {
    padding: 24px 0 20px 0;
  }
}

@media (max-width: 480px) {
  .content-topics-section {
    padding: 16px 0 16px 0;
  }
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1024px) {
    .content-wrapper {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        gap: 16px;
    }
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    grid-column: 1;
}

@media (max-width: 480px) {
    .content-left {
        gap: 12px;
    }
}

.content-right-container {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 768px) {
    .content-right-container {
        grid-column: 1;
        gap: 16px;
    }
}

.carousel-container {
    grid-column: 2;
    margin-bottom: 8px;
    padding: 0;
    text-align: center;
    width: 100%;
    order: -1;
}

@media (max-width: 1200px) {
    .content-wrapper {
        gap: 35px;
    }

    .content-left h2 {
        font-size: 1.8rem;
    }

    .content-left h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-left {
        grid-column: 1;
    }

    .carousel-container {
        grid-column: 1;
    }

    .content-right-container {
        grid-column: 1;
    }

    .carousel-slides {
        height: 280px;
    }

    .topics-list {
        grid-template-columns: repeat(2, 1fr);
        max-height: calc(100vh - 300px);
        overflow-y: auto;
    }
}

@media (max-width: 860px) {
    .content-wrapper {
        gap: 25px;
    }

    .carousel-slides {
        height: 240px;
    }

    .content-left h2 {
        font-size: 1.5rem;
    }

    .content-left h3 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .content-topics-section {
        padding: 40px 0;
    }

    .content-wrapper {
        gap: 20px;
    }

    .carousel-slides {
        height: 220px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .content-left h2 {
        font-size: 1.3rem;
    }

    .content-left h3 {
        font-size: 0.95rem;
        margin-top: 14px;
    }

    .content-left p {
        font-size: 0.9rem;
    }

    .budget-btn {
        padding: 12px 14px;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .topics-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .topics-list a {
        padding: 9px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 640px) {
    .content-topics-section {
        padding: 30px 0;
    }

    .content-wrapper {
        gap: 16px;
    }

    .carousel-slides {
        height: 200px;
    }

    .content-left {
        gap: 14px;
    }

    .content-left h2 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .content-left h3 {
        font-size: 0.9rem;
        margin-top: 12px;
    }

    .content-left p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .content-right {
        padding: 16px;
    }

    .content-right h3 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .topics-list a {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .budget-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .content-topics-section {
        padding: 20px 0;
    }

    .content-wrapper {
        gap: 12px;
    }

    .carousel-slides {
        height: 160px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .content-left h2 {
        font-size: 0.95rem;
    }

    .content-left h3 {
        font-size: 0.8rem;
        margin-top: 10px;
    }

    .content-left p {
        font-size: 0.8rem;
    }

    .content-right {
        padding: 12px;
        border-width: 1px;
    }

    .content-right h3 {
        font-size: 0.85rem;
    }

    .topics-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .topics-list a {
        padding: 6px 8px;
        font-size: 0.75rem;
    }

    .budget-btn {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
}

.content-left h2 {
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (max-width: 640px) {
  .content-left h2 {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .content-left h2 {
    font-size: 1rem;
  }
}

.content-left h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 16px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .content-left h3 {
    font-size: 0.95rem;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .content-left h3 {
    font-size: 0.9rem;
    margin-top: 10px;
    margin-bottom: 8px;
  }
}

.content-left p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
}

@media (max-width: 640px) {
  .content-left p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .content-left p {
    font-size: 0.8rem;
  }
}

.content-right {
    position: sticky;
    top: 100px;
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    padding: 16px;
    background: #f8f9fb;
}

@media (max-width: 640px) {
  .content-right {
    padding: 12px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .content-right {
    padding: 10px;
    top: 80px;
  }
}

.content-right-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.budget-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a4c8e 100%);
    color: var(--white);
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(15, 97, 180, 0.3);
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
}

@media (max-width: 640px) {
  .budget-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .budget-btn {
    padding: 9px 12px;
    font-size: 0.85rem;
  }
}

.budget-btn:active {
    transform: translateY(1px);
}

.budget-btn:hover {
    background: linear-gradient(135deg, #0a4c8e 0%, var(--primary-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 97, 180, 0.4);
}

.content-right h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

@media (max-width: 640px) {
  .content-right h3 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .content-right h3 {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
}

.topics-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 6px;
}

@media (max-width: 768px) {
  .topics-list {
    max-height: 300px;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .topics-list {
    max-height: 250px;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .topics-list {
    max-height: 200px;
    gap: 5px;
  }
}

.topics-list li {
    margin: 0;
}

.topics-list a {
    display: block;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e8e8ec;
    font-size: 0.82rem;
    color: #4a4d5a;
    line-height: 1.3;
    transition: all var(--transition);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    white-space: normal;
    word-wrap: break-word;
}

@media (max-width: 640px) {
  .topics-list a {
    padding: 6px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
  }
}

@media (max-width: 480px) {
  .topics-list a {
    padding: 5px 8px;
    font-size: 0.7rem;
  }
}

.topics-list a:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(15, 97, 180, 0.2);
}

.topics-list::-webkit-scrollbar {
    width: 6px;
}

.topics-list::-webkit-scrollbar-track {
    background: transparent;
}

.topics-list::-webkit-scrollbar-thumb {
    background: rgba(15, 97, 180, 0.2);
    border-radius: 3px;
}

.topics-list::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 97, 180, 0.4);
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-right {
        position: static;
    }

    .carousel-slides {
        height: 260px;
    }

    .budget-btn {
        padding: 12px 14px;
        font-size: 13px;
        margin-bottom: 15px;
    }

    .topics-list {
        grid-template-columns: repeat(2, 1fr);
        max-height: calc(100vh - 300px);
        overflow-y: auto;
    }
}

@media (max-width: 860px) {
    .content-wrapper {
        gap: 20px;
    }

    .carousel-slides {
        height: 240px;
    }

    .content-right {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        gap: 20px;
    }

    .carousel-slides {
        height: 220px;
    }

    .carousel-wrapper {
        gap: 10px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .content-left h2 {
        font-size: 1.3rem;
    }

    .content-left h3 {
        font-size: 1rem;
        margin-top: 16px;
    }

    .content-left p {
        font-size: 0.9rem;
    }

    .content-right {
        padding: 18px;
    }

    .content-right h3 {
        font-size: 1rem;
    }

    .topics-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .topics-list a {
        padding: 9px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 640px) {
    .content-topics-section {
        padding: 30px 0;
    }

    .carousel-slides {
        height: 200px;
    }

    .content-left h2 {
        font-size: 1.2rem;
    }

    .content-left h3 {
        font-size: 0.95rem;
        margin-top: 14px;
    }

    .content-left p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .content-right h3 {
        font-size: 0.95rem;
    }

    .topics-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .topics-list a {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .budget-btn {
        padding: 11px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .content-topics-section {
        padding: 20px 0;
    }

    .content-wrapper {
        gap: 16px;
    }

    .carousel-slides {
        height: 160px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .content-left h2 {
        font-size: 1rem;
    }

    .content-left h3 {
        font-size: 0.88rem;
        margin-top: 10px;
    }

    .content-left p {
        font-size: 0.8rem;
    }

    .content-right {
        padding: 12px;
        border-width: 1px;
    }

    .content-right h3 {
        font-size: 0.85rem;
    }

    .topics-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .topics-list a {
        padding: 6px 8px;
        font-size: 0.75rem;
    }

    .budget-btn {
        padding: 9px 10px;
        font-size: 0.8rem;
    }
}

/* ===== CAROUSEL STYLES ===== */
.carousel-wrapper {
    gap: 8px;
}

.carousel-slides {
    height: 280px;
}

.content-right-container .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

.content-right-container .carousel-dots {
    margin-top: 12px;
}

/* ===== CAROUSEL ===== */
.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.carousel-slides {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
    -webkit-appearance: none;
    appearance: none;
    min-width: 48px;
    min-height: 48px;
    touch-action: manipulation;
}

.carousel-btn:active {
    transform: scale(0.9);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    -webkit-appearance: none;
    appearance: none;
    padding: 0;
}

.dot.active {
    background: var(--primary-blue);
    width: 14px;
    height: 14px;
}

@media (max-width: 1024px) {
    .carousel-slides {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        gap: 10px;
    }

    .carousel-slides {
        height: 220px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-dots {
        gap: 10px;
        margin-top: 12px;
    }
}

@media (max-width: 640px) {
    .carousel-wrapper {
        gap: 8px;
    }

    .carousel-slides {
        height: 180px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .carousel-dots {
        gap: 8px;
        margin-top: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        gap: 6px;
    }

    .carousel-slides {
        height: 140px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .carousel-dots {
        gap: 6px;
        margin-top: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }

    .dot.active {
        width: 10px;
        height: 10px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .carousel-btn:hover {
        background: var(--dark-blue);
        transform: scale(1.1);
    }

    .dot:hover {
        background: rgba(15, 97, 180, 0.5);
    }
}

/* ===== CONTACT CTA BANNER ===== */
.contact-cta-banner {
    padding: 40px 0;
    background: linear-gradient(90deg, #1d2234 0%, #202538 100%);
    text-align: center;
}

@media (max-width: 640px) {
  .contact-cta-banner {
    padding: 24px 0;
  }
}

@media (max-width: 480px) {
  .contact-cta-banner {
    padding: 16px 0;
  }
}

.contact-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-cta-banner h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin: 0;
}

@media (max-width: 640px) {
  .contact-cta-banner h1 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .contact-cta-banner h1 {
    font-size: 1rem;
  }
}

.contact-cta-banner p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 500px;
    margin: 0;
    padding: 0 12px;
}

@media (max-width: 640px) {
  .contact-cta-banner p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contact-cta-banner p {
    font-size: 0.8rem;
    padding: 0 8px;
  }
}

.contact-cta-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    -webkit-appearance: none;
    appearance: none;
}

@media (max-width: 640px) {
  .contact-cta-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contact-cta-btn {
    padding: 9px 20px;
    font-size: 0.8rem;
  }
}

.contact-cta-btn:active {
    transform: translateY(1px);
}

@media (max-width: 1024px) {
    .contact-cta-banner {
        padding: 50px 0;
    }

    .contact-cta-banner h1 {
        font-size: 2rem;
    }

    .contact-cta-banner p {
        font-size: 1rem;
    }

    .contact-cta-btn {
        padding: 12px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .contact-cta-banner {
        padding: 40px 0;
    }

    .contact-cta-banner h1 {
        font-size: 1.6rem;
    }

    .contact-cta-banner p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .contact-cta-btn {
        padding: 11px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .contact-cta-banner {
        padding: 30px 0;
    }

    .contact-cta-banner h1 {
        font-size: 1.3rem;
    }

    .contact-cta-banner p {
        font-size: 0.9rem;
    }

    .contact-cta-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contact-cta-banner {
        padding: 25px 0;
        gap: 15px;
    }

    .contact-cta-banner h1 {
        font-size: 1.1rem;
    }

    .contact-cta-banner p {
        font-size: 0.85rem;
    }

    .contact-cta-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* ===== REGIONS TABLE SECTION ===== */
.regions-table-section {
    padding: 40px 0;
    background: var(--white);
}

@media (max-width: 768px) {
  .regions-table-section {
    padding: 30px 0;
  }
}

@media (max-width: 480px) {
  .regions-table-section {
    padding: 20px 0;
  }
}

.regions-table-section h2 {
    text-align: center;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

@media (max-width: 640px) {
  .regions-table-section h2 {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .regions-table-section h2 {
    font-size: 1rem;
    margin-bottom: 16px;
  }
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    margin: 0 auto;
}

.regions-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: var(--white);
}

@media (max-width: 480px) {
  .regions-table {
    font-size: 0.75rem;
  }
}

.regions-table thead {
    background: var(--primary-blue);
}

.regions-table thead th {
    padding: 14px 12px;
    color: var(--white);
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.2px;
    border: none;
    white-space: nowrap;
}

@media (max-width: 640px) {
  .regions-table thead th {
    padding: 12px 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .regions-table thead th {
    padding: 10px 8px;
    font-size: 0.75rem;
  }
}

.regions-table tbody td {
    padding: 12px 12px;
    color: #333;
    border-bottom: 1px solid #e8e8ec;
}

@media (max-width: 640px) {
  .regions-table tbody td {
    padding: 10px 10px;
  }
}

@media (max-width: 480px) {
  .regions-table tbody td {
    padding: 8px 8px;
  }
}

.regions-table tbody tr {
    transition: background-color var(--transition);
}

.regions-table tbody tr:nth-child(odd) {
    background: #f8f9fb;
}

.regions-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .regions-table-section {
        padding: 50px 0;
    }

    .regions-table-section h2 {
        margin-bottom: 35px;
    }

    .regions-table {
        font-size: 0.9rem;
    }

    .regions-table thead th {
        padding: 16px 14px;
    }

    .regions-table tbody td {
        padding: 12px 14px;
    }
}

@media (max-width: 768px) {
    .regions-table-section {
        padding: 40px 0;
    }

    .regions-table-section h2 {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .regions-table {
        font-size: 0.85rem;
        min-width: 700px;
    }

    .regions-table thead th {
        padding: 14px 12px;
        font-size: 0.85rem;
    }

    .regions-table tbody td {
        padding: 10px 12px;
    }
}

@media (max-width: 640px) {
    .regions-table-section {
        padding: 30px 0;
    }

    .regions-table-section h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .regions-table {
        font-size: 0.75rem;
        min-width: 600px;
    }

    .regions-table thead th {
        padding: 10px 8px;
        font-size: 0.7rem;
    }

    .regions-table tbody td {
        padding: 8px 6px;
    }
}

@media (max-width: 480px) {
    .regions-table-section {
        padding: 20px 0;
    }

    .regions-table-section h2 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .regions-table {
        font-size: 0.65rem;
        min-width: 500px;
    }

    .regions-table thead th {
        padding: 8px 4px;
        font-size: 0.6rem;
    }

    .regions-table tbody td {
        padding: 6px 4px;
        font-size: 0.65rem;
    }
}

@media (hover: hover) {
    .regions-table tbody tr:hover {
        background: #f0f4fb;
    }
}

/* ===== DEVICES WITH HOVER CAPABILITY ===== */
@media (hover: hover) and (pointer: fine) {
    .carousel-btn:hover {
        background: var(--dark-blue);
        transform: scale(1.1);
    }

    .budget-btn:hover {
        background: linear-gradient(135deg, #0a4c8e 0%, var(--primary-blue) 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(15, 97, 180, 0.4);
    }

    .contact-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.95);
    }

    .topics-list a:hover {
        background: var(--primary-blue);
        color: var(--white);
        border-color: var(--primary-blue);
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(15, 97, 180, 0.2);
    }

    .regions-table tbody tr:hover {
        background: #f0f4fb;
    }

    .dot:hover {
        background: rgba(15, 97, 180, 0.5);
    }
}/* Navbar Services Dropdown (Global) */
.main-nav .has-dropdown {
  position: relative;
}
.nav-services-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: min(280px, 86vw);
  background: #171d30;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.24s ease;
  z-index: 1200;
}
.main-nav .has-dropdown:hover .nav-services-dropdown,
.main-nav .has-dropdown:focus-within .nav-services-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 360px;
  overflow-y: auto;
  background: transparent;
}
.nav-services-list li {
  margin: 0;
  width: 100%;
}
.nav-services-list a {
  display: block;
  width: 100%;
  padding: 10px 18px;
  border: 0;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.25;
  background: transparent;
  box-shadow: none;
  transition: 0.2s ease;
}
.nav-services-list a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.nav-services-list::-webkit-scrollbar {
  width: 6px;
}
.nav-services-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}
@media (max-width: 860px) {
  .nav-services-dropdown {
    display: none;
  }
}
/* Dark Blue Toggle Popup (Global) */
.services-dropdown {
  background: #171d30 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}
.services-dropdown-top {
  background: #171d30 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
}
.services-dropdown-top h3 {
  color: #ffffff !important;
}
.services-search {
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.07) !important;
}
.services-search:focus {
  border-color: #35d3ad !important;
  box-shadow: 0 0 0 3px rgba(53, 211, 173, 0.2) !important;
}
.services-list a {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.05) !important;
}
.services-list a:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
}
.services-empty {
  color: rgba(255, 255, 255, 0.75) !important;
}
.services-dropdown-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28) !important;
}
