/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - TUGA POWER
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary-navy: #0e1927;
  --secondary-navy: #162235;
  --dark-bg: #0b111a;
  --gold-primary: #c5a059;
  --gold-hover: #e5c158;
  --gold-light: #f7ebd3;
  --white: #ffffff;
  --light-gray: #f4f6f8;
  --border-gray: #e2e8f0;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  --success: #10b981;
  --danger: #ef4444;

  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --max-width: 1200px;
  --header-height: 80px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-gold: 0 4px 14px 0 rgba(197, 160, 89, 0.4);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-navy);
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.btn-outline:hover {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header span {
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--gold-primary);
}

/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.top-bar {
  background-color: var(--dark-bg);
  color: var(--text-light);
  font-size: 0.825rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--gold-primary);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-slogan {
  font-style: italic;
  color: var(--gold-primary);
  font-weight: 500;
}

.top-bar-address {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
}

.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-social-link {
  color: var(--text-light);
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.top-bar-social-link:hover {
  color: var(--gold-primary);
  opacity: 1;
  transform: scale(1.1);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  background-color: var(--primary-navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  height: var(--header-height);
  border-bottom: 2px solid var(--gold-primary);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.logo-text {
  font-family: var(--font-headings);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
}

.logo-text span {
  color: var(--gold-primary);
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--gold-primary);
}

.nav-link.active {
  color: var(--gold-primary);
  font-weight: 600;
}

/* Header Contact Button Group styling */
.header-contact-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-contact-group .btn {
  height: 38px;
  padding: 0 16px;
  font-size: 0.85rem;
  border-radius: 4px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: var(--transition);
  border: 2px solid transparent;
}

.header-contact-group .btn-agendar {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  border-color: var(--gold-primary);
}

.header-contact-group .btn-agendar:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.header-contact-group .btn-call {
  background-color: transparent;
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.header-contact-group .btn-call:hover {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.header-contact-group .btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.header-contact-group .btn-whatsapp:hover {
  background-color: #1ebea5;
  border-color: #1ebea5;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .arrow {
  font-size: 0.65rem;
  transition: var(--transition);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-navy);
  border-top: 3px solid var(--gold-primary);
  box-shadow: var(--shadow-lg);
  width: 320px;
  padding: 12px 0;
  border-radius: 0 0 8px 8px;
  display: none;
  z-index: 1000;
}

.dropdown-menu li {
  width: 100%;
  margin: 0 !important;
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--gold-primary);
  border-left-color: var(--gold-primary);
  padding-left: 28px;
}

/* Hover behaviors for desktop */
@media (min-width: 993px) {
  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }
  .nav-dropdown:hover .arrow {
    transform: rotate(180deg);
  }
}

/* Mobile Menu Button */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: var(--transition);
  background-color: var(--white);
}

/* Mobile Menu Contacts Container */
.mobile-menu-contacts {
  display: none;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.mobile-menu-contacts .btn {
  width: 100%;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 0.9rem;
  border-radius: 6px;
  font-weight: 600;
  border: 2px solid transparent;
}

.mobile-menu-contacts .btn-agendar {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  border-color: var(--gold-primary);
}

.mobile-menu-contacts .btn-call {
  background-color: transparent;
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.mobile-menu-contacts .btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
  border-color: #25d366;
}

/* ==========================================================================
   DOUBLE BUTTON GROUP (CALL & WHATSAPP)
   ========================================================================== */
.contact-btn-group {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
  border: none;
}

.btn-whatsapp:hover {
  background-color: #1ebea5;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-call {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
}

.btn-call:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   HERO / BANNER (General & Service Pages)
   ========================================================================== */
.hero {
  background-color: var(--dark-bg);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  min-height: 550px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(22, 34, 53, 0.8) 0%, rgba(11, 17, 26, 0.95) 80%);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero-slogan {
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 36px;
  opacity: 0.9;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Service Banners (450px to 500px in height) */
.service-banner {
  height: 480px;
  position: relative;
  background-color: var(--dark-bg);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.service-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(14, 25, 39, 0.95) 0%, rgba(14, 25, 39, 0.8) 50%, rgba(14, 25, 39, 0.4) 100%);
  z-index: 2;
}

.banner-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.service-banner .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.banner-subtitle {
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.banner-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 800px;
}

.banner-dgeg-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--gold-primary);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--gold-primary);
}

/* ==========================================================================
   FEATURES / SECTIONS
   ========================================================================== */
.section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--light-gray);
}

.bg-dark {
  background-color: var(--primary-navy);
  color: var(--white);
}

.bg-dark h2, .bg-dark h3 {
  color: var(--white);
}

/* Trust Section (DGEG Seal) */
.trust-badge-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-badge-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.trust-badge-img {
  max-height: 380px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  outline: 2px solid var(--gold-primary);
}

.trust-badge-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.trust-badge-content p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.trust-list {
  margin-bottom: 30px;
}

.trust-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.trust-list-item i {
  color: var(--success);
  font-size: 1.2rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-gray);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.service-card-img-wrapper {
  height: 220px;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.service-card-link:hover {
  color: var(--gold-hover);
}

/* Service Detail Page Layout */
.service-details-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.service-main-content h3 {
  font-size: 1.75rem;
  margin: 30px 0 15px;
}

.service-main-content p {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.service-main-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 25px;
}

.service-main-content li {
  margin-bottom: 8px;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-box {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid var(--border-gray);
}

.sidebar-box-dark {
  background-color: var(--secondary-navy);
  color: var(--white);
  border: none;
}

.sidebar-box-dark h3 {
  color: var(--white);
}

.sidebar-box h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 10px;
}

.sidebar-links li {
  margin-bottom: 12px;
}

.sidebar-links a {
  display: block;
  padding: 10px 14px;
  background-color: var(--white);
  border-radius: 4px;
  border: 1px solid var(--border-gray);
  font-weight: 500;
}

.sidebar-links a:hover,
.sidebar-links a.active {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  border-color: var(--gold-primary);
}

/* ==========================================================================
   BOOKING FORM (AGENDAMENTO)
   ========================================================================== */
.booking-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border-top: 5px solid var(--gold-primary);
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--border-gray);
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--white);
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

/* File Upload Field */
.file-upload-wrapper {
  position: relative;
  border: 2px dashed var(--gold-primary);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  background-color: var(--light-gray);
  cursor: pointer;
  transition: var(--transition);
}

.file-upload-wrapper:hover {
  background-color: var(--gold-light);
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.file-upload-text {
  font-weight: 500;
  margin-bottom: 4px;
}

.file-upload-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.file-list-preview {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preview-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-gray);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info-card {
  background-color: var(--secondary-navy);
  color: var(--white);
  padding: 40px;
  border-radius: 8px;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-icon-wrapper {
  background-color: rgba(197, 160, 89, 0.2);
  color: var(--gold-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-details h4 {
  color: var(--gold-primary);
  margin-bottom: 4px;
}

/* ==========================================================================
   SITEMAP PAGE
   ========================================================================== */
.sitemap-layout {
  max-width: 900px;
  margin: 0 auto;
}

.sitemap-group {
  margin-bottom: 40px;
}

.sitemap-group h3 {
  font-size: 1.5rem;
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.sitemap-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.sitemap-links a {
  padding: 8px 12px;
  border-radius: 4px;
  background-color: var(--light-gray);
  border-left: 3px solid var(--gold-primary);
  font-weight: 500;
}

.sitemap-links a:hover {
  background-color: var(--gold-light);
  transform: translateX(4px);
}

/* ==========================================================================
   ABOUT / VALUES SECTION (Missão, Visão, Compromisso)
   ========================================================================== */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.about-value-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-gray);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.value-card-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.value-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-value-card:hover .value-card-img {
  transform: scale(1.06);
}

.value-card-content {
  padding: 30px;
  flex-grow: 1;
}

.value-card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-navy);
  position: relative;
  padding-bottom: 8px;
}

.value-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold-primary);
}

.value-card-desc {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 60px 0 30px;
  border-top: 3px solid var(--gold-primary);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
}

.footer-desc {
  color: var(--text-light);
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--gold-primary);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold-primary);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold-primary);
  opacity: 1;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.75;
  width: 100%;
}

/* FAQ / Accordion styling (for enriched home) */
.faq-accordion {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold-primary);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Brands Section styling */
.brands-section {
  background-color: var(--secondary-navy);
  background-image: radial-gradient(rgba(197, 160, 89, 0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  align-items: center;
  text-align: center;
  margin-top: 30px;
}

.brand-badge {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.25);
  color: var(--gold-light);
  padding: 12px 16px;
  border-radius: 6px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  letter-spacing: 1px;
}

.brand-badge:hover {
  background-color: var(--gold-primary);
  color: var(--dark-bg);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 60px 0;
  }
  .hero-bg {
    display: none;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-ctas {
    justify-content: center;
  }
  .trust-badge-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .service-details-layout {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    position: static;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .header-contact-group {
    display: none; /* Hide in tablet header bar to prevent overlaps */
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu-wrapper {
    position: fixed;
    left: -100%;
    top: var(--header-height);
    gap: 0;
    flex-direction: column;
    background-color: var(--primary-navy);
    width: 100%;
    height: calc(100vh - var(--header-height));
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 40px 0;
    overflow-y: auto;
  }
  .nav-menu-wrapper.active {
    left: 0;
  }
  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .nav-menu li {
    margin: 15px 0;
    width: 100%;
  }
  .nav-link {
    display: block;
    font-size: 1.25rem;
    padding: 10px 0;
  }
  
  /* Mobile dropdown behaviors */
  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    display: none;
  }
  
  .nav-dropdown.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu a {
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 15px;
    display: inline-block;
  }
  .service-banner {
    height: 380px;
  }
  .banner-title {
    font-size: 2.25rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .sitemap-links {
    grid-template-columns: 1fr;
  }
  .top-bar {
    display: none; /* Hide on mobile */
  }
  .mobile-menu-contacts {
    display: flex;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .booking-container {
    padding: 24px;
  }
}

/* ==========================================================================
   NEW FEATURES - STATS, RECOMMENDED SERVICES, BLOG, AND CONTACT ENHANCEMENTS
   ========================================================================== */

/* 1. Stats Counter Section */
.stats-section {
  background: transparent;
  margin-top: -65px;
  position: relative;
  z-index: 15;
  padding: 0 20px;
  width: 100%;
}

.stats-section .container {
  max-width: var(--max-width);
  background-color: #ffffff !important;
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(14, 25, 39, 0.15);
  overflow: hidden;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  height: auto !important;
  padding: 0 !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  align-items: center;
  padding: 25px 15px;
  width: 100% !important;
}

.stat-card {
  padding: 10px;
  border-right: 1px solid #eef2f5;
  transition: var(--transition);
}

.stat-card:last-child {
  border-right: none;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 600;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Infinite text ticker bar at bottom of stats */
.stats-ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #f1b427 0%, #fcd667 50%, #f1b427 100%);
  height: 38px;
  display: flex;
  align-items: center;
  position: static !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.stats-ticker {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker-loop 35s linear infinite;
}

.ticker-item {
  display: inline-block;
  padding: 0 40px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes ticker-loop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* 2. Recommended Services Footer Section */
.other-services-footer-section {
  padding: 80px 0;
  background-color: var(--light-gray);
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.other-services-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.other-service-footer-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.other-service-footer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.os-card-img-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.os-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.other-service-footer-card:hover .os-card-img {
  transform: scale(1.05);
}

.os-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.os-card-content h3 {
  font-size: 1.3rem;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.os-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.os-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: var(--primary-navy);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.os-card-btn:hover {
  background-color: var(--gold-primary);
  color: var(--primary-navy);
}

/* 3. DGEG Watermark Background Section */
.dgeg-trust-section {
  position: relative;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.68) 0%, rgba(244, 246, 248, 0.9) 100%), url('../assets/images/dgeg_bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition);
}

/* 4. Blog & News Page Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 2.25fr 1fr;
  gap: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.blog-post-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-gray);
  transition: var(--transition);
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card-img-wrapper {
  height: 220px;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-post-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background-color: var(--gold-light);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.blog-card-title {
  font-size: 1.4rem;
  color: var(--primary-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.blog-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-link {
  font-weight: 600;
  color: var(--primary-navy);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-link:hover {
  color: var(--gold-primary);
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-gray);
}

.sidebar-title {
  font-size: 1.25rem;
  color: var(--primary-navy);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 8px;
}

.search-box-form {
  display: flex;
}

.search-input {
  flex-grow: 1;
  padding: 10px 15px;
  border: 1px solid var(--border-gray);
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.9rem;
}

.search-btn {
  padding: 10px 20px;
  background-color: var(--primary-navy);
  color: var(--white);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background-color: var(--gold-primary);
}

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.category-list a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.recent-post-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}

.recent-post-info h4 {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 5px;
  color: var(--primary-navy);
}

.recent-post-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* 5. Contact Page Redesign */
.contact-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.contact-cta-card {
  padding: 30px;
  border-radius: 8px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-cta-card.urgent {
  background-color: #fee2e2;
  border: 1px solid #fecaca;
}

.contact-cta-card.trust {
  background-color: #f0fdf4;
  border: 1px solid #dcfce7;
}

.pulse-indicator {
  width: 12px;
  height: 12px;
  background-color: var(--danger);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.map-section {
  padding: 60px 0;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gray);
  height: 450px;
}

/* 6. Media Queries for New Elements */
@media (max-width: 992px) {
  .other-services-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .contact-cta-grid {
    grid-template-columns: 1fr;
  }
}

/* Hide mobile bottom bar on desktop by default */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .other-services-footer-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .stats-section {
    height: auto;
    padding: 0 15px;
    margin-top: -40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 15px 10px;
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid #eef2f5;
    padding: 15px 10px;
  }
  .stat-card:nth-child(2) {
    border-right: none;
  }
  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-bottom: none;
  }
  .stat-number {
    font-size: 1.85rem;
  }

  /* Standardize CTA button grids on mobile (forces stacking and equal width) */
  .hero-ctas, .contact-btn-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 12px !important;
  }
  .hero-ctas .btn, .contact-btn-group .btn {
    width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    box-sizing: border-box !important;
  }

  /* Persistent Mobile Bottom Navigation Bar (Black background, custom colors) */
  .mobile-bottom-bar {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 62px !important;
    background-color: #0b111a !important; /* deep black-navy */
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3) !important;
    z-index: 10000 !important; /* stays on top of everything */
    padding: 8px 10px !important;
    box-sizing: border-box !important;
    justify-content: space-around !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .bottom-bar-btn {
    flex: 1 !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    transition: transform 0.2s ease, opacity 0.2s ease !important;
  }

  .bottom-bar-btn:active {
    transform: scale(0.95) !important;
  }

  .bottom-bar-btn svg {
    width: 22px !important;
    height: 22px !important;
    fill: #ffffff !important;
  }

  .bottom-btn-location {
    background-color: #e03e1a !important; /* Orange-red */
  }

  .bottom-btn-phone {
    background-color: #1ba1e2 !important; /* Light Blue */
  }

  .bottom-btn-whatsapp {
    background-color: #25d366 !important; /* Green */
  }

  .bottom-btn-email {
    background-color: #e84a5f !important; /* Coral Red */
  }

  /* Add spacing at the bottom of the body so mobile content is not covered */
  body {
    padding-bottom: 62px !important;
  }
}

/* ==========================================================================
   SIDEBAR BUTTONS STANDARDIZATION & GLOBAL MIDDLE CTA
   ========================================================================== */

/* Standardize buttons in Quick Booking widget (Marcação Rápida) */
.sidebar-box-dark {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.sidebar-box-dark .btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: 48px;
  box-sizing: border-box;
  margin: 0 0 12px 0 !important;
  padding: 0 20px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
}

.sidebar-box-dark .contact-btn-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0; /* managed by button margin-bottom */
}

.sidebar-box-dark .contact-btn-group .btn {
  margin-right: 0 !important;
}

/* Middle Page CTA Section (350px) */
.middle-cta-section {
  min-height: 350px;
  padding: 40px 0;
  background-color: var(--secondary-navy);
  border-top: 2px solid rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.middle-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(197, 160, 89, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.middle-cta-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.middle-cta-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 50px;
}

.middle-cta-logo {
  height: 110px;
  width: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 15px rgba(197, 160, 89, 0.25));
}

.middle-cta-logo-text {
  font-family: var(--font-headings);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: 1px;
}

.middle-cta-logo-text span {
  color: var(--gold-primary);
}

.middle-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.middle-cta-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.middle-cta-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.2;
}

.middle-cta-desc {
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 700px;
}

.middle-cta-contacts {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.middle-cta-link {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-light);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.middle-cta-link:hover {
  color: var(--gold-primary);
}

.middle-cta-right .cta-btn {
  padding: 12px 35px;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .middle-cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .middle-cta-left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
  }
  .middle-cta-section {
    min-height: auto;
    padding: 60px 0;
  }
}

/* ==========================================================================
   REGIONS ACCORDION STYLES
   ========================================================================== */
.regions-accordion-section {
  background-color: #f8fafc;
  padding: 40px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.regions-accordion-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.regions-accordion-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.2s ease;
  text-align: left;
}

.regions-accordion-trigger:hover {
  background-color: #f8fafc;
}

.regions-accordion-title {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-right: 15px;
}

.regions-accordion-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-grow: 1;
  text-align: right;
  margin-right: 20px;
}

.regions-accordion-icon svg {
  transition: transform 0.3s ease;
}

.regions-accordion-trigger[aria-expanded="true"] .regions-accordion-icon svg {
  transform: rotate(180deg);
}

.regions-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  border-top: 0 solid #e2e8f0;
}

.regions-accordion-trigger[aria-expanded="true"] + .regions-accordion-content {
  border-top-width: 1px;
}

.regions-grid {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 992px) {
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.region-link {
  font-size: 0.85rem;
  color: var(--primary-navy);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.region-link:hover {
  color: var(--gold-primary);
  text-decoration: underline;
}


