/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Fredoka+One&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --primary: #6C3CE1;
  --primary-light: #8B5CF6;
  --primary-dark: #5027B0;
  --secondary: #FF6B35;
  --secondary-light: #FF8A5C;
  --secondary-dark: #E55A2B;
  --accent-pink: #FF3CAC;
  --accent-cyan: #00D4FF;
  --accent-green: #22D67E;
  --accent-yellow: #FFD93D;
  --dark: #0F0A1E;
  --dark-surface: #1A1333;
  --dark-card: #231C3D;
  --dark-border: #352D54;
  --text-primary: #FFFFFF;
  --text-secondary: #B4A9D6;
  --text-muted: #8878B0;
  --gradient-primary: linear-gradient(135deg, #6C3CE1 0%, #FF3CAC 50%, #FF6B35 100%);
  --gradient-hero: linear-gradient(135deg, #0F0A1E 0%, #1A1333 40%, #2D1B69 100%);
  --gradient-card: linear-gradient(145deg, rgba(108, 60, 225, 0.1) 0%, rgba(255, 60, 172, 0.05) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  --shadow-sm: 0 2px 8px rgba(108, 60, 225, 0.15);
  --shadow-md: 0 8px 30px rgba(108, 60, 225, 0.2);
  --shadow-lg: 0 20px 60px rgba(108, 60, 225, 0.3);
  --shadow-glow: 0 0 40px rgba(108, 60, 225, 0.4);
  --section-padding: 100px 0;
  --container-max: 1200px;
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul { list-style: none; }

/* ===== ANIMATED BACKGROUND PARTICLES ===== */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatParticle 20s infinite ease-in-out;
}

.particle:nth-child(1) {
  width: 300px; height: 300px;
  background: var(--primary);
  top: 10%; left: -5%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  width: 200px; height: 200px;
  background: var(--accent-pink);
  top: 60%; right: -3%;
  animation-delay: -5s;
}
.particle:nth-child(3) {
  width: 250px; height: 250px;
  background: var(--secondary);
  bottom: 10%; left: 30%;
  animation-delay: -10s;
}
.particle:nth-child(4) {
  width: 180px; height: 180px;
  background: var(--accent-cyan);
  top: 40%; left: 60%;
  animation-delay: -15s;
}

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.05); }
}

/* ===== BOOTSTRAP OVERRIDES (NAVBAR & GENERAL) ===== */
.navbar {
  padding: 14px 0;
  transition: var(--transition-smooth);
  background: transparent;
}
.navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .navbar-brand {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}
.navbar.scrolled {
  background: rgba(15, 10, 30, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108, 60, 225, 0.2);
  padding: 10px 0;
}
.navbar .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 12px !important;
  position: relative;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
  color: var(--text-primary) !important;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: calc(100% - 24px);
}
.navbar .nav-cta::after { display: none !important; }
.navbar-toggler {
  border-color: var(--dark-border) !important;
  background: rgba(108, 60, 225, 0.15);
  border-radius: 10px;
  padding: 8px 12px;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(108, 60, 225, 0.35) !important;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* Desktop layout (>= 992px) */
@media (min-width: 992px) {
  .navbar > .container {
    flex-wrap: nowrap;
  }
  .navbar .navbar-collapse {
    display: flex !important;
    align-items: center;
    flex-grow: 0;
  }
  .navbar .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    margin: 0;
    padding: 0;
  }
  .navbar .nav-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }
  .navbar .nav-link {
    white-space: nowrap;
  }
}

/* Mobile dropdown (< 992px) */
@media (max-width: 991.98px) {
  .navbar > .container {
    flex-wrap: wrap;
  }
  .navbar-collapse {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 12px;
    width: 100%;
  }
  .navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }
  .navbar .nav-item {
    width: 100%;
  }
  .navbar .nav-link {
    display: block;
    width: 100%;
    padding: 10px 14px !important;
    font-size: 1.05rem;
    border-radius: 8px;
  }
  .navbar .nav-link:hover, .navbar .nav-link.active {
    background: rgba(108, 60, 225, 0.12);
  }
  .navbar .nav-cta {
    display: block !important;
    width: 100%;
    text-align: center;
    margin-top: 8px;
    padding: 12px !important;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-emoji {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1;
}

.logo-text {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo-text span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-img {
  height: clamp(62px, 8vw, 95px);
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-smooth);
}

.navbar-brand:hover .logo-img, .nav-logo:hover .logo-img {
  transform: scale(1.05);
}

.footer .logo-img, .footer-brand .logo-img {
  height: clamp(68px, 9vw, 105px);
  max-width: 340px;
}

.navbar .nav-cta {
  background: var(--gradient-primary);
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth) !important;
}

.navbar .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(108, 60, 225, 0.25) 0%, rgba(255, 60, 172, 0.1) 50%, transparent 80%);
  opacity: 0.8;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 60, 225, 0.2);
  border: 1px solid rgba(108, 60, 225, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--dark-border);
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-number {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

/* ===== HERO GALLERY SLIDER ===== */
.hero-slider-wrapper {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--dark-border);
  background: var(--dark-surface);
  height: 480px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide.active {
  display: block !important;
  z-index: 5 !important;
  animation: slideFadeIn 0.35s ease-in-out forwards;
}

@keyframes slideFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.slide-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 10, 30, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  z-index: 2;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 10, 30, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid var(--primary-light);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 999;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.slider-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-50%) scale(1.15);
}

.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dots .dot.active {
  background: var(--primary-light);
  width: 20px;
  border-radius: 50px;
}

/* Thumbnail Strip */
.hero-thumb-strip {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.hero-thumb-strip::-webkit-scrollbar {
  height: 4px;
}
.hero-thumb-strip::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.hero-thumb-strip .thumb {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--dark-border);
  opacity: 0.6;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.hero-thumb-strip .thumb:hover,
.hero-thumb-strip .thumb.active {
  opacity: 1;
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 60, 225, 0.3);
}

.hero-float-card {
  position: absolute;
  background: rgba(35, 28, 61, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-float-card.card-1 {
  bottom: 30px;
  left: -30px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  top: 30px;
  right: -20px;
  animation-delay: -2s;
}

.float-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.float-card-icon.green { background: rgba(34, 214, 126, 0.2); }
.float-card-icon.yellow { background: rgba(255, 217, 61, 0.2); }

.float-card-text .fc-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.float-card-text .fc-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== BOOTSTRAP BUTTON OVERRIDES ===== */
.btn-primary {
  background: var(--gradient-primary) !important;
  border: none !important;
  color: white !important;
  box-shadow: var(--shadow-md);
  border-radius: 50px !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 14px 32px;
  transition: var(--transition-smooth) !important;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-secondary {
  background: transparent !important;
  color: var(--text-primary) !important;
  border: 2px solid var(--dark-border) !important;
  border-radius: 50px !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 14px 32px;
}
.btn-secondary:hover {
  border-color: var(--primary-light) !important;
  background: rgba(108, 60, 225, 0.1) !important;
  transform: translateY(-3px);
}
.btn-icon { font-size: 1.2rem; }

/* ===== CARD DETAILS BUTTON ===== */
.btn-details {
  width: 100%;
  margin-top: 14px;
  padding: 10px 16px;
  background: rgba(108, 60, 225, 0.15);
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  color: var(--primary-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-details:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ===== INLINE CARD ACCORDION DROPDOWN ===== */
.card-details-dropdown {
  display: none;
  margin-top: 14px;
  background: rgba(108, 60, 225, 0.12);
  border-radius: 12px;
  border: 1px solid var(--dark-border);
  padding: 16px;
  text-align: left;
  animation: fadeIn 0.3s ease;
}

.card-details-dropdown.active {
  display: block !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.card-details-dropdown p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.dropdown-features {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dropdown-features li {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-callout {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-yellow);
  background: rgba(255, 217, 61, 0.1);
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
  text-align: center;
  border: 1px dashed rgba(255, 217, 61, 0.3);
}

/* ===== BOOTSTRAP MODAL OVERRIDES ===== */
.modal-content {
  background: var(--dark-surface) !important;
  border: 1px solid var(--dark-border) !important;
  border-radius: var(--border-radius-xl) !important;
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
}
.modal-header {
  border-bottom: none !important;
  padding-bottom: 0;
}
.modal-body { padding: 0 24px 24px; }
.btn-close { filter: invert(1); }

/* Override Bootstrap card if used */
.card {
  background: var(--gradient-glass) !important;
  border: 1px solid var(--dark-border) !important;
  color: var(--text-primary);
}

.modal-body-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.modal-body h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.modal-body p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.modal-features {
  background: rgba(108, 60, 225, 0.08);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  padding: 20px 24px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-features li {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-callout {
  font-weight: 600;
  color: var(--accent-yellow);
  font-size: 1.05rem !important;
  text-align: center;
  background: rgba(255, 217, 61, 0.1);
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 217, 61, 0.3);
}

.modal-book-btn {
  width: 100%;
  margin-top: 20px;
  justify-content: center;
}

/* ===== PRIVACY POLICY STYLES ===== */
.privacy-policy-section {
  position: relative;
  padding: var(--section-padding);
  z-index: 1;
}

.privacy-policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.privacy-policy-intro {
  background: var(--gradient-glass);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.privacy-policy-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
}

.privacy-last-updated {
  color: var(--secondary) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  margin-bottom: 16px !important;
}

.privacy-policy-intro p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.privacy-policy-intro p:last-child {
  margin-bottom: 0;
}

.privacy-policy-block {
  display: flex;
  gap: 20px;
  background: var(--gradient-glass);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.privacy-policy-block:hover {
  border-color: rgba(108, 60, 225, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.privacy-block-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: rgba(108, 60, 225, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.privacy-policy-block:hover .privacy-block-icon {
  background: var(--gradient-primary);
  transform: scale(1.08) rotate(3deg);
}

.privacy-block-body {
  flex: 1;
}

.privacy-block-body h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--primary-light);
}

.privacy-block-body p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.privacy-block-body p:last-child {
  margin-bottom: 0;
}

.privacy-block-body ul {
  margin-left: 18px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.privacy-block-body ul li {
  list-style-type: disc;
  margin-bottom: 6px;
  font-size: 0.93rem;
  line-height: 1.6;
}

.privacy-policy-footer-note {
  margin-top: 24px;
  padding: 24px 28px;
  background: linear-gradient(145deg, rgba(108, 60, 225, 0.12) 0%, rgba(255, 60, 172, 0.06) 100%);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--dark-border);
  text-align: center;
}

.privacy-policy-footer-note strong {
  display: block;
  color: var(--text-primary);
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.privacy-policy-footer-note p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== PRIVACY MODAL STYLES ===== */
.privacy-modal-content {
  max-width: 720px;
  max-height: 85vh;
  overflow-y: auto;
  text-align: left;
  padding: 36px;
}

.privacy-body h2 {
  font-size: 1.8rem;
  margin-bottom: 4px;
  color: var(--text-primary);
  font-family: 'Fredoka One', cursive;
}

.privacy-subtitle {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.privacy-body h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--primary-light);
}

.privacy-body p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.privacy-body ul {
  margin-left: 20px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.privacy-body ul li {
  margin-bottom: 6px;
  list-style-type: disc;
}

.privacy-footer-note {
  margin-top: 28px;
  padding: 18px;
  background: rgba(108, 60, 225, 0.12);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--dark-border);
}

.privacy-footer-note strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 60, 225, 0.15);
  border: 1px solid rgba(108, 60, 225, 0.25);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.8;
}

/* ===== CASTLES / SERVICES SECTION ===== */
.castles {
  position: relative;
  padding: var(--section-padding);
  z-index: 1;
}

.castle-card {
  background: var(--gradient-glass);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.castle-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.castle-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  background: var(--dark-surface);
}

.castle-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: var(--transition-smooth);
}

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

.castle-card-image .castle-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gradient-primary);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.castle-card-body {
  padding: 24px;
}

.castle-card-body h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.castle-card-body p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.castle-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--dark-border);
}

.castle-price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.castle-price span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  -webkit-text-fill-color: var(--text-muted);
}

.castle-info {
  display: flex;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.castle-info span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  position: relative;
  padding: var(--section-padding);
  z-index: 1;
}

.why-card {
  background: var(--gradient-glass);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(108, 60, 225, 0.15);
  transition: var(--transition-smooth);
}

.why-card:hover .why-card-icon {
  background: var(--gradient-primary);
  transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===== PRICING SECTION ===== */
.pricing {
  position: relative;
  padding: var(--section-padding);
  z-index: 1;
}

.price-card {
  background: var(--gradient-glass);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-xl);
  padding: 40px 32px;
  transition: var(--transition-smooth);
  position: relative;
}

.price-card.featured {
  background: linear-gradient(145deg, rgba(108, 60, 225, 0.2) 0%, rgba(255, 60, 172, 0.1) 100%);
  border-color: var(--primary-light);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.price-card-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--dark-border);
}

.price-card-header .price-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.price-card-header h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.price-card-header .price-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.price-amount {
  text-align: center;
  margin-bottom: 28px;
}

.price-amount .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  vertical-align: top;
  line-height: 1;
}

.price-amount .amount {
  font-family: 'Fredoka One', cursive;
  font-size: 3.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-amount .period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-features {
  margin-bottom: 32px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.price-features li .check {
  color: var(--accent-green);
  font-size: 1.1rem;
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
  padding: var(--section-padding);
  z-index: 1;
}

.testimonial-card {
  background: var(--gradient-glass);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 60, 225, 0.4);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--accent-yellow);
  font-size: 1.1rem;
}

.testimonial-card blockquote {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--dark-border);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.testimonial-author-info .ta-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-author-info .ta-event {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  position: relative;
  padding: var(--section-padding);
  z-index: 1;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--dark-surface);
  border: 2px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition-smooth);
}

.step-card:hover .step-number {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-glow);
}

.step-card h3 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== CONTACT / CTA SECTION ===== */
.contact {
  position: relative;
  padding: var(--section-padding);
  z-index: 1;
}

.contact-wrapper {
  background: var(--gradient-glass);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.contact-wrapper.info-only {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.contact-wrapper.info-only .contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
  text-align: left;
}

@media (max-width: 600px) {
  .contact-wrapper.info-only .contact-details {
    grid-template-columns: 1fr;
  }
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108, 60, 225, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 60, 172, 0.15) 0%, rgba(108, 60, 225, 0.2) 100%);
  border: 1px dashed rgba(255, 60, 172, 0.5);
  border-radius: 50px;
  padding: 14px 28px;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(255, 60, 172, 0.15);
  transition: var(--transition-smooth);
}

.promo-discount-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 60, 172, 0.25);
  border-color: var(--accent-pink);
}

.promo-discount-badge .promo-code {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 6px;
  font-family: 'Fredoka One', cursive;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 4px;
}

@media (max-width: 600px) {
  .promo-discount-badge {
    font-size: 0.9rem;
    padding: 12px 18px;
    border-radius: 16px;
    text-align: center;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(108, 60, 225, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text .ci-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-item-text .ci-value {
  font-weight: 600;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  background: rgba(108, 60, 225, 0.08);
  box-shadow: 0 0 0 3px rgba(108, 60, 225, 0.15);
}

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

/* ===== GALLERY BANNER ===== */
.gallery-banner {
  position: relative;
  padding: 80px 0;
  z-index: 1;
  overflow: hidden;
}

.gallery-scroll {
  display: flex;
  gap: 20px;
  animation: scrollGallery 30s linear infinite;
  width: max-content;
}

.gallery-scroll img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--border-radius);
  border: 2px solid var(--dark-border);
  transition: var(--transition-smooth);
}

.gallery-scroll img:hover {
  border-color: var(--primary-light);
  transform: scale(1.03);
}

@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== BOOTSTRAP FOOTER OVERRIDES ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--dark-border);
  padding: 64px 0 32px;
}
.footer h4 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1rem;
}
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-fast);
}
.footer ul li a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--dark-border);
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(108, 60, 225, 0.15);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(108, 60, 225, 0.4);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

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

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

/* ===== RESPONSIVE & AUTOMATIC PHONE SCALING ===== */
@media (max-width: 1024px) {
  .hero .container {
    text-align: center;
  }
  
  .hero p { margin: 0 auto 28px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { max-width: 600px; margin: 0 auto; width: 100%; }
  
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  
  .hero h1 { font-size: clamp(2.2rem, 7vw, 3.2rem); }
  .section-header h2 { font-size: clamp(1.8rem, 5.5vw, 2.4rem); }
  
  .hero-slider-wrapper {
    height: clamp(250px, 58vw, 420px);
    border-radius: var(--border-radius-lg);
  }

  .hero-thumb-strip {
    gap: 8px;
  }
  .hero-thumb-strip .thumb {
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(108, 60, 225, 0.15);
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    color: var(--text-secondary);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-fast);
  }
  .hero-thumb-strip .thumb.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
  }
  
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .hero-stat { text-align: center; }
  
  .contact-wrapper { padding: clamp(20px, 5vw, 32px) clamp(16px, 4vw, 24px); }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  
  .privacy-policy-block { flex-direction: column; gap: 14px; padding: 22px 20px; }
  .privacy-block-icon { width: 44px; height: 44px; min-width: 44px; font-size: 1.3rem; }
  .privacy-policy-intro { padding: 24px 20px; }
  
  .hero-float-card { display: none; }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 60px;
  }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .section-header h2 { font-size: clamp(1.6rem, 6.5vw, 2rem); }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-slider-wrapper { height: 260px; }
  .contact-details { gap: 12px; }
  .contact-item { padding: 12px; }
}

/* ===== COOKIE / SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--shadow-lg);
}

/* ===== AREAS WE COVER ===== */
.areas {
  position: relative;
  padding: var(--section-padding);
  z-index: 1;
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.area-tag {
  background: rgba(108, 60, 225, 0.1);
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  cursor: default;
}

.area-tag:hover {
  border-color: var(--primary-light);
  color: var(--text-primary);
  background: rgba(108, 60, 225, 0.2);
  transform: translateY(-2px);
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-secondary);
}
