/* Optimized Icon Styles */
.icon-inline { display: inline-flex; align-items: center; justify-content: center; width: 1em; height: 1em; vertical-align: -0.125em; }
.social-sidebar-item .icon-inline { width: 22px; height: 22px; }
.footer-col .icon-inline { width: 1.2em; height: 1.2em; }
.floating-whatsapp .icon-inline { width: 1.2em; height: 1.2em; }
.therapy-mini-card i .icon-inline { font-size: 2.5rem; color: var(--color-primary); }
.contact-info ul li .icon-inline { font-size: 1.5rem; color: var(--color-primary); }


:root {
  /* Brand Colors */
  --color-primary: #A37B00;
  /* Gold */
  --color-primary-light: #F2EEB8;
  /* Pale Gold */
  --color-primary-dark: #A87500;
  /* Dark Gold / Focus Text */

  --color-secondary: #4F5340;
  /* Olive Green / Footer */

  --color-bg-main: #FFFFFF;
  /* White */
  --color-bg-alt: #F4F1E2;
  /* Linen / Beige / Highlight Sections */

  --color-text-body: #666666;
  /* Grey for standard text */
  --color-text-nav: #5E4C3E;
  /* Brownish-Grey for links */
  --color-text-contrast: #FFFFFF;
  /* White against dark backgrounds */

  /* Typography */
  --font-primary: 'Caudex', Georgia, "Times New Roman", serif;

  /* Layout Constants */
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-main);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 120px;
  animation: pulse-logo 2s infinite ease-in-out;
}

@keyframes pulse-logo {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-main);
  background-image:
    radial-gradient(at 0% 0%, rgba(242, 238, 184, 0.15) 0, transparent 50%),
    radial-gradient(at 100% 0%, rgba(198, 149, 0, 0.05) 0, transparent 50%);
  background-attachment: fixed;
  color: var(--color-text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  color: var(--color-primary-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 50px);
}

h2 {
  font-size: clamp(2rem, 4vw, 31px);
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

a:hover {
  color: var(--color-primary);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border-radius: 20px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

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

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

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

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

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.navbar.scrolled {
  top: 15px;
  width: 85%;
  left: 7.5%;
  border-radius: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: 0.55rem 4%;
}

.navbar.scrolled .brand-icon {
  width: 38px;
  height: 38px;
}

.navbar.scrolled .brand {
  font-size: 1.6rem;
}

.navbar.scrolled .nav-links a {
  font-size: 1.05rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.brand-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 1.1rem;
  font-weight: 400;
  position: relative;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
}

/* Common Sections */
section {
  padding: 5rem 5%;
}

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

.page-header {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 60px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-primary-dark);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  z-index: 1;
  opacity: var(--scroll-opacity, 1);
}

.page-header h1,
.page-header p {
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-title::after {
  content: '✻';
  display: block;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: 0.5rem;
  font-weight: normal;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 60px;
  /* margin-top: 80px;  REMOVED to allow overlay */
  /* Offset for navbar */
  background-color: var(--color-bg-main);
  background-image: url('/assets/ELET-INICIO.WEBP');
  /* Background image updated */
  background-size: cover;
  background-position: center 25%;
  background-attachment: fixed;
  color: var(--color-text-contrast);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(163, 123, 0, 0.4), rgba(0, 0, 0, 0.6));
  /* Gold and dark overlay for readability */
  opacity: var(--scroll-opacity, 1);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero h1 {
  color: var(--color-text-contrast);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Content Container Grid */
.container-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--color-bg-main);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(198, 149, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.feature-img {
  height: 220px;
  background-color: var(--color-bg-alt);
  background-size: cover;
  background-position: center;
}

.bg-servicios {
  background-image: url('/assets/ELET-EXPERIENCIAS.WEBP');
}

.bg-experiencias {
  background-image: url('/assets/ELET-SERVICIOS.WEBP');
}


.bg-vip {
  background-image: url('/assets/ELET_VIP.WEBP');
}

.feature-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  margin-bottom: 0;
}

.feature-card p {
  padding: 0 1.5rem 1.5rem;
  flex-grow: 1;
}

/* Form Inputs */
input,
textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  transition: var(--transition);
  background: #fdfdfd;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 5px rgba(198, 149, 0, 0.2);
}

/* Footer */
footer {
  background-color: var(--color-secondary);
  color: var(--color-text-contrast);
  padding: 4rem 5% 2rem;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: left;
}

.footer-col h3 {
  color: var(--color-primary-light);
  margin-bottom: 1.5rem;
}

.brand-col .brand {
  color: var(--color-text-contrast);
  font-size: 2.5rem;
}

.brand-col .brand-icon {
  fill: var(--color-text-contrast);
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.8rem;
  display: block;
}

.footer-col a:hover {
  color: var(--color-primary-light);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: auto;
  height: auto;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light) !important;
  transition: var(--transition);
}

.social-icon svg {
  width: 22px;
  height: 22px;
  margin: auto;
  display: block;
}

.social-icon:hover {
  background-color: transparent;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: none;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  color: var(--color-primary-dark);
}

/* Featured Therapies Mini-Cards */
.featured-therapies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.therapy-mini-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(198, 149, 0, 0.1);
  transition: var(--transition);
}

.therapy-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.therapy-mini-card i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.therapy-mini-card h3 {
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

/* Home Testimonials */
.testimonials-home {
  background-color: var(--color-bg-alt);
  padding: 6rem 5%;
}

.google-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.google-rating .stars {
  color: #fbbc05;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.testimonial-simple {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text-body);
  max-width: 800px;
  margin: 0 auto 2rem;
  border-left: 4px solid var(--color-primary-light);
  padding-left: 1.5rem;
  text-align: left;
}

/* Floating WhatsApp Button Refined */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  /* Brand Gold */
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav-toggle {
    display: block;
  }

  .container-dual {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 92vh;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.1;
  }

  /* Mobile Modal & Card adjustments */
  .modal-content {
    padding: 2rem;
    width: 95%;
    max-height: 90vh;
  }

  .btn-group {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
  }

  .btn-group .btn {
    font-size: 0.95rem;
    /* slightly smaller text on mobile */
    padding: 0.6rem 1.5rem;
  }

  .btn-group .btn.btn-icon {
    font-size: 1.5rem;
    /* slightly smaller icon on mobile */
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    min-width: 45px;
    max-width: 45px;
    min-height: 45px;
    max-height: 45px;
  }

  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
  }
}


/* Modal and Dual-Button Upgrades */
.btn-group .btn.btn-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 300;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  /* Forces strict circle shape */
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  color: var(--color-primary-dark);
  background: var(--color-bg-main);
  border: 1px solid var(--color-primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.modal-close:hover {
  background: var(--color-primary);
  color: var(--color-text-contrast);
  transform: rotate(90deg);
}

/* Modal Core Styles - Optimized for Mobile */
.modal-overlay {
  visibility: hidden; /* Added for performance */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8); /* Solid fallback for performance */
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  will-change: opacity;
}

/* Enable blur only on powerful devices/desktops */
@media (min-width: 1024px) {
  .modal-overlay {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.6);
  }
}

.modal-overlay.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--color-bg-main);
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateZ(0) scale(0.95); /* Hardware acceleration */
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 5px solid var(--color-primary);
  will-change: transform;
}

.modal-overlay.active .modal-content {
  transform: translateZ(0) scale(1);
}

.social-sidebar-item {
  opacity: 0.8 !important;
  transition: opacity 0.3s ease;
}
.social-sidebar-item:hover {
  opacity: 1 !important;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-title {
  color: var(--color-primary-dark);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
  padding-right: 2rem;
}

.modal-body {
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-body ul {
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.modal-body li {
  margin-bottom: 0.5rem;
}

.btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.service-card h2 i {
  margin-right: 0.5rem;
  color: var(--color-primary);
  font-size: 1.5rem;
}

/* Social Icons identified colors */
/* REMOVED platform specific hovers for consistency with sidebar gold style */

.modal-footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- Global Preloader & Accessibility --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 120px;
  animation: pulse-logo 2s infinite ease-in-out;
}

@keyframes pulse-logo {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Accessibility Utilities */
.aria-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Utils & Helpers */
.flex-center-wrap {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.container-narrow {
  max-width: 1000px;
  margin: 0 auto;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
}

.text-center-mb {
  text-align: center;
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.welcome-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.welcome-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rounded-shadow {
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.therapy-mini-card .btn {
  margin-top: 1.5rem;
  display: block;
}

.footer-brand {
  margin-bottom: 1rem;
  color: white;
}

.footer-brand-icon {
  filter: brightness(0) invert(1);
}

.btn-contrast {
  color: var(--color-text-contrast);
  border-color: var(--color-text-contrast);
}

.btn-contrast:hover {
  background-color: var(--color-text-contrast);
  color: var(--color-secondary);
}

/* Service Page Specifics */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card-premium {
  background: var(--color-bg-main);
  padding: 2.5rem !important;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-primary);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card-premium .btn-group {
  margin-top: auto;
}

.service-card-premium h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-card-premium p {
  color: var(--color-text-body);
  margin-bottom: 2rem;
}

/* VIP Resource Cards */
.vip-resource-card {
  position: relative;
  transition: var(--transition);
}

.vip-resource-card.locked {
  filter: grayscale(0.8);
  opacity: 0.8;
  pointer-events: none;
}

.vip-resource-card.unlocked {
  filter: none;
  opacity: 1;
  pointer-events: auto;
  border-color: #28a745 !important;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.2);
}

.resource-status {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.vip-resource-card.unlocked .resource-status {
  color: #28a745;
}

.resource-action .badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: #eee;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.unlocked .resource-action .badge {
  background: #28a745;
  color: white;
}

.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1501;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(0, 0, 0, 0.25);
  padding: 15px 10px;
  border-radius: 0 12px 12px 0;
  backdrop-filter: blur(5px);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.social-sidebar-item {
  width: 34px;
  height: 34px;
  background-color: rgba(198, 149, 0, 0.8);
  /* Brand Gold */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 16px;
  transition: var(--transition);
  line-height: 1;
}

.social-sidebar-item svg {
  width: 20px;
  height: 20px;
  margin: auto;
  display: block;
}

.social-sidebar-item:hover {
  transform: scale(1.1) translateX(4px);
  background-color: var(--color-primary);
  box-shadow: 0 0 12px rgba(198, 149, 0, 0.5);
}

/* Tooltip for social sidebar */
.social-sidebar-item::after {
  content: attr(data-title);
  position: absolute;
  left: 45px;
  background: var(--color-primary-dark);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  white-space: nowrap;
  pointer-events: none;
}

.social-sidebar-item:hover::after {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 480px) {
  .social-sidebar {
    padding: 10px 6px;
    gap: 8px;
  }

  .social-sidebar-item {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* Success Modal Specifics */
.success-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  animation: bounce-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounce-in {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.success-modal-content {
  border-top: 5px solid #28a745 !important;
}

/* VIP Video Response Containers */
.vip-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-video-container.youtube {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-video-container.tiktok {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.vip-video-container iframe {
  border: none;
}

/* FAQ Section Styles (SEO Accordion) */
.faq {
  padding: 6rem 5%;
  background-color: var(--color-bg-main);
}

.faq-accordion-group {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  transition: var(--transition);
}

.faq-item:hover {
  border-bottom-color: var(--color-primary) !important;
}

.faq-toggle-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.faq-answer p {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}