/* =============================================
   Premium Luxury Agency - Main Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gold-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.text-gold {
  color: var(--gold-primary);
}

/* ---- Section Spacing ---- */
section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ---- Glass Card ---- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--gold-primary);
}

/* ---- Buttons ---- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gold-gradient);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  letter-spacing: 0.5px;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #0a0a0a;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--gold-primary);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #0a0a0a;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

/* ---- Header / Navbar ---- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
}

.main-header.scrolled {
  box-shadow: var(--shadow-soft);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary) !important;
  letter-spacing: 1px;
}

.navbar-brand span {
  color: var(--text-primary);
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 8px 16px !important;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme Toggle */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--glass-bg);
  color: var(--gold-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-glow);
  transform: rotate(15deg);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

.navbar-toggler {
  border-color: var(--gold-primary) !important;
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9a962' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ---- Hero Section ---- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80') center/cover no-repeat;
  z-index: 0;
}

/* Hero Background Slider */
.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  height: 100%;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 6s ease;
}

.hero-swiper .swiper-slide-active .hero-slide-bg {
  transform: scale(1.06);
}

.hero-slide-1 { background-image: url('https://img.magnific.com/premium-photo/sensuous-young-couple-bed-against-white-background_422891-25402.jpg?w=1480'); }
.hero-slide-2 { background-image: url('https://img.magnific.com/premium-photo/sensuous-young-couple-bed-against-white-background_422891-25402.jpg?w=1480'); }
.hero-slide-3 { background-image: url('https://img.magnific.com/free-photo/beautiful-intimacy-moment-couple_23-2149165281.jpg?t=st=1782732918~exp=1782736518~hmac=70caf4006a39723e069a2b0cd32ab2c914dff766968dc6c884b791bbcb325e09&w=1480'); }
.hero-slide-4 { background-image: url('https://img.magnific.com/premium-photo/passionate-couple-love-bed-expensive-interior-sex-lust_262114-585.jpg?w=1480'); }

.hero-pagination {
  bottom: 24px !important;
  z-index: 2;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(201, 169, 98, 0.4) !important;
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--gold-primary) !important;
  width: 28px;
  border-radius: 6px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid var(--gold-primary);
  border-radius: 50px;
  color: var(--gold-primary);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gold-light);
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.hero-scroll a {
  color: var(--gold-primary);
  font-size: 1.5rem;
}

/* ---- Profile Cards ---- */
.profile-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--gold-primary);
}

.profile-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.profile-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.profile-card:hover .profile-card-image img {
  transform: scale(1.08);
}

.profile-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-gradient);
  color: #0a0a0a;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.profile-card-body {
  padding: 1.25rem;
}

.profile-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.profile-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.profile-card-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--input-bg);
  padding: 3px 10px;
  border-radius: 50px;
}

.profile-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.profile-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.profile-card-actions .btn-gold,
.profile-card-actions .btn-outline-gold {
  flex: 1;
  justify-content: center;
  min-width: 80px;
}

/* ---- Category Carousel ---- */
.category-swiper-wrap {
  position: relative;
  padding: 0 4px 48px;
}

.category-swiper {
  overflow: hidden;
  padding: 12px 4px 8px;
}

.category-swiper .swiper-slide {
  height: auto;
}

.category-card {
  position: relative;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid transparent;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: var(--gold-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(201, 169, 98, 0.28);
  border-color: rgba(201, 169, 98, 0.35);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.35) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
  z-index: 2;
  pointer-events: none;
  transition: background 0.4s ease;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.45) 50%, transparent 100%);
}

.category-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.category-card-subtitle {
  font-size: 0.88rem;
  color: var(--gold-light);
  margin: 0;
  letter-spacing: 0.3px;
}

/* Category swiper navigation */
.category-swiper-prev,
.category-swiper-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  color: var(--gold-primary) !important;
  transition: all 0.3s ease;
}

.category-swiper-prev::after,
.category-swiper-next::after {
  font-size: 1rem;
  font-weight: 700;
}

.category-swiper-prev:hover,
.category-swiper-next:hover {
  background: var(--gold-gradient);
  color: #0a0a0a !important;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.category-swiper-pagination {
  bottom: 0 !important;
}

.category-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(201, 169, 98, 0.35) !important;
  opacity: 1;
  transition: all 0.3s ease;
}

.category-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--gold-primary) !important;
  width: 28px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(201, 169, 98, 0.5);
}

/* Category Gallery Modal */
.category-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.category-gallery-modal.active {
  display: flex;
}

.category-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.category-gallery-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}

.category-gallery-close {
  position: absolute;
  top: -52px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2;
}

.category-gallery-close:hover {
  color: var(--gold-primary);
}

.category-gallery-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.category-gallery-header h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.category-gallery-header p {
  color: var(--gold-light);
  margin: 0;
  font-size: 0.95rem;
}

.category-gallery-swiper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.category-gallery-slide {
  height: 70vh;
  max-height: 620px;
  min-height: 320px;
  background: #111;
}

.category-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-gallery-prev,
.category-gallery-next {
  color: var(--gold-primary) !important;
}

.category-gallery-pagination .swiper-pagination-bullet {
  background: rgba(201, 169, 98, 0.4) !important;
  opacity: 1;
}

.category-gallery-pagination .swiper-pagination-bullet-active {
  background: var(--gold-primary) !important;
}

@media (max-width: 767px) {
  .category-card {
    height: 460px;
  }

  .category-swiper-prev,
  .category-swiper-next {
    width: 38px;
    height: 38px;
  }

  .category-gallery-slide {
    height: 55vh;
    min-height: 280px;
  }

  .category-gallery-close {
    top: -44px;
    right: 4px;
  }
}

/* ---- Premium Pricing ---- */
.premium-pricing-card {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-medium);
}

.table-responsive-custom {
  width: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.table-responsive-custom::-webkit-scrollbar {
  display: none;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.premium-pricing-table-wrap {
  overflow-x: hidden;
}

.premium-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.premium-pricing-table thead th {
  background: var(--gold-gradient);
  color: #0a0a0a;
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-align: center;
  border: none;
}

.premium-pricing-table thead th:first-child {
  text-align: left;
}

.premium-pricing-table thead th:last-child {
  text-align: right;
}

.premium-pricing-table tbody tr {
  background: #111111;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="light"] .premium-pricing-table tbody tr {
  background: var(--bg-tertiary);
}

.premium-pricing-table tbody tr:last-child {
  border-bottom: none;
}

.premium-pricing-table tbody tr:hover {
  background: #1a1a1a;
  box-shadow: inset 0 0 20px rgba(201, 169, 98, 0.08);
}

[data-theme="light"] .premium-pricing-table tbody tr:hover {
  background: var(--bg-secondary);
  box-shadow: inset 0 0 20px rgba(201, 169, 98, 0.12);
}

.premium-pricing-table tbody td {
  padding: 18px 24px;
  color: #ffffff;
  font-size: 0.95rem;
  vertical-align: middle;
}

.premium-pricing-table tbody td:last-child {
  text-align: right;
}

.pricing-duration {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #ffffff;
}

.pricing-duration i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.12);
  color: var(--gold-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.premium-pricing-table tbody tr:hover .pricing-duration i {
  background: var(--gold-gradient);
  color: #0a0a0a;
  box-shadow: 0 0 16px rgba(201, 169, 98, 0.4);
}

.pricing-price {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gold-primary);
  letter-spacing: 0.3px;
}

.premium-pricing-table tbody tr:hover .pricing-price {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(201, 169, 98, 0.25);
}

@media (max-width: 767px) {
  .pricing-table,
  .premium-pricing-table {
    table-layout: fixed;
  }

  .premium-pricing-table thead th {
    padding: 14px 12px;
    font-size: 0.9rem;
  }

  .premium-pricing-table thead th:first-child,
  .premium-pricing-table tbody td:first-child {
    width: 62%;
  }

  .premium-pricing-table thead th:last-child,
  .premium-pricing-table tbody td:last-child {
    width: 38%;
  }

  .premium-pricing-table tbody td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }

  .pricing-duration {
    gap: 8px;
  }

  .pricing-duration i {
    width: 30px;
    height: 30px;
    font-size: 0.78rem;
  }

  .pricing-price {
    font-size: 0.88rem;
    letter-spacing: 0;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .premium-pricing-table thead th {
    padding: 12px 8px;
    font-size: 0.82rem;
  }

  .premium-pricing-table tbody td {
    padding: 10px 8px;
    font-size: 0.8rem;
  }

  .pricing-duration {
    gap: 6px;
  }

  .pricing-duration i {
    width: 26px;
    height: 26px;
    font-size: 0.72rem;
  }

  .pricing-price {
    font-size: 0.82rem;
  }
}

/* Pricing Feature Cards */
.pricing-features {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-feature-card {
  padding: 2rem 1.75rem;
  text-align: center;
  height: 100%;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--gold-primary);
}

.pricing-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0a0a0a;
  font-size: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-feature-card:hover .pricing-feature-icon {
  transform: scale(1.08);
  box-shadow: var(--shadow-glow);
}

.pricing-feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.pricing-feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* ---- Service Cards ---- */
.service-card {
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--gold-primary);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-gradient);
  font-size: 1.8rem;
  color: #0a0a0a;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex-grow: 1;
  margin-bottom: 0;
}

/* ---- Photo Gallery Cards ---- */
.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.gallery-card-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  width: 100%;
}

.gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card:hover .gallery-card-image img {
  transform: scale(1.08);
}

.gallery-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 55%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.gallery-card-name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.15rem;
  line-height: 1.3;
}

.gallery-card-meta {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  letter-spacing: 0.3px;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 3;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-overlay i {
  color: var(--gold-primary);
  font-size: 2rem;
  transform: scale(0.8);
  transition: transform var(--transition-fast);
}

.gallery-card:hover .gallery-card-overlay i {
  transform: scale(1);
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 8px 22px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-gradient);
  color: #0a0a0a;
  border-color: transparent;
}

.gallery-col.hidden-filter {
  display: none !important;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--gold-primary);
}

/* ---- FAQ Accordion ---- */
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-primary);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--glass-bg);
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--input-bg);
}

.faq-question i {
  color: var(--gold-primary);
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ---- Testimonials ---- */
.testimonial-card {
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  flex-grow: 1;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.testimonial-location {
  color: var(--gold-primary);
  font-size: 0.85rem;
  margin: 0;
}

.testimonial-location i {
  margin-right: 4px;
}

/* ---- Video Gallery (Reel Style) ---- */
.video-gallery-section {
  background: var(--bg-secondary);
}

.video-reel-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.video-reel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--gold-primary);
}

.video-reel-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  width: 100%;
}

.video-reel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.video-reel-card:hover .video-reel-thumb img {
  transform: scale(1.06);
}

.video-reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.video-reel-card:hover .video-reel-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
}

.video-play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 1.25rem;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  padding-left: 4px;
}

.video-reel-card:hover .video-play-btn {
  transform: scale(1.12);
  box-shadow: var(--shadow-glow);
}

.video-reel-title {
  padding: 1rem 1rem 1.25rem;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 0;
}

/* ---- Video Modal ---- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.video-modal.active {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.video-modal-content video {
  width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-lg);
  background: #000;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.video-modal-close:hover {
  color: var(--gold-primary);
}

.video-modal-title {
  color: #fff;
  font-family: var(--font-heading);
  margin-top: 1rem;
  font-size: 1.2rem;
}

/* ---- Featured Video ---- */
.featured-video-section {
  background: #0b0b0b;
  padding: 80px 0;
}

.featured-video-content {
  padding-right: 0;
}

.featured-video-label {
  font-size: 0.85rem;
  color: var(--gold-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.featured-video-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.featured-video-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.featured-video-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-video-features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.featured-video-feature-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.35);
  color: var(--gold-primary);
  font-size: 0.75rem;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.featured-video-features li:hover .featured-video-feature-icon {
  background: var(--gold-gradient);
  color: #0b0b0b;
  box-shadow: 0 0 18px rgba(201, 169, 98, 0.35);
}

.featured-video-player {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
  background: #000000;
  aspect-ratio: 16 / 10;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
}

.featured-video-player.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.featured-video-player:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 16px 56px rgba(201, 169, 98, 0.22);
}

.premium-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  background: #000000;
}

.featured-video-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  pointer-events: none;
}

[data-theme="light"] .featured-video-section {
  background: var(--bg-primary);
}

[data-theme="light"] .featured-video-heading {
  color: var(--text-primary);
}

[data-theme="light"] .featured-video-text {
  color: var(--text-secondary);
}

[data-theme="light"] .featured-video-features li {
  color: var(--text-primary);
}

@media (max-width: 991px) {
  .featured-video-content {
    padding-right: 0;
    margin-top: 0.5rem;
  }
}

@media (max-width: 767px) {
  .featured-video-section {
    padding: 60px 0;
  }

  .featured-video-player {
    aspect-ratio: auto;
    min-height: 260px;
    max-height: 300px;
  }

  .premium-video {
    min-height: 260px;
    max-height: 300px;
  }

  .featured-video-text {
    margin-bottom: 1.5rem;
  }
}

.swiper-pagination-bullet {
  background: var(--gold-primary) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--gold-primary) !important;
}

/* ---- Page Hero (Inner Pages) ---- */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.6));
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-hero-breadcrumb {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.page-hero-breadcrumb a {
  color: var(--gold-primary);
}

.page-hero-breadcrumb a:hover {
  text-decoration: underline;
}

/* ---- About Page ---- */
.stat-card {
  padding: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold-gradient);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: 3px solid var(--bg-primary);
}

.timeline-year {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ---- Contact Page ---- */
.contact-form .form-control,
.contact-form .form-select {
  background: var(--input-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 12px 16px;
  transition: border-color var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--input-bg);
  border-color: var(--gold-primary);
  color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.contact-form .form-control::placeholder {
  color: var(--text-muted);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--gold-gradient);
  color: #0a0a0a;
  border-color: transparent;
  transform: translateY(-3px);
}

/* ---- Profile Details Page ---- */
.profile-hero-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.profile-main-image {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-lg);
}

.profile-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.profile-thumbnail {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
  opacity: 0.7;
}

.profile-thumbnail.active,
.profile-thumbnail:hover {
  border-color: var(--gold-primary);
  opacity: 1;
}

.profile-info-table {
  width: 100%;
}

.profile-info-table tr {
  border-bottom: 1px solid var(--border-color);
}

.profile-info-table td {
  padding: 12px 0;
  font-size: 0.95rem;
}

.profile-info-table td:first-child {
  color: var(--gold-primary);
  font-weight: 600;
  width: 40%;
}

.profile-info-table td:last-child {
  color: var(--text-secondary);
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 4px;
}

.feature-badge i {
  color: var(--gold-primary);
}

/* ---- Footer ---- */
.main-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 0;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 1rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: 50px 0 0 50px;
  background: var(--input-bg);
  color: var(--text-primary);
  font-size: 0.9rem;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.footer-newsletter button {
  padding: 10px 20px;
  border: none;
  border-radius: 0 50px 50px 0;
  background: var(--gold-gradient);
  color: #0a0a0a;
  cursor: pointer;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-bottom-links a:hover {
  color: var(--gold-primary);
}

/* ---- Simple Footer ---- */
.site-footer-simple {
  background: #000000;
  padding: 28px 16px 32px;
  text-align: center;
}

.site-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-bottom: 0.75rem;
}

.site-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #c44d7a;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.site-footer-link:hover {
  color: #d96694;
}

.site-footer-sep {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1;
  user-select: none;
}

.site-footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.site-footer-icon i {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.site-footer-copy {
  color: #ffffff;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

[data-theme="light"] .site-footer-simple {
  background: #0a0a0a;
}

/* ---- Floating Action Buttons ---- */
.floating-actions-left,
.floating-actions-right {
  position: fixed;
  bottom: 30px;
  z-index: 9999;
  pointer-events: none;
}

.floating-actions-left {
  left: 20px;
}

.floating-actions-right {
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.floating-actions-right.has-scroll-top {
  gap: 16px;
}

.floating-actions-left > *,
.floating-actions-right > * {
  pointer-events: auto;
  flex-shrink: 0;
}

.whatsapp-left,
.whatsapp-right,
.back-to-top {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.whatsapp-float {
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsapp-pulse 2s ease-in-out infinite;
  text-decoration: none;
  border: none;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 16px 45px rgba(37, 211, 102, 0.55);
}

.whatsapp-float i {
  line-height: 1;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 0 0 14px rgba(37, 211, 102, 0.18);
  }
}

.back-to-top {
  background: var(--gold-gradient);
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.85);
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, max-height 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  max-height: 64px;
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1);
  box-shadow: var(--shadow-glow);
}

@media (max-width: 991px) {
  .floating-actions-left {
    left: 15px;
  }

  .floating-actions-right {
    right: 15px;
  }
}

@media (max-width: 767px) {
  .floating-actions-left {
    left: 12px;
  }

  .floating-actions-right {
    right: 12px;
  }

  .whatsapp-left,
  .whatsapp-right,
  .back-to-top {
    width: 56px;
    height: 56px;
  }

  .whatsapp-float {
    font-size: 1.75rem;
  }

  .back-to-top {
    font-size: 1.1rem;
  }

  .back-to-top.visible {
    max-height: 56px;
  }
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  section { padding: 60px 0; }
  .timeline { padding-left: 30px; }
}

@media (max-width: 767px) {
  section { padding: 50px 0; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn-gold,
  .hero-cta .btn-outline-gold { width: 100%; max-width: 280px; justify-content: center; }
  .footer-newsletter { flex-direction: column; }
  .footer-newsletter input { border-radius: 50px; }
  .footer-newsletter button { border-radius: 50px; }
  .profile-card-actions { flex-direction: column; }
}

@media (max-width: 575px) {
  .header-actions .btn-gold { display: none; }
}

/* ---- Utility ---- */
.bg-section-alt {
  background: var(--bg-secondary);
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 1rem auto;
  border-radius: 2px;
}

.hidden-profile {
  display: none !important;
}

.load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border-color);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Premium Information Section ---- */
.premium-info-section {
  background: #0b0b0b;
}

.premium-info-container {
  max-width: 1200px;
}

.premium-content {
  max-width: 860px;
  margin: 0 auto;
}

.premium-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.premium-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--gold-primary);
  margin: 2rem 0 1rem;
}

.premium-content h3:first-of-type {
  margin-top: 1.5rem;
}

.premium-content strong {
  color: #ffffff;
  font-weight: 600;
}

.premium-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.premium-content ul li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
}

.premium-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-gradient);
}

[data-theme="light"] .premium-content p,
[data-theme="light"] .premium-content ul li {
  color: var(--text-secondary);
}

[data-theme="light"] .premium-content strong {
  color: var(--text-primary);
}

.pi-block {
  padding: 80px 0;
}

.pi-block-alt {
  background: rgba(255, 255, 255, 0.02);
}

.pi-block .section-header {
  margin-bottom: 3rem;
}

.pi-block .section-title::after {
  display: none;
}

/* How to Book - Step Cards */
.pi-step-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 20px;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pi-step-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 14px 45px rgba(201, 169, 98, 0.18);
}

.pi-step-number {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  opacity: 0.7;
  letter-spacing: 1px;
}

.pi-step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0b0b0b;
  font-size: 1.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pi-step-card:hover .pi-step-icon {
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(201, 169, 98, 0.45);
}

.pi-step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.pi-step-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.65;
}

/* Safety & Privacy Card */
.pi-safety-card {
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pi-safety-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 12px 48px rgba(201, 169, 98, 0.12);
}

.pi-safety-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 1.6rem;
}

.pi-safety-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  max-width: 780px;
  margin: 0 auto 2rem;
}

.pi-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pi-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(201, 169, 98, 0.06);
  transition: all 0.3s ease;
}

.pi-badge i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.pi-badge:hover {
  border-color: var(--gold-primary);
  background: rgba(201, 169, 98, 0.12);
}

/* Why Choose - Feature Cards */
.pi-feature-card {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 20px;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pi-feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 14px 45px rgba(201, 169, 98, 0.18);
}

.pi-feature-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.pi-feature-card:hover .pi-feature-icon {
  background: var(--gold-gradient);
  color: #0b0b0b;
  border-color: transparent;
  box-shadow: 0 0 22px rgba(201, 169, 98, 0.4);
}

.pi-feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
  color: #ffffff;
}

.pi-feature-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Ready to Connect CTA */
.pi-connect-cta {
  text-align: center;
  padding: 3.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.pi-connect-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.pi-connect-cta > p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

.pi-connect-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Disclaimer */
.pi-disclaimer-block {
  padding: 0 0 80px;
}

.pi-disclaimer {
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-left: 4px solid var(--gold-primary);
  border-radius: 20px;
}

.pi-disclaimer h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.pi-disclaimer p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.75;
}

[data-theme="light"] .premium-info-section {
  background: var(--bg-primary);
}

[data-theme="light"] .pi-block-alt {
  background: var(--bg-secondary);
}

[data-theme="light"] .pi-step-card,
[data-theme="light"] .pi-safety-card,
[data-theme="light"] .pi-feature-card,
[data-theme="light"] .pi-connect-cta,
[data-theme="light"] .pi-disclaimer {
  background: var(--bg-card);
}

[data-theme="light"] .pi-step-card h3,
[data-theme="light"] .pi-feature-card h3,
[data-theme="light"] .pi-connect-cta h2 {
  color: var(--text-primary);
}

@media (max-width: 767px) {
  .pi-block {
    padding: 60px 0;
  }

  .pi-disclaimer-block {
    padding-bottom: 60px;
  }

  .pi-connect-buttons {
    flex-direction: column;
    align-items: center;
  }

  .pi-connect-buttons .btn-gold,
  .pi-connect-buttons .btn-outline-gold {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .pi-safety-card {
    padding: 2rem 1.25rem;
  }

  .pi-disclaimer {
    padding: 1.5rem;
  }
}
