/* ============================================================
   SIRKENNYBLESS.COM — Global Design System
   Dark Luxury Theme | Gold Accent | Premium Web Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

/* ===================== CSS VARIABLES ====================== */
:root {
  --bg-primary:     #08080e;
  --bg-secondary:   #0f0f1a;
  --bg-card:        #12121f;
  --bg-card-hover:  #181828;
  --gold:           #c9a84c;
  --gold-light:     #e8c96a;
  --gold-dark:      #9a7a2e;
  --gold-gradient:  linear-gradient(135deg, #c9a84c 0%, #e8c96a 50%, #c9a84c 100%);
  --white:          #ffffff;
  --grey-100:       #e8e8f0;
  --grey-300:       #a0a0b8;
  --grey-500:       #5a5a78;
  --grey-700:       #2a2a3e;
  --text-primary:   #f0f0f8;
  --text-secondary: #a0a0b8;
  --border:         rgba(201, 168, 76, 0.2);
  --border-strong:  rgba(201, 168, 76, 0.5);
  --glow-gold:      0 0 30px rgba(201, 168, 76, 0.3);
  --glow-gold-sm:   0 0 15px rgba(201, 168, 76, 0.2);
  --shadow-card:    0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-hover:   0 20px 60px rgba(0, 0, 0, 0.7);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      40px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height:     100px;
}

/* ===================== RESET & BASE ====================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

/* ===================== SCROLLBAR ====================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===================== UTILITIES ====================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold-gradient);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

/* ===================== BUTTONS ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary, .btn-outline {
  background: var(--gold);
  color: #0a0a0f;
  box-shadow: none;
  border: none;
}
.btn-primary:hover, .btn-outline:hover {
  background: var(--gold-light);
  color: #0a0a0f;
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-ghost {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 44px; font-size: 17px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ===================== CARDS ====================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* ===================== BADGES ====================== */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}
.badge-gold {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid var(--border);
}
.badge-popular {
  background: var(--gold-gradient);
  color: #0a0a0f;
}

/* ===================== FORMS ====================== */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--grey-700);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-control::placeholder { color: var(--grey-500); }

select.form-control option { background: var(--bg-card); }

textarea.form-control { resize: vertical; min-height: 140px; }

/* ===================== NAVBAR ====================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8, 8, 14, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 96px;
  width: 96px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  box-shadow: var(--glow-gold);
  transition: var(--transition);
}

.nav-logo-img:hover {
  transform: rotate(360deg);
  border-color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================== MOBILE NAV ====================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: rgba(8, 8, 14, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 20px; padding: 14px 40px; }

/* ===================== FOOTER ====================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
}
.social-icon:hover {
  background: var(--gold);
  color: #0a0a0f;
  transform: translateY(-3px);
  box-shadow: var(--glow-gold-sm);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-secondary);
  font-size: 13px;
}

/* ===================== HERO SLIDESHOW ====================== */
.hero-slideshow {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  animation: kenburns 8s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 14, 0.85) 0%,
    rgba(8, 8, 14, 0.4) 50%,
    rgba(8, 8, 14, 0.7) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0 0 8%;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--border-strong);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  max-width: 700px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}
.hero-title .gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--grey-100);
  max-width: 520px;
  margin: 20px 0 36px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

/* Slide controls */
.slide-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--border-strong);
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.slide-arrow:hover {
  background: var(--gold);
  color: #0a0a0f;
}
.slide-prev { left: 24px; }
.slide-next { right: 24px; }

/* ===================== STATS BAR ====================== */
.stats-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ===================== PLANS / PRICING ====================== */
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.plan-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}
.plan-card:hover::after { transform: scaleX(1); }
.plan-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.plan-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #12121f 0%, #1a1a2e 100%);
}
.plan-card.featured::after { transform: scaleX(1); }
.plan-card.vip {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1220 100%);
  border-color: var(--gold);
}

.plan-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.plan-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.plan-pricing { margin-bottom: 28px; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.price-main {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
}
.price-period {
  font-size: 14px;
  color: var(--text-secondary);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.plan-feature .check {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===================== REVIEWS ====================== */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
}

.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }

.review-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0a0a0f;
}
.reviewer-name {
  font-weight: 600;
  font-size: 15px;
}
.reviewer-location {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===================== GALLERY ====================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,14,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===================== LIGHTBOX ====================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(201,168,76,0.2);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: #0a0a0f; }

/* ===================== COUNTRY CARDS ====================== */
.country-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.country-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(201,168,76,0.15);
}

.country-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.country-names {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ===================== BLOG ====================== */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.blog-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-thumb { transform: scale(1.05); }
.blog-thumb-wrap { overflow: hidden; }

.blog-content { padding: 28px; }
.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.blog-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-date {
  font-size: 12px;
  color: var(--text-secondary);
}
.blog-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===================== VIDEO PLAYER ====================== */
.video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--glow-gold);
  background: #000;
}
.video-container video {
  width: 100%;
  display: block;
}

/* ===================== FILE UPLOAD ====================== */
.file-upload-area {
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.file-upload-area:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.file-upload-area input[type="file"] { display: none; }
.file-upload-icon { font-size: 36px; margin-bottom: 12px; }
.file-upload-text { color: var(--text-secondary); font-size: 14px; }
.file-upload-text strong { color: var(--gold); }

/* ===================== PAYMENT METHODS ====================== */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.payment-method {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.payment-method.selected,
.payment-method:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.15);
}
.payment-method input { display: none; }

/* ===================== ALERTS / NOTIFICATIONS ====================== */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success {
  background: rgba(72, 199, 116, 0.1);
  border: 1px solid rgba(72, 199, 116, 0.3);
  color: #48c774;
}
.alert-warning {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  color: var(--gold);
}

/* ===================== ANIMATIONS ====================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

.animate-fadeup {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== PARTICLE BACKGROUND ====================== */
.particles-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { opacity: 0; transform: translateY(100px); }
  50% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-200px); }
}

/* ===================== DIVIDERS ====================== */
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin: 16px 0;
}
.gold-line.center { margin: 16px auto; }

/* ===================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-content { padding: 0 24px; align-items: center; text-align: center; }
  .hero-actions { justify-content: center; }

  .stats-inner { gap: 30px; }
  .stat-divider { display: none; }

  .section { padding: 70px 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }
}


/* ============================================================
   THEME TOGGLE & LIGHT MODE
   ============================================================ */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  padding: 0;
}

.theme-toggle:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: var(--glow-gold-sm);
}

@media (max-width: 1024px) {
  .nav-actions {
    margin-left: auto;
    margin-right: 16px;
  }
}

/* Light Theme Overrides */
html.light-theme {
  --bg-primary:     #fcfbfa;
  --bg-secondary:   #f5f3f0;
  --bg-card:        #ffffff;
  --bg-card-hover:  #faf8f5;
  --text-primary:   #1c1b18;
  --text-secondary: #605d56;
  --white:          #1c1b18;
  --grey-100:       #1c1b18;
  --grey-300:       #3c3a35;
  --border:         rgba(201, 168, 76, 0.25);
  --border-strong:  rgba(201, 168, 76, 0.6);
  --shadow-card:    0 10px 40px rgba(201, 168, 76, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-hover:   0 20px 50px rgba(201, 168, 76, 0.12), 0 4px 20px rgba(0, 0, 0, 0.06);
}

html.light-theme .navbar.scrolled {
  background: rgba(252, 251, 250, 0.95);
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.08);
}

/* Contrast Protection for Hero Overlay Content */
.hero-content h1, .hero-content .hero-title {
  color: #ffffff !important;
}
.hero-content .hero-subtitle {
  color: rgba(240, 240, 248, 0.8) !important;
}

/* ============================================================
   CUSTOM LANGUAGE TRANSLATE SELECTOR
============================================================ */
.lang-select-container {
  position: relative;
}

.lang-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  padding: 8px 0;
  display: none;
  flex-direction: column;
  min-width: 160px;
  z-index: 1000;
  animation: fadeInUp 0.3s ease;
}

.lang-dropdown.active {
  display: flex;
}

.lang-option {
  padding: 10px 16px;
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  background: transparent;
  border: none;
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-option:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
}

/* Hide Google Translate original bar and banner frames */
body {
  top: 0 !important;
}
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-banner,
.goog-te-balloon-frame {
  display: none !important;
}
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
  box-shadow: none !important;
}
#goog-gt-tt,
.goog-te-balloon-active {
  display: none !important;
}
body > .skiptranslate {
  display: none !important;
}

/* ============================================================
   AGENCY POP-UP TOAST NOTIFICATION
============================================================ */
.agency-popup {
  position: fixed;
  bottom: -300px; /* start offscreen */
  right: 30px;
  max-width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 24px;
  z-index: 10000;
  transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  opacity: 0;
}

.agency-popup.active {
  bottom: 30px;
  opacity: 1;
}

.agency-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.agency-popup-close:hover {
  color: var(--gold);
}

.agency-popup-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.agency-popup-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.agency-popup-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Responsive adjust for mobile */
@media (max-width: 480px) {
  .agency-popup {
    left: 20px;
    right: 20px;
    max-width: none;
    bottom: -350px;
  }
  .agency-popup.active {
    bottom: 20px;
  }
}

/* ============================================================
   DROPPING SOCIAL BUBBLES ANIMATION
============================================================ */
.bubble-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none; /* click through them */
  z-index: 9999; /* float above content but below popups */
  overflow: hidden;
}

.social-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.8); /* dark semi-transparent fill */
  border: 1.5px solid var(--gold); /* gold border */
  color: var(--gold);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.2);
  pointer-events: none;
  animation: fallDown linear forwards;
}

@keyframes fallDown {
  0% {
    transform: translate3d(0, -50px, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.75;
  }
  90% {
    opacity: 0.75;
  }
  100% {
    transform: translate3d(0, 105vh, 0) rotate(360deg);
    opacity: 0;
  }
}

/* ============================================================
   BACKGROUND AUDIO CONTROLLER WIDGET
   ============================================================ */
.audio-toggle-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
}

.audio-toggle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 0;
}

.audio-toggle-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: var(--glow-gold-sm);
  transform: scale(1.08);
}

.audio-toggle-btn.playing i {
  animation: pulseMusic 1.5s infinite ease-in-out;
}

@keyframes pulseMusic {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Adjust position on mobile so it doesn't crowd navigation or other overlays */
@media (max-width: 480px) {
  .audio-toggle-container {
    bottom: 20px;
    left: 20px;
  }
  .audio-toggle-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* ============================================================
   UPCOMING ACTIVITIES SECTION
   ============================================================ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.activity-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.activity-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  letter-spacing: 0.5px;
}

.activity-date {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.activity-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.activity-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.activity-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* --- Blinking Event Status Dot --- */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  background: #ff4b4b; /* Default: Blinking Red */
  box-shadow: 0 0 8px #ff4b4b;
  animation: blinkRed 1.5s infinite ease-in-out;
  transition: var(--transition);
}

.status-dot.today {
  background: #2ecc71; /* Event Day: Blinking Green */
  box-shadow: 0 0 8px #2ecc71;
  animation: blinkGreen 1.5s infinite ease-in-out;
}

@keyframes blinkRed {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 12px #ff4b4b;
  }
}

@keyframes blinkGreen {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 12px #2ecc71;
  }
}

/* ============================================================
   FLAG ICONS (CDN-BACKED)
   ============================================================ */
.lang-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  display: inline-block;
}

.inline-flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 1.5px;
  border: 1px solid var(--border);
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
