/* ============================================
   Glory N Spa - Main Stylesheet
   Luxury Spa & Wellness Center
   ============================================ */

:root {
  --primary: #6b1d3a;
  --primary-dark: #4a1228;
  --primary-light: #8a3050;
  --secondary: #5F9EA0;
  --secondary-dark: #a87058;
  --secondary-light: #daa892;
  --bg-white: #ffffff;
  --bg-offwhite: #faf7f5;
  --bg-light-teal: #f5eeeb;
  --bg-cream: #fdfaf8;
  --text-dark: #3d1525;
  --text-body: #5a3040;
  --text-muted: #8a6575;
  --text-light: #ffffff;
  --shadow-sm: 0 2px 8px rgba(107, 29, 58, 0.06);
  --shadow-md: 0 4px 20px rgba(107, 29, 58, 0.1);
  --shadow-lg: 0 8px 40px rgba(107, 29, 58, 0.12);
  --shadow-xl: 0 16px 60px rgba(107, 29, 58, 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;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

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: clamp(1.8rem, 4vw + 1rem, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw + 0.8rem, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw + 0.6rem, 1.8rem); }
h4 { font-size: clamp(1.15rem, 1.5vw + 0.5rem, 1.4rem); }
h5 { font-size: clamp(1.05rem, 1vw + 0.5rem, 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: 240px;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--bg-light-teal);
  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-teal {
  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-teal: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: 28px 0;
  transition: var(--transition);
  background: transparent !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
}

@media (min-width: 992px) {
  .navbar .container {
    position: relative;
  }

  .navbar-nav.mx-auto {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important;
  }

  .navbar-cta {
    margin-left: auto;
  }
}

.navbar-brand {
  background: transparent;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: var(--transition);
  border-radius: var(--border-radius-sm);
  object-fit: contain;
}

.navbar.scrolled .navbar-brand img {
  height: 70px;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 8px 18px;
  margin: 0 2px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--text-dark);
  text-shadow: none;
}

.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: 10px;
  outline: none;
  box-shadow: none !important;
  width: 48px;
  height: 48px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 1050;
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler .toggler-bar {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .navbar-toggler .toggler-bar {
  background: var(--text-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  height: 100svh;
  min-height: 500px;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 100svh;
  min-height: 500px;
  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(to bottom, rgba(74, 18, 40, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  max-width: 800px;
  padding: 0 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: clamp(2px, 0.5vw, 4px);
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: 15px;
  display: inline-block;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: clamp(1.8rem, 5vw + 0.5rem, 4rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  margin-bottom: clamp(20px, 4vw, 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: clamp(250px, 40vh, 50vh);
  min-height: 250px;
  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(to bottom, rgba(74, 18, 40, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-hero-content h1 {
  color: var(--text-light);
  font-size: clamp(1.8rem, 4vw + 0.5rem, 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: clamp(50px, 8vw, 136px) 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: clamp(1.6rem, 3vw + 0.8rem, 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-teal {
  background: var(--bg-light-teal);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-images-stack {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}

.about-img-main {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--bg-white);
  z-index: 3;
}

.about-img-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-img-secondary:hover img {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  padding: clamp(12px, 2vw, 20px);
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 4;
}

.about-image-badge .number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-light);
  font-weight: 700;
  line-height: 1;
}

.about-image-badge .text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 5px;
}

.about-cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.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-teal);
  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 (V2 Cards)
   ============================================ */

.service-card-v2 {
  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(107, 29, 58, 0.05);
}

.service-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-card-v2-image {
  position: relative;
  height: clamp(200px, 28vw, 260px);
  overflow: hidden;
}

.service-card-v2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card-v2:hover .service-card-v2-image img {
  transform: scale(1.1);
}

.service-card-v2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 30%, rgba(74, 18, 40, 0.7));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.service-card-v2:hover .service-card-v2-overlay {
  opacity: 1;
}

.service-card-v2-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card-v2-buttons .btn-gold,
.service-card-v2-buttons .btn-whatsapp {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.service-card-v2-body {
  padding: clamp(20px, 3vw, 28px);
  position: relative;
}

.service-card-v2-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -25px;
  right: 25px;
  box-shadow: var(--shadow-md);
}

.service-card-v2-icon i {
  color: var(--text-light);
  font-size: 1.1rem;
}

.service-card-v2-body h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-card-v2-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.service-card-v2-body .benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-card-v2-body .benefits span {
  background: var(--bg-light-teal);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ============================================
   SERVICES PAGE CARDS
   ============================================ */

.service-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(107, 29, 58, 0.06);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(201, 136, 110, 0.2);
}

.service-card-image {
  position: relative;
  height: 240px;
  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.08);
}

.service-card-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(74, 18, 40, 0.5));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-card-image .overlay {
  opacity: 1;
}

.service-card-body {
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body h4 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 12px;
}

.service-card-body h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
  border-radius: 3px;
  transition: var(--transition);
}

.service-card:hover .service-card-body h4::after {
  width: 60px;
}

.service-card-body > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card-body .benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.service-card-body .benefits span {
  background: var(--bg-light-teal);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid rgba(107, 29, 58, 0.06);
}

.service-card:hover .service-card-body .benefits span {
  background: var(--bg-offwhite);
  border-color: rgba(201, 136, 110, 0.2);
}

.service-card-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(107, 29, 58, 0.06);
}

.service-card-buttons .btn-gold,
.service-card-buttons .btn-whatsapp {
  flex: 1 1 0;
  justify-content: center;
  text-align: center;
  padding: 11px 18px;
  font-size: 0.85rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-choose-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-choose-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.why-choose-image:hover img {
  transform: scale(1.05);
}

.why-choose-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}

.why-choose-badge i {
  color: var(--text-light);
  font-size: 1.2rem;
}

.why-choose-badge span {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-choose-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(107, 29, 58, 0.05);
}

.why-choose-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
  border-color: var(--secondary);
}

.why-choose-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--bg-light-teal), var(--bg-offwhite));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.why-choose-item:hover .why-choose-item-icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.why-choose-item-icon i {
  font-size: 1.1rem;
  color: var(--secondary);
  transition: var(--transition);
}

.why-choose-item:hover .why-choose-item-icon i {
  color: var(--text-light);
}

.why-choose-item-content h5 {
  margin-bottom: 4px;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.why-choose-item-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: clamp(25px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107, 29, 58, 0.05);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--secondary), var(--secondary-light));
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-quote-icon {
  margin-bottom: 12px;
}

.testimonial-quote-icon i {
  font-size: 1.8rem;
  color: var(--secondary);
  opacity: 0.3;
}

.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(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: clamp(8px, 1.5vw, 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(74, 18, 40, 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: clamp(60px, 8vw, 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(to bottom, rgba(74, 18, 40, 0.5) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-content h2 {
  color: var(--text-light);
  font-size: clamp(1.6rem, 3vw + 0.5rem, 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: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107, 29, 58, 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-teal), 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: clamp(20px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}

.contact-form .form-control {
  border: 2px solid rgba(107, 29, 58, 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: clamp(250px, 40vw, 400px);
  border: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: clamp(40px, 6vw, 80px) 0 0;
}

.footer-logo img {
  height: 90px;
  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: calc(30px + env(safe-area-inset-bottom, 0px));
  right: calc(20px + env(safe-area-inset-right, 0px));
  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: calc(15px + env(safe-area-inset-top, 0px));
  right: calc(15px + env(safe-area-inset-right, 0px));
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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-icon {
  margin-bottom: 12px;
}

.counter-icon i {
  font-size: 2rem;
  color: var(--secondary-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 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;
}

/* ============================================
   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-teal {
  color: var(--primary) !important;
}

.bg-gold {
  background: var(--secondary) !important;
}

.bg-teal {
  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;
}

.counter-number-light {
  color: #fff !important;
}

.counter-label-light {
  color: rgba(255, 255, 255, 0.8) !important;
}

.btn-gold-sm {
  font-size: 0.8rem;
  padding: 10px 20px;
}

.helper-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Broken image fallback */
img.img-broken {
  position: relative;
  min-height: 200px;
  background: linear-gradient(135deg, #f5f0eb 0%, #e8ddd4 100%);
}

img.img-broken::after {
  content: attr(alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  background: linear-gradient(135deg, #f5f0eb 0%, #e8ddd4 100%);
}
