/* ============================================
   AMIGO SPA - Main Stylesheet
   Premium Luxury Spa & Wellness Center
   ============================================ */

:root {
  --primary: #2d5016;
  --primary-dark: #1a3a0a;
  --primary-light: #3d6b1f;
  --secondary: #c9a84c;
  --secondary-dark: #a68a3a;
  --secondary-light: #d4b85e;
  --bg-white: #ffffff;
  --bg-offwhite: #f9f7f4;
  --bg-light-green: #f4f8f1;
  --bg-cream: #fdfcf9;
  --text-dark: #1a3a0a;
  --text-body: #3d5a2e;
  --text-muted: #6b8f5b;
  --text-light: #ffffff;
  --shadow-sm: 0 2px 8px rgba(45, 80, 22, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 80, 22, 0.1);
  --shadow-lg: 0 8px 40px rgba(45, 80, 22, 0.12);
  --shadow-xl: 0 16px 60px rgba(45, 80, 22, 0.15);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-body);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ============================================
   PRELOADER
   ============================================ */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 150px;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--bg-light-green);
  border-top: 3px solid var(--secondary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-top: 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-gold {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--text-light);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-outline-gold {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-outline-gold:hover {
  background: var(--secondary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-green {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-light);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-green:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */

.navbar {
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}

.navbar-brand img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 8px 18px;
  margin: 0 2px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--text-dark);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 30px;
}

.navbar-cta .btn-gold {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.navbar-cta .btn-whatsapp {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.navbar-toggler {
  border: none;
  padding: 8px;
  outline: none;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 28px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
}

.navbar.scrolled .navbar-toggler-icon {
  background: var(--text-dark);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: var(--transition);
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 10, 0.7) 0%,
    rgba(45, 80, 22, 0.5) 50%,
    rgba(26, 58, 10, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  max-width: 800px;
  padding: 0 20px;
}

.hero-content .subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: 15px;
  display: inline-block;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-pagination {
  bottom: 30px !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--secondary);
  width: 35px;
  border-radius: 6px;
}

/* ============================================
   PAGE HERO BANNER
   ============================================ */

.page-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 10, 0.8) 0%,
    rgba(45, 80, 22, 0.6) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
}

.page-hero-content h1 {
  color: var(--text-light);
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.page-hero-content .breadcrumb {
  justify-content: center;
  margin: 0;
}

.page-hero-content .breadcrumb-item,
.page-hero-content .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.page-hero-content .breadcrumb-item.active {
  color: var(--secondary-light);
}

.page-hero-content .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
  padding: 100px 0;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 50px;
}

.section-bg-light {
  background: var(--bg-offwhite);
}

.section-bg-green {
  background: var(--bg-light-green);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-image-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1;
}

.about-image-badge .text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-light-green);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.about-feature-item:hover {
  background: var(--bg-offwhite);
  transform: translateX(5px);
}

.about-feature-item i {
  color: var(--secondary);
  font-size: 1.2rem;
  width: 24px;
}

.about-feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.service-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(45, 80, 22, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(26, 58, 10, 0.3));
}

.service-card-body {
  padding: 25px;
}

.service-card-body h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.service-card-body .benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.service-card-body .benefits span {
  background: var(--bg-light-green);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.service-card-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-card-buttons .btn-gold,
.service-card-buttons .btn-whatsapp {
  padding: 8px 18px;
  font-size: 0.8rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.feature-box {
  text-align: center;
  padding: 40px 25px;
  border-radius: var(--border-radius);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(45, 80, 22, 0.05);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.feature-box-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bg-light-green), var(--bg-offwhite));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.feature-box:hover .feature-box-icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.feature-box-icon i {
  font-size: 1.8rem;
  color: var(--secondary);
  transition: var(--transition);
}

.feature-box:hover .feature-box-icon i {
  color: var(--text-light);
}

.feature-box h5 {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 80, 22, 0.05);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--secondary);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-author-info h6 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.testimonial-author-info small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 58, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  color: var(--text-light);
  font-size: 2rem;
}

.gallery-filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 8px 24px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--primary);
  color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 10, 0.85) 0%,
    rgba(45, 80, 22, 0.75) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
}

.cta-content h2 {
  color: var(--text-light);
  font-size: 3rem;
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-info-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 80, 22, 0.05);
  height: 100%;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--bg-light-green), var(--bg-offwhite));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.contact-info-icon i {
  font-size: 1.4rem;
  color: var(--secondary);
}

.contact-info-card h5 {
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--text-body);
  font-weight: 500;
}

.contact-info-card a:hover {
  color: var(--secondary);
}

.contact-form {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form .form-control {
  border: 2px solid rgba(45, 80, 22, 0.1);
  border-radius: var(--border-radius-sm);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--bg-offwhite);
}

.contact-form .form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: var(--bg-white);
}

.contact-form .form-label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.contact-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-title {
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--secondary);
  margin-top: 4px;
  min-width: 16px;
}

.footer-contact li span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-contact li a:hover {
  color: var(--secondary);
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.float-btn-whatsapp {
  background: #25d366;
}

.float-btn-call {
  background: var(--secondary);
}

.float-btn-top {
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.float-btn-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--border-radius-sm);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
}

.lightbox-close:hover {
  color: var(--secondary);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--secondary);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ============================================
   COUNTER SECTION
   ============================================ */

.counter-box {
  text-align: center;
  padding: 30px;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   GLASSMORPHISM CARD
   ============================================ */

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

/* ============================================
   PARALLAX
   ============================================ */

.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* ============================================
   UTILITIES
   ============================================ */

.text-gold {
  color: var(--secondary) !important;
}

.text-green {
  color: var(--primary) !important;
}

.bg-gold {
  background: var(--secondary) !important;
}

.bg-green {
  background: var(--primary) !important;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  border-radius: 3px;
  margin: 15px auto 0;
}

.divider-left {
  margin-left: 0;
}
