/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0693e3;
  --secondary: #9b51e0; 
  --accent: #ff6900;
  --text: #111111;
  --text-muted: #6b7280;
  --background: #ffffff;
  --surface: #f8fafc;
  --surface-contrast: #0f172a;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.08);
  --shadow-md: 0 6px 18px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --grad-vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6,147,227,1) 0%, rgb(155,81,224) 100%);
}

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

* {
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(6, 147, 227, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 1rem 0;
}

.navbar.sticky {
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo animation */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease;
}

.navbar.sticky .logo-container {
  transform: scale(0.9);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--grad-vivid-cyan-blue-to-vivid-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-text-container {
  display: flex;
  flex-direction: column;
}

.logo-text {
  background: var(--grad-vivid-cyan-blue-to-vivid-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: none;
}

@media (min-width: 640px) {
  .logo-subtitle {
    display: block;
  }
}

/* Desktop navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

.nav-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* Language selector */
.language-selector {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
  padding: 0.25rem;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-muted);
}

.language-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.language-btn.active {
  background: var(--primary);
  color: white;
}

/* WhatsApp CTA */
.whatsapp-cta {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.whatsapp-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 40;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--background);
  z-index: 50;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-logo .logo-icon {
  width: 2rem;
  height: 2rem;
}

.mobile-logo .logo-text {
  font-size: 1rem;
  font-weight: 600;
}

.mobile-logo .logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mobile-menu-content {
  flex: 1;
  padding: 1rem 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--text);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  min-height: 44px;
  font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--surface);
  border-left-color: var(--primary);
  color: var(--primary);
}

.mobile-nav-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

/* Ocultar ícones SVG no menu mobile */
.mobile-nav-link svg {
  display: none;
}

/* ===== PARTNER PHONES STYLES ===== */
.partner-phones {
  margin: 1rem 0;
  padding: 0.75rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
}

.phone-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: #374151;
  font-size: 0.875rem;
}

.phone-item:not(:last-child) {
  border-bottom: 1px solid #d1d5db;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
}

.phone-item svg {
  color: #10b981;
  flex-shrink: 0;
}

.phone-label {
  font-weight: 600;
  color: #1f2937;
  min-width: 60px;
}

.phone-number {
  font-weight: 500;
  color: #059669;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
}

.phone-item:hover .phone-number {
  color: #047857;
  text-decoration: underline;
  cursor: pointer;
}

/* Responsive styles for phones */
@media (max-width: 768px) {
  .partner-phones {
    margin: 0.75rem 0;
    padding: 0.5rem;
  }
  
  .phone-item {
    font-size: 0.8rem;
    gap: 0.375rem;
  }
  
  .phone-label {
    min-width: 50px;
    font-size: 0.8rem;
  }
  
  .phone-number {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .partner-phones {
    margin: 0.5rem 0;
    padding: 0.375rem;
  }
  
  .phone-item {
    font-size: 0.75rem;
    gap: 0.25rem;
    padding: 0.375rem 0;
  }
  
  .phone-item:not(:last-child) {
    margin-bottom: 0.375rem;
    padding-bottom: 0.5rem;
  }
  
  .phone-label {
    min-width: 45px;
    font-size: 0.75rem;
  }
  
  .phone-number {
    font-size: 0.75rem;
  }
}

.mobile-menu-footer {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.mobile-whatsapp {
  width: 100%;
  justify-content: center;
}

/* Hamburger button */
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.hamburger-btn:hover {
  background: var(--surface);
}

.hamburger-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.hamburger-icon,
.close-icon {
  transition: opacity 0.2s ease;
}

.close-icon {
  position: absolute;
}

.hamburger-btn.open .hamburger-icon {
  opacity: 0;
}

.hamburger-btn.open .close-icon {
  opacity: 1;
}

.hamburger-btn:not(.open) .close-icon {
  opacity: 0;
}

/* Responsive breakpoints */
@media (max-width: 1023px) {
  .desktop-nav {
    display: none;
  }
}

@media (min-width: 1024px) {
  .mobile-controls {
    display: none;
  }
}

/* ===== MAIN CONTENT ===== */
.main-content {
  min-height: 100vh;
  transition: all 0.3s ease;
}

.main-content.sticky {
  padding-top: 5rem;
}

.main-content:not(.sticky) {
  padding-top: 6rem;
}

/* ===== PAGE SYSTEM ===== */
.page {
  display: none;
}

.page.active {
  display: block;
}

.page-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 50%, #fff7ed 100%);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(6, 147, 227, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(155, 81, 224, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 105, 0, 0.05) 0%, transparent 50%);
}

.floating-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: pulse 2s ease-in-out infinite;
}

.dot-1 {
  top: 25%;
  left: 25%;
  width: 8px;
  height: 8px;
  background: #60a5fa;
  animation-delay: 0s;
}

.dot-2 {
  top: 75%;
  right: 25%;
  width: 12px;
  height: 12px;
  background: #a78bfa;
  animation-delay: -0.5s;
  animation: bounce 2s ease-in-out infinite;
}

.dot-3 {
  bottom: 25%;
  left: 33%;
  width: 4px;
  height: 4px;
  background: #fb923c;
  animation-delay: -1s;
  opacity: 0.8;
}

.hero-content {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  animation: fade-in-up 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 7rem;
  }
}

.hero-title-primary {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-secondary {
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 5rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 32rem;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 2px solid #e5e7eb;
  color: var(--text);
  padding: 1rem 2rem;
  box-shadow: var(--shadow-lg);
}

.btn-outline:hover:not(:disabled) {
  border-color: #25d366;
  color: #25d366;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

/* ===== NEARBY PLACES SECTION ===== */
.nearby-places-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #f0f9ff 100%);
}

.nearby-places-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.nearby-places-header {
  text-align: center;
  margin-bottom: 4rem;
}

.nearby-places-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .nearby-places-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .nearby-places-title {
    font-size: 5rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nearby-places-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 48rem;
  margin: 0 auto;
}

/* ===== CAROUSEL ===== */
.nearby-carousel-container {
  margin-bottom: 5rem;
}

.nearby-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 100%;
  min-width: 0;
}

/* Old carousel styles removed - using improved version below */

/* ===== NEARBY SLIDE STYLES ===== */
.nearby-slide {
  display: flex;
  height: 350px;
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.nearby-slide-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.nearby-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nearby-slide:hover .nearby-slide-image img {
  transform: scale(1.05);
}

.nearby-slide-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.nearby-slide-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.nearby-slide-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.nearby-slide-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.nearby-slide-location svg {
  color: var(--primary);
}

@media (max-width: 768px) {
  .nearby-slide {
    flex-direction: column;
    height: auto;
  }
  
  .nearby-slide-image {
    height: 200px;
  }
  
  .nearby-slide-content {
    padding: 1.5rem;
  }
}

/* ===== QUICK ACCESS GRID ===== */
.quick-access {
  margin-bottom: 4rem;
}

.quick-access-header {
  text-align: center;
  margin-bottom: 2rem;
}

.quick-access-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  margin-top: 0;

}

.quick-access-subtitle {
  color: #6b7280;
  font-size: 1rem;
  margin-top: 0,5rem;
  margin-bottom: 0;
  text-align: center;
}

.quick-access-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-container svg {
  position: absolute;
  left: 1rem;
  color: #6b7280;
  z-index: 1;
}

.search-input {
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  font-size: 1rem;
  width: 300px;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.filter-select {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  font-size: 1rem;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.filter-select:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .quick-access-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .quick-access-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .quick-access-filters {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-input {
    width: 100%;
  }
  
  .filter-select {
    min-width: auto;
  }
}

.quick-access-item {
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quick-access-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.quick-access-image {
  position: relative;
  height: 10rem;
  overflow: hidden;
}

.quick-access-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.quick-access-item:hover .quick-access-image img {
  transform: scale(1.05);
}

.quick-access-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.quick-access-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.quick-access-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.quick-access-item:hover .quick-access-name {
  color: var(--primary);
}

.quick-access-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #f3f4f6;
  color: var(--text);
}

.quick-access-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex: 1;
}

.quick-access-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.quick-access-detail svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.quick-access-address {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.quick-access-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.quick-access-hours svg {
  width: 1rem;
  height: 1rem;
}

.quick-access-button {
  width: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.quick-access-button:hover {
  box-shadow: var(--shadow-lg);
}

/* ===== NEARBY CTA ===== */
.nearby-cta {
  text-align: center;
  display: flex;
  margin: 0 auto;
  max-width: 600px;
  padding: 2rem 1rem;
  flex-direction: column;
  align-items: center;
}

.nearby-cta-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Responsive nearby-cta */
@media (max-width: 768px) {
  .nearby-cta {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }
  
  .nearby-cta-text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .nearby-cta {
    padding: 1rem 0.5rem;
  }
  
  .nearby-cta-text {
    font-size: 0.9rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .nearby-places-title {
    font-size: 2.5rem;
  }
  
  .nearby-places-subtitle {
    font-size: 1rem;
  }
  
  .quick-access-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .navbar,
  .nav-link,
  .mobile-menu,
  .logo-container,
  .floating-dot {
    transition: none;
  }
  
  .floating-dot {
    animation: none;
  }
}

/* ===== ABOUT PAGE ===== */
.about-page {
  min-height: 100vh;
  padding: 5rem 0;
  background: white;
}

.about-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .about-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .about-title {
    font-size: 5rem;
  }
}

.about-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

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

.about-profile {
  display: flex;
  justify-content: center;
}

.profile-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
  padding: 2rem;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.profile-avatar {
  width: 8rem;
  height: 8rem;
  background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.profile-avatar:hover .profile-image {
  transform: scale(1.05);
}

/* Responsive profile image */
@media (max-width: 768px) {
  .profile-avatar {
    width: 6rem;
    height: 6rem;
    border: 3px solid white;
  }
}

@media (max-width: 480px) {
  .profile-avatar {
    width: 5rem;
    height: 5rem;
    border: 2px solid white;
  }
}

.avatar-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.profile-role {
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
}

.stat-blue {
  background: #eff6ff;
}

.stat-green {
  background: #f0fdf4;
}

.stat-purple {
  background: #faf5ff;
}

.stat-orange {
  background: #fff7ed;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-blue .stat-number {
  color: #2563eb;
}

.stat-green .stat-number {
  color: #16a34a;
}

.stat-purple .stat-number {
  color: #9333ea;
}

.stat-orange .stat-number {
  color: #ea580c;
}

.stat-label {
  font-size: 1rem;
  color: #6b7280;
}

.profile-whatsapp {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-whatsapp:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-intro {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  padding: 2rem;
}

.intro-text {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

.intro-stat {
  text-align: center;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.75rem;
}

.intro-stat svg {
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.intro-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.intro-stat-label {
  font-size: 0.75rem;
  color: #6b7280;
}

.about-services {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.services-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.services-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-services {
    padding: 2rem;
  }
  
  .services-title {
    font-size: 1.5rem;
  }
}

.service-card {
  padding: 2rem;
  background: white;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-title::before {
  content: '✨';
  font-size: 1.5rem;
  opacity: 0.8;
}

.service-desc {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Modal service items */
.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #374151;
  font-size: 0.9rem;
}

.service-item svg {
  color: #10b981;
  flex-shrink: 0;
}

/* Services list in modal */
.services-list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 1rem !important;
}

.services-list .service-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.75rem 1rem !important;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
  border: 1px solid #bae6fd !important;
  border-radius: 0.75rem !important;
  color: #0c4a6e !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  visibility: visible !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
  flex: 1 1 auto !important;
  min-width: 120px !important;
  max-width: 200px !important;
}

.services-list .service-item:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%) !important;
}

.services-list .service-item svg {
  color: #0ea5e9 !important;
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
}

/* Responsividade para serviços */
@media (max-width: 1024px) and (min-width: 769px) {
  .services-list {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
  }
  
  .services-list .service-item {
    flex: 1 1 calc(50% - 0.375rem) !important;
    min-width: 140px !important;
    max-width: 180px !important;
  }
}

/* Mobile image quality optimization */
@media (max-width: 768px) {
  .partner-image img,
  .carousel-image {
    filter: contrast(1.05) saturate(1.02);
    image-rendering: auto;
  }
}

@media (max-width: 768px) {
  .services-list {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  
  .services-list .service-item {
    padding: 0.75rem !important;
    font-size: 0.9rem !important;
    min-width: unset !important;
    max-width: unset !important;
  }
  
  .services-list .service-item svg {
    width: 16px !important;
    height: 16px !important;
  }
}

@media (max-width: 480px) {
  .services-list {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  
  .services-list .service-item {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.85rem !important;
  }
}

.about-mission {
  background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
  border-radius: 1rem;
  padding: 2rem;
}

.mission-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.mission-text {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.mission-cta {
  text-align: center;
}

.cta-text {
  color: #6b7280;
  margin-bottom: 1rem;
}

.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.btn-success:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
}

/* ===== PARTNERS PAGE ===== */
.partners-page {
  min-height: 100vh;
  background: #f9fafb;
}

.partners-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Section */
.partners-header {
  background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.partners-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 147, 227, 0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.breadcrumb-link:hover {
  color: #2563eb;
}

.breadcrumb-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #2563eb;
  transition: width 0.3s ease;
}

.breadcrumb-link:hover::after {
  width: 100%;
}

.breadcrumb-separator {
  color: #d1d5db;
}

.breadcrumb-current {
  color: #1f2937;
  font-weight: 500;
}

/* Header Content */
.partners-header-content {
  text-align: center;
  margin-bottom: 3rem;
}

.partners-title {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .partners-title {
    font-size: 5rem;
  }
}

@media (min-width: 1024px) {
  .partners-title {
    font-size: 6rem;
  }
}

.partners-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

/* Filters Section */
.filters-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  border: 1px solid #f3f4f6;
}

.filters-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .filters-grid {
    /* grid-template-columns: 1fr 1fr 1fr; */
    align-items: end;
  }
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.search-container {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #2563eb;
}

.type-filter {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.filter-select {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  background: white;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: #2563eb;
}

.map-button {
  display: flex;
  flex-direction: column;
}

.map-btn {
  width: 100%;
  height: 2.75rem;
  border: 2px solid #dbeafe;
  color: #2563eb;
  background: transparent;
  border-radius: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.map-btn:hover {
  background: #eff6ff;
  border-color: #93c5fd;
}

/* Services Grid Section */
.services-grid-section {
  padding: 4rem 0;
}

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

.services-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.services-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partner-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.partner-card:hover::before {
  left: 100%;
}

.partner-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
}

.partner-image {
  height: 12rem;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 1.125rem;
  position: relative;
  overflow: hidden;
}

.partner-content {
  padding: 1.5rem;
}

.partner-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.partner-card:hover .partner-title {
  color: #2563eb;
}

.partner-description {
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.partner-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.partner-type {
  background: #2563eb;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.partner-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fbbf24;
}

.partner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.partner-btn {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.partner-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  width: 100%;
}

.partner-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
  transform: translateY(-1px);
}

.partner-btn-outline {
  background: transparent;
  color: #2563eb;
  border: 1px solid #2563eb;
  flex: 1;
}

.partner-btn-outline:hover {
  background: #2563eb;
  color: white;
}

/* ===== PARTNER CARD STYLES ===== */
.partner-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
}

.partner-image {
  height: 12rem;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 1.125rem;
  position: relative;
  overflow: hidden;
}

.partner-image {
  position: relative;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: optimize-contrast;
  -ms-interpolation-mode: bicubic;
  filter: contrast(1.1) saturate(1.05);
}

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

/* ===== IMAGE CAROUSEL STYLES ===== */
.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: optimize-contrast;
  -ms-interpolation-mode: bicubic;
  filter: contrast(1.1) saturate(1.05);
}

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

/* High-resolution display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .partner-image img,
  .carousel-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    filter: contrast(1.15) saturate(1.1) brightness(1.02);
  }
}

/* Ultra-high resolution displays */
@media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 288dpi) {
  .partner-image img,
  .carousel-image {
    filter: contrast(1.2) saturate(1.15) brightness(1.05);
  }
}

.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 0.75rem;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 20;
  pointer-events: auto;
}

.carousel-prev,
.carousel-next {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  position: relative;
  overflow: hidden;
}

.carousel-prev::before,
.carousel-next::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
}

.carousel-prev:hover::before,
.carousel-next:hover::before {
  opacity: 1;
}

.carousel-prev:active,
.carousel-next:active {
  transform: scale(1.05) translateY(-1px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.carousel-prev svg,
.carousel-next svg {
  color: white;
  width: 18px;
  height: 18px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.carousel-prev:hover svg,
.carousel-next:hover svg {
  color: white;
  transform: scale(1.1);
}

/* Efeito de brilho pulsante para os botões */
.carousel-prev,
.carousel-next {
  animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  }
}

/* Responsive carousel buttons */
@media (max-width: 768px) {
  .carousel-nav {
    padding: 0 0.5rem;
  }
  
  .carousel-prev,
  .carousel-next {
    width: 2.5rem;
    height: 2.5rem;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
  }
  
  .carousel-prev svg,
  .carousel-next svg {
    width: 16px;
    height: 16px;
  }
  
  .carousel-prev:hover,
  .carousel-next:hover {
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
  }
}

@media (max-width: 480px) {
  .carousel-nav {
    padding: 0 0.25rem;
  }
  
  .carousel-prev,
  .carousel-next {
    width: 2rem;
    height: 2rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  }
  
  .carousel-prev svg,
  .carousel-next svg {
    width: 14px;
    height: 14px;
  }
  
  .carousel-prev:hover,
  .carousel-next:hover {
    transform: scale(1.02) translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  }
}

.partner-type-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Partner Types - Tourism & Services */
.partner-type-turismo {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.partner-type-transporte {
  background: linear-gradient(135deg, #10b981, #059669);
}

.partner-type-alimentacao {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.partner-type-hospedagem {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Nearby Places Types */
.partner-type-shopping {
  background: linear-gradient(135deg, #ec4899, #be185d);
}

.partner-type-restaurant {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.partner-type-beach {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.partner-type-market {
  background: linear-gradient(135deg, #10b981, #059669);
}

.partner-type-bank {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}

.partner-type-pharmacy {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.partner-type-bakery {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.partner-type-exchange {
  background: linear-gradient(135deg, #84cc16, #65a30d);
}

.partner-type-hospital {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.partner-type-attraction {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.image-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.25rem;
  z-index: 2;
}

.image-dots .dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.image-dots .dot.active {
  background: white;
  transform: scale(1.2);
}

.image-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.partner-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.partner-header .btn-maps {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  min-width: auto;
  flex-shrink: 0;
  height: auto;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-header .btn-maps::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.partner-header .btn-maps:hover::before {
  left: 100%;
}

.partner-header .btn-maps:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.partner-header .btn-maps:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.partner-header .btn-maps svg {
  width: 14px;
  height: 14px;
  animation: pulse-maps 2s infinite;
  position: relative;
  z-index: 1;
}

.partner-header .btn-maps span {
  position: relative;
  z-index: 1;
}

@keyframes pulse-maps {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.partner-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .partner-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  .partner-header .btn-maps {
    align-self: flex-end;
    width: fit-content;
  }
}

.partner-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
  flex: 1;
}

.partner-card:hover .partner-name {
  color: #2563eb;
}

.partner-description {
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
  font-size: 0.875rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.partner-details {
  margin-bottom: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.detail-item svg {
  color: #2563eb;
  flex-shrink: 0;
}

.detail-label {
  font-weight: bold;
  color: #374151;
  min-width: 4.5rem;
}

.detail-value {
  color: #374151;
  font-weight: bold;

}

.detail-value.price {
  color: #2563eb;
  font-size: 1.125rem;
  font-weight: 700;
}

.partner-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-tag {
  background: #dbeafe;
  color: #1e40af;
  padding: 0.375rem 0.875rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.partner-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

.btn-reserve {
  width: 100%;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
  border: none;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-reserve:hover {
  background: linear-gradient(135deg, #6d28d9, #4c1d95);
  transform: translateY(-1px);
}

.secondary-buttons {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.partner-actions .secondary-buttons .btn {
  flex: 1;
}

.btn-maps,
.btn-call {
  flex: 1;
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
  font-weight: 600;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-maps:hover {
  background: #f0f9ff;
  border-color: #0ea5e9;
  color: #0ea5e9;
}

.btn-call:hover {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #22c55e;
}


/* ===== MODAL STYLES ===== */
.modal-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.detail-card {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
}

.detail-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 1rem 0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .modal-details-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .detail-card {
    padding: 1rem;
  }
}

/* No Results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn 0.5s ease-out;
}

.no-results-content {
  max-width: 28rem;
  margin: 0 auto;
}

.no-results-icon {
  width: 6rem;
  height: 6rem;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: #9ca3af;
}

.no-results-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.no-results-content p {
  color: #6b7280;
  margin-bottom: 2rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== PARTNER CONTACT SECTION ===== */
.partner-contact-section {
  background: rgba(248, 250, 252, 0.8);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-header svg {
  color: var(--primary);
  flex-shrink: 0;
}

.contact-header span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-item:hover {
  background: rgba(6, 147, 227, 0.05);
  border-color: rgba(6, 147, 227, 0.2);
}

.contact-info {
  flex: 1;
}

.contact-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.contact-number {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  margin-left: 1rem;
}

.whatsapp-btn:hover {
  background: #20BA5A;
  transform: scale(1.05);
}

.whatsapp-btn svg {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .partners-header::before,
  .partner-card::before,
  .partner-card,
  .partner-btn-primary,
  .partner-btn-outline,
  .no-results,
  .contact-item,
  .whatsapp-btn {
    animation: none;
    transition: none;
  }
}

/* ===== PARTNER MODAL ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content {
  background: white;
  border-radius: 1.5rem;
  max-width: 36rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  animation: modalScale 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  background: white;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-title-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modal-logo {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.modal-title-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.rating-stars {
  display: flex;
  gap: 0.125rem;
}

.rating-stars svg {
  color: #fbbf24;
  fill: currentColor;
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
}

.modal-close {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: #6b7280;
}

.modal-close:hover {
  background: #e5e7eb;
}

.modal-close:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.modal-body {
  padding: 1.5rem;
}

.modal-description {
  margin-bottom: 1.5rem;
}

.modal-description p {
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.modal-services {
  margin-bottom: 1.5rem;
}

.modal-services h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.modal-services {
  margin-bottom: 1.5rem;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#modal-services-list {
  display: flex !important;
  flex-direction: row !important;
  gap: 0.5rem !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.services-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-badge {
  background: #eff6ff;
  color: #1e40af;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #dbeafe;
}

.modal-contact {
  margin-bottom: 1.5rem;
}

.modal-contact h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6b7280;
  transition: color 0.2s ease;
}

.contact-item:hover {
  color: #2563eb;
}

.modal-stats {
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  text-align: center;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 1rem;
  color: #6b7280;
}

.modal-footer {
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
  padding: 1.5rem;
  position: sticky;
  bottom: 0;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .modal-actions {
    flex-direction: row;
  }
}

.modal-actions .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.modal-actions .btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.modal-actions .btn-success:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-1px);
}

.modal-actions .btn-outline {
  background: transparent;
  color: #2563eb;
  border: 1px solid #2563eb;
}

.modal-actions .btn-outline:hover {
  background: #2563eb;
  color: white;
}

.modal-actions .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-actions .btn:disabled:hover {
  transform: none;
  background: transparent;
  color: #2563eb;
}

@keyframes modalSlideIn {
  from { 
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to { 
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes modalScale {
  from { transform: scale(0.95); }
  to { transform: scale(1); }
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

@media (prefers-reduced-motion: reduce) {
  .modal-backdrop,
  .modal-container,
  .modal-content,
  .contact-item,
  .stat-card,
  .modal-actions .btn {
    animation: none;
    transition: none;
  }
}

/* ===== TESTIMONIALS PAGE STYLES ===== */
.testimonials-page {
  min-height: 100vh;
}

.testimonials-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.testimonials-hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #faf5ff 100%);
  position: relative;
  overflow: hidden;
}

.floating-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
  opacity: 0.4;
}

.star-1 { top: 20%; left: 10%; animation-delay: 0s; }
.star-2 { top: 60%; right: 15%; animation-delay: -2s; }
.star-3 { top: 30%; right: 25%; animation-delay: -4s; }
.star-4 { bottom: 40%; left: 20%; animation-delay: -1s; }
.star-5 { bottom: 20%; right: 35%; animation-delay: -3s; }

.testimonials-title {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: titleSlideUp 1s ease-out;
  text-align: center;
}

@media (min-width: 640px) {
  .testimonials-title {
    font-size: 5rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-title {
    font-size: 6rem;
  }
}

.testimonials-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  animation: subtitleFadeIn 1s ease-out 0.3s both;
}

@media (min-width: 640px) {
  .testimonials-subtitle {
    font-size: 1.5rem;
  }
}

/* Testimonial Carousel */
.testimonial-carousel {
  padding: 5rem 0;
  background: linear-gradient(to bottom, white 0%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

.quote-decoration {
  position: absolute;
  opacity: 0.1;
  animation: quotePulse 3s ease-in-out infinite;
}

.quote-left {
  top: 2.5rem;
  left: 2.5rem;
  color: #2563eb;
}

.quote-right {
  bottom: 2.5rem;
  right: 2.5rem;
  color: #7c3aed;
  animation-delay: 1s;
}

.carousel-container {
  position: relative;
}

.cards-container {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  position: absolute;
  width: 100%;
  max-width: 600px;
  transition: all 0.7s ease-out;
  cursor: pointer;
}

.testimonial-card.active .card-content {
  transform: perspective(1000px) rotateY(0deg);
}

.testimonial-card:not(.active) .card-content {
  transform: perspective(1000px) rotateY(10deg);
}

.card-content {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  max-width: 32rem;
  margin: 0 auto;
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.card-content:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .card-content {
    padding: 3rem;
  }
}

/* Rating Stars */
.stars-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.star-rating {
  width: 1.5rem;
  height: 1.5rem;
  color: #fbbf24;
  fill: currentColor;
  margin: 0 0.25rem;
  animation: starTwinkle 2s ease-in-out infinite;
}

.star-rating:nth-child(1) { animation-delay: 0s; }
.star-rating:nth-child(2) { animation-delay: 0.1s; }
.star-rating:nth-child(3) { animation-delay: 0.2s; }
.star-rating:nth-child(4) { animation-delay: 0.3s; }
.star-rating:nth-child(5) { animation-delay: 0.4s; }

/* Quote Container */
.quote-container {
  margin-bottom: 2rem;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 3rem;
  height: 3rem;
  color: #dbeafe;
  z-index: 10;
  animation: quotePulse 3s ease-in-out infinite;
}

.quote-mark-end {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 2rem;
  height: 2rem;
  color: #e9d5ff;
  transform: rotate(180deg);
  z-index: 10;
  animation: quotePulse 3s ease-in-out infinite 1.5s;
}

.testimonial-content {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 20;
}

@media (min-width: 768px) {
  .testimonial-content {
    font-size: 1.25rem;
  }
}

/* Author Info */
.author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.avatar:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
  transform: scale(1.1);
}

.avatar::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #2563eb, #7c3aed, #2563eb);
  border-radius: 50%;
  z-index: -1;
  animation: avatarRotate 3s linear infinite;
}

.avatar-text {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.author-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.author-location {
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.author-date {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.nav-arrow:hover {
  background: white;
  color: #2563eb;
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
  transform: translateY(-50%) scale(1.1);
}

.nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.nav-arrow-left {
  left: 1rem;
}

.nav-arrow-right {
  right: 1rem;
}

/* Slide Indicators */
.indicators-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: 0.75rem;
}

.indicator {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.indicator.active {
  background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
  transform: scale(1.25);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.indicator:not(.active) {
  background: #d1d5db;
}

.indicator:not(.active):hover {
  background: #9ca3af;
  transform: scale(1.1);
}

.indicator::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(45deg, transparent, #2563eb, transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.indicator:hover::before {
  opacity: 0.3;
}

/* Progress Bar */
.progress-container {
  max-width: 28rem;
  margin: 2rem auto 0;
}

.progress-bar {
  width: 100%;
  background: #e5e7eb;
  border-radius: 9999px;
  height: 0.5rem;
  overflow: hidden;
}

.progress-fill {
  background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
  height: 0.5rem;
  border-radius: 9999px;
  transition: all 0.7s ease-out;
  position: relative;
  overflow: hidden;
}

.progress-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: progressShimmer 2s ease-in-out infinite;
}

.progress-text {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

/* CTA Section */
.testimonial-cta {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: 0;
}

.bg-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #4f46e5 100%);
  position: absolute;
  inset: 0;
}

.bg-overlay {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  inset: 0;
}

.floating-elements {
  position: absolute;
  inset: 0;
}

.floating-circle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.circle-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: -2s;
}

.circle-3 {
  width: 80px;
  height: 80px;
  bottom: 30%;
  left: 20%;
  animation-delay: -4s;
}

.circle-4 {
  width: 120px;
  height: 120px;
  top: 40%;
  right: 30%;
  animation-delay: -1s;
}

.sparkles {
  position: absolute;
  inset: 0;
}

.sparkle {
  position: absolute;
  animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 { top: 15%; left: 15%; animation-delay: 0s; color: #fbbf24; }
.sparkle-2 { top: 25%; right: 20%; animation-delay: -1s; color: #93c5fd; }
.sparkle-3 { bottom: 35%; left: 25%; animation-delay: -2s; color: #c4b5fd; }
.sparkle-4 { top: 50%; right: 15%; animation-delay: -0.5s; color: #f9a8d4; }
.sparkle-5 { bottom: 20%; right: 35%; animation-delay: -1.5s; color: #a5b4fc; }

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  animation: titleSlideUp 1s ease-out;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 5rem;
  }
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #dbeafe;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  animation: subtitleFadeIn 1s ease-out 0.3s both;
}

@media (min-width: 640px) {
  .cta-subtitle {
    font-size: 1.5rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  animation: buttonsSlideUp 1s ease-out 0.6s both;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-primary, .cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.cta-primary {
  background: white;
  color: #2563eb;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.cta-primary:hover {
  background: #f9fafb;
  color: #1d4ed8;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px) scale(1.05);
}

.cta-secondary {
  background: #10b981;
  color: white;
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
  border: 2px solid #34d399;
}

.cta-secondary:hover {
  background: #059669;
  border-color: #10b981;
  box-shadow: 0 25px 50px rgba(0,0,0,.2);
  transform: translateY(-2px) scale(1.05);
}

.cta-primary::before, .cta-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

.cta-secondary::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.cta-primary:hover::before, .cta-secondary:hover::before {
  left: 100%;
}

/* Trust Indicators */
.trust-indicators {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 32rem;
  margin: 0 auto;
  animation: trustFadeIn 1s ease-out 0.9s both;
}

@media (min-width: 640px) {
  .trust-indicators {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.trust-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.trust-label {
  font-size: 0.875rem;
  color: #dbeafe;
}

/* Additional Animations */
@keyframes starTwinkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(5deg); }
  50% { transform: scale(1.05) rotate(-3deg); }
  75% { transform: scale(1.08) rotate(3deg); }
}

@keyframes quotePulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes avatarRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1) rotate(0deg);
  }
  25% {
    opacity: 1;
    transform: scale(1.2) rotate(90deg);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.8) rotate(180deg);
  }
  75% {
    opacity: 1;
    transform: scale(1.1) rotate(270deg);
  }
}

@keyframes progressShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Mobile Responsivity for Testimonials */
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 90%;
  }

  .card-content {
    padding: 1.5rem !important;
  }

  .nav-arrow {
    display: none;
  }

  .cards-container {
    height: auto !important;
    min-height: 500px;
  }

  .testimonial-card:not(.active) {
    display: none;
  }

  .floating-circle {
    display: none;
  }

  .cta-title {
    font-size: 2rem !important;
  }

  .cta-subtitle {
    font-size: 1.25rem !important;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-title,
  .testimonials-subtitle,
  .star,
  .testimonial-card,
  .star-rating,
  .quote-mark,
  .quote-mark-end,
  .avatar,
  .progress-fill,
  .floating-circle,
  .sparkle,
  .cta-title,
  .cta-subtitle,
  .cta-buttons,
  .trust-indicators,
  .trust-item,
  .cta-primary,
  .cta-secondary {
    animation: none !important;
    transition: none !important;
  }

  .cta-primary:hover,
  .cta-secondary:hover,
  .trust-item:hover {
    transform: none !important;
  }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-page {
  min-height: 100vh;
  padding: 3rem 0;
}

.contact-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .contact-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-title {
    font-size: 3.5rem;
  }
}

.contact-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .contact-subtitle {
    font-size: 1.25rem;
  }
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 2rem;
  }
}

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-title svg {
  color: #2563eb;
}

/* Alerts */
.alert {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
}

.alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.375rem;
}

.form-label svg {
  color: #6b7280;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.error,
.form-textarea.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-textarea {
  resize: none;
  min-height: 100px;
}

.error-message {
  color: #dc2626;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message.show {
  display: block;
}

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-actions {
    flex-direction: row;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3);
}

.btn-success:hover:not(:disabled) {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.btn-large {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* Loading Spinner */
.btn .spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Contact Info Section */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Contact Info Card */
.contact-info-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .contact-info-card {
    padding: 2rem;
  }
}

.info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon-blue {
  background: #dbeafe;
  color: #2563eb;
}

.info-icon-green {
  background: #dcfce7;
  color: #16a34a;
}

.info-icon-purple {
  background: #f3e8ff;
  color: #9333ea;
}

.info-icon-orange {
  background: #fed7aa;
  color: #ea580c;
}

.info-content {
  flex: 1;
}

.info-label {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.info-value {
  color: #6b7280;
  font-size: 0.8125rem;
  line-height: 1.4;
}

/* Quick Contact Card */
.quick-contact-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #bbf7d0;
}

@media (min-width: 768px) {
  .quick-contact-card {
    padding: 2rem;
  }
}

.quick-contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.quick-contact-desc {
  color: #374151;
  margin-bottom: 1.25rem;
  line-height: 1.5;
  font-size: 0.875rem;
}

/* Mobile Responsivity */
@media (max-width: 768px) {
  .contact-page {
    padding: 2rem 0;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-form-card,
  .contact-info-card,
  .quick-contact-card {
    padding: 1.5rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .form-input,
  .form-textarea {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

/* ===== TESTIMONIALS PAGE ===== */
.testimonials-page {
  min-height: 100vh;
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #f0f9ff 100%);
}

.testimonials-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.testimonials-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 48rem;
  margin: 0 auto;
}

.testimonials-carousel {
  position: relative;
  margin-bottom: 4rem;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 1rem;
}

.testimonial-card {
  /* background: white; */
  border-radius: 1rem;
  /* box-shadow: var(--shadow-lg); */
  padding: 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-content {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background: var(--grad-vivid-cyan-blue-to-vivid-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 1rem;
}

.testimonial-rating svg {
  color: #fbbf24;
  width: 1.25rem;
  height: 1.25rem;
}

.testimonials-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonials-nav:hover {
  background: white;
  box-shadow: var(--shadow-md);
}

.testimonials-nav.prev {
  left: 1rem;
}

.testimonials-nav.next {
  right: 1rem;
}

.testimonials-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-indicator.active {
  background: var(--primary);
  transform: scale(1.25);
}

.testimonials-cta {
  text-align: center;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  padding: 3rem 2rem;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  /* color: var(--text); */
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  /* color: var(--text-muted); */
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  min-height: 100vh;
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #f0f9ff 100%);
}

.contact-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 48rem;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-section {
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text);
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.info-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.info-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.info-content p {
  color: var(--text-muted);
  line-height: 1.5;
}

.quick-contact {
  background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.quick-contact h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.quick-contact p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .intro-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-title,
  .partners-title,
  .testimonials-title,
  .contact-title {
    font-size: 2rem;
  }
  
  .partners-controls {
    flex-direction: column;
    align-items: center;
  }
  
  .search-container {
    max-width: 100%;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== SAFE AREA FOR MOBILE DEVICES ===== */
@supports (padding-top: env(safe-area-inset-top)) {
  .navbar {
    padding-top: max(1rem, env(safe-area-inset-top));
  }
  
  .navbar.sticky {
    padding-top: max(0.75rem, env(safe-area-inset-top));
  }
}

/* ===== IMPROVED MODAL STYLES ===== */
.detail-section {
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  margin-bottom: 1rem;
}

.detail-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-section h4::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  border-radius: 2px;
}

.modal-description {
  color: #475569;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.detail-item:hover {
  border-color: #7c3aed;
  box-shadow: 0 2px 4px rgba(124, 58, 237, 0.1);
}

.detail-item svg {
  color: #7c3aed;
  flex-shrink: 0;
}

.detail-label {
  font-weight: bold;
  color: #374151;
  min-width: 100px;
  flex-shrink: 0;
}

.detail-value {
  color: #374151;
  flex: 1;
}

.website-link {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.website-link:hover {
  color: #5b21b6;
  text-decoration: underline;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.modal-actions .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modal-actions .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (min-width: 768px) {
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modal-actions {
    justify-content: center;
  }
  
  .modal-actions .btn {
    flex: 0 1 auto;
    min-width: 150px;
  }
}

/* ===== TESTIMONIALS PREVIEW SECTION ===== */
.testimonials-preview {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.testimonials-preview-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.testimonials-preview-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-preview-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-preview-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.testimonial-stat {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.testimonial-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-stat .stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonials-preview-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .testimonials-preview-actions {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .testimonials-preview {
    padding: 3rem 0;
  }
  
  .testimonials-preview-title {
    font-size: 2rem;
  }
  
  .testimonials-preview-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-stat {
    padding: 1.5rem;
  }
  
  .testimonial-stat .stat-number {
    font-size: 2rem;
  }
}

/* ===== TESTIMONIAL MODAL ===== */
.testimonial-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.rating-input {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.rating-input input[type="radio"] {
  display: none;
}

.rating-input label {
  font-size: 2rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}

.rating-input input[type="radio"]:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
  color: #fbbf24;
}

.rating-input input[type="radio"]:checked ~ label {
  color: #f59e0b;
}