/* Google Fonts Integration */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Color Variables & Variables */
:root {
  --primary-gold: #D4AF37;
  --primary-gold-rgb: 212, 175, 55;
  --rose-gold: #B76E79;
  --rose-gold-rgb: 183, 110, 121;
  --dark-bg: #121212;
  --dark-card: #1C1C1C;
  --light-cream: #FDFBF7;
  --light-cream-rgb: 253, 251, 247;
  --muted-text: #A6A6A6;
  --border-color: rgba(212, 175, 55, 0.2);
  --glass-bg: rgba(18, 18, 18, 0.85);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --gold-glow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-gold) var(--dark-bg);
}

body {
  font-family: var(--font-sans);
  background-color: var(--dark-bg);
  color: var(--light-cream);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar Customization */
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary-gold);
  border-radius: 4px;
}

/* Selection Style */
::selection {
  background-color: var(--primary-gold);
  color: var(--dark-bg);
}

/* Typography Utility Styles */
h1, h2, h3, h4, .brand-name {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 1px;
}

.gold-text {
  color: var(--primary-gold);
  background: linear-gradient(135deg, var(--primary-gold) 0%, #FFF5D6 50%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rose-gold-text {
  color: var(--rose-gold);
  background: linear-gradient(135deg, var(--rose-gold) 0%, #FFEBEF 50%, var(--rose-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 8%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 8%;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.logo-icon {
  font-size: 1.8rem;
  animation: pulse-gold 3s infinite ease-in-out;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--light-cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-gold);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-nav-btn {
  background: transparent;
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.cta-nav-btn:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
  box-shadow: var(--gold-glow);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--light-cream);
  transition: var(--transition);
}

/* Animated Welcoming Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(30, 30, 30, 0.4) 0%, var(--dark-bg) 100%);
}

.hero-background-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  filter: brightness(0.1) saturate(0.8) blur(15px);
  transform: scale(1.15);
  transition: filter 2.5s cubic-bezier(0.16, 1, 0.3, 1), transform 3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.hero-background-slideshow.reveal-active {
  filter: brightness(0.45) saturate(1.1) blur(0);
  transform: scale(1.02);
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  animation: zoom-out-slow 20s infinite alternate ease-in-out;
}

/* Subtle overlay grid */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(18,18,18,0.2) 0%, rgba(18,18,18,0.8) 80%, var(--dark-bg) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 10;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1), opacity 2s ease-out;
}

.hero-content.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.hero-subtitle::before, .hero-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--primary-gold);
}

.hero-subtitle::before {
  left: -40px;
}

.hero-subtitle::after {
  right: -40px;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700;
  color: var(--light-cream);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-tagline {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--muted-text);
  font-family: var(--font-sans);
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 15px 35px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #b8932b 100%);
  color: var(--dark-bg);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--light-cream);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0.7;
  animation: bounce-slow 2s infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--light-cream);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  gap: 10px;
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 35px;
  border: 2px solid var(--light-cream);
  border-radius: 10px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--light-cream);
  border-radius: 50%;
  animation: scroll-dot 1.5s infinite;
}

/* Sections General */
section {
  padding: 100px 8%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-subtitle {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--primary-gold);
}

/* Reveal on Scroll styling */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* About / Instagram Profile Summary Section */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-visual {
  position: relative;
  height: 500px;
}

.about-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.about-slideshow {
  width: 100%;
  height: 100%;
  position: relative;
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  animation: zoom-out-slow 20s infinite alternate ease-in-out;
}

.about-slide.active {
  opacity: 1;
}

.about-visual:hover .about-slide {
  animation-play-state: paused;
}

.about-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 85%;
  height: 85%;
  border: 1.5px solid var(--primary-gold);
  border-radius: 8px;
  z-index: -1;
  transition: var(--transition);
}

.about-visual:hover::after {
  transform: translate(-10px, -10px);
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gold);
}

.profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  overflow: hidden;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-details h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.profile-handle {
  color: var(--primary-gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.profile-handle:hover {
  text-decoration: underline;
}

.instagram-meta {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}

.meta-count {
  font-weight: 600;
  color: var(--light-cream);
  font-size: 1rem;
}

.meta-label {
  color: var(--muted-text);
}

.about-bio {
  color: var(--muted-text);
  font-size: 1rem;
  margin-bottom: 25px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 15px;
}

/* Services Grid Section */
.services-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #151515 50%, var(--dark-bg) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 25px;
  display: inline-block;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: var(--light-cream);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--light-cream);
}

.service-card p {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin-bottom: 25px;
  font-weight: 300;
}

.service-price {
  font-family: var(--font-sans);
  color: var(--primary-gold);
  font-size: 1.1rem;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
}

/* Academy Section */
.academy-section {
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, var(--dark-bg) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.academy-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .academy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.academy-video-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 450px;
  border: 1px solid var(--border-color);
  background: var(--dark-card);
}

.academy-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.academy-video-card.playing .video-play-btn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}

.academy-courses {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.course-item {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.course-item:hover {
  border-color: var(--primary-gold);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.course-thumb {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-info {
  flex: 1;
}

.course-info h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--light-cream);
}

.course-info p {
  color: var(--muted-text);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.4;
}

.course-status {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid #4CAF50;
  color: #4CAF50;
  padding: 2px 8px;
  font-size: 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-top: 8px;
}

/* Portfolio / Pinned Videos Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--dark-card);
}

.portfolio-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-item video.portfolio-media {
  cursor: pointer;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 0.4) 70%, transparent 100%);
  z-index: 5;
  transition: var(--transition);
  transform: translateY(10px);
}

.portfolio-tag {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 4px 10px;
  font-size: 0.7rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 500;
}

.portfolio-item h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--light-cream);
}

.portfolio-item p {
  color: var(--muted-text);
  font-size: 0.85rem;
  font-weight: 300;
}

/* Play button overlay for video */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-bg);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 6;
  box-shadow: var(--shadow);
  transition: var(--transition);
  pointer-events: none; /* Let click pass through to video */
}

.portfolio-item:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary-gold);
  box-shadow: var(--gold-glow);
}

.portfolio-item.playing .video-play-btn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}

.portfolio-item.playing .portfolio-overlay {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* Custom interactive Chatbot Widget */
.chatbot-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 360px;
  height: 500px;
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  z-index: 1005;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(20px) scale(0.9);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.chatbot-widget.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.chatbot-widget.active ~ .launcher-container .chatbot-toggle-btn {
  display: none;
}

.chatbot-header {
  background: linear-gradient(135deg, #1C1C1C 0%, #2A2A2A 100%);
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--primary-gold);
  background: var(--dark-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: var(--primary-gold);
}

.chatbot-info h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-cream);
}

.chatbot-status {
  font-size: 0.75rem;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chatbot-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4CAF50;
}

.chatbot-close {
  background: transparent;
  border: none;
  color: var(--muted-text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.chatbot-close:hover {
  color: var(--primary-gold);
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  scrollbar-width: thin;
}

.message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
  animation: slide-in-bubble 0.3s forwards ease-out;
}

@keyframes slide-in-bubble {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message.bot {
  background: rgba(255, 255, 255, 0.05);
  color: var(--light-cream);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.message.user {
  background: var(--primary-gold);
  color: var(--dark-bg);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  font-weight: 500;
}

.chatbot-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 20px 15px;
}

.option-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--primary-gold);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.option-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--primary-gold);
  transform: translateY(-1px);
}

.chatbot-input-container {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 15px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(20, 20, 20, 0.5);
}

.chatbot-input {
  flex: 1;
  background: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 10px 15px;
  color: var(--light-cream);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  transition: var(--transition);
}

.chatbot-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

.chatbot-send-btn {
  background: var(--primary-gold);
  color: var(--dark-bg);
  border: none;
  width: auto;
  padding: 0 15px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.chatbot-send-btn:hover {
  background: #FFF5D6;
  box-shadow: var(--gold-glow);
}

/* Floating Launchers */
.launcher-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.5rem;
  border: none;
  position: relative;
}

.float-btn:hover {
  transform: translateY(-5px);
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  text-decoration: none;
}

.whatsapp-btn:hover {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

.chatbot-toggle-btn {
  background-color: var(--dark-card);
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
}

.chatbot-toggle-btn:hover {
  background-color: var(--primary-gold);
  color: var(--dark-bg);
  box-shadow: var(--gold-glow);
}

.float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  color: var(--light-cream);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(-5px);
}

/* Booking CTA Section */
.booking-section {
  text-align: center;
  background: radial-gradient(circle at center, rgba(183, 110, 121, 0.05) 0%, var(--dark-bg) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.booking-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 30px;
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-box h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.booking-box p {
  color: var(--muted-text);
  margin-bottom: 35px;
  font-weight: 300;
}

/* Footer Section */
footer {
  background-color: #0A0A0A;
  padding: 60px 8% 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-gold);
}

.footer-brand p {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light-cream);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-3px);
}

.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light-cream);
  margin-bottom: 20px;
  position: relative;
}

.footer-nav h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--primary-gold);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: var(--muted-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact p strong {
  color: var(--light-cream);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* Animations Definitions */
@keyframes zoom-out-slow {
  0% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-gold {
  0%, 100% {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
  }
  50% {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    top: 5px;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 22px;
  }
}

@keyframes bounce-slow {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

/* Welcome Splash Overlay & Animations */
.welcome-intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #050505;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.2s;
  overflow: hidden;
}

.welcome-page-container {
  width: 90%;
  max-width: 1000px;
  height: 85%;
  max-height: 700px;
  background: #0d0d0d;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 40px rgba(212, 175, 55, 0.1);
  transform: scale(0.9);
  opacity: 0;
  animation: welcome-page-enter 1.2s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-panel {
  display: none;
  width: 100%;
  height: 100%;
  grid-template-columns: 1.2fr 1fr;
}

.welcome-panel.active {
  display: grid;
}

@media (max-width: 768px) {
  .welcome-page-container {
    grid-template-columns: 1fr;
    height: 90%;
    max-height: none;
    width: 95%;
    overflow: hidden;
  }
  .welcome-panel, .welcome-panel.active {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .welcome-page-image {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
  }
  .welcome-page-content {
    position: relative !important;
    z-index: 1 !important;
    background: rgba(10, 10, 10, 0.82) !important; /* Dark overlay */
    padding: 25px 20px;
    height: 100%;
    overflow-y: auto;
  }
  .welcome-logo i {
    font-size: 1.5rem;
  }
  .welcome-logo h2 {
    font-size: 1.1rem;
  }
  .welcome-main-title {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .welcome-feature-item {
    gap: 10px;
  }
  .welcome-features {
    gap: 8px;
    margin-bottom: 20px;
  }
  .welcome-feature-item:nth-child(n+4) {
    display: none;
  }
  .welcome-feature-item .feature-icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
  .welcome-feature-item .feature-text {
    font-size: 0.8rem;
  }
  .welcome-footer-info {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .welcome-phone-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .welcome-page-content {
    padding: 15px 12px;
  }
  .welcome-logo {
    gap: 8px;
    margin-bottom: 5px;
  }
  .welcome-logo i {
    font-size: 1.2rem;
  }
  .welcome-logo h2 {
    font-size: 0.95rem;
    letter-spacing: 1px;
  }
  .welcome-logo h2 span {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
  .welcome-academy-tagline {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
  .welcome-main-title {
    font-size: 1.15rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .welcome-features {
    gap: 6px;
    margin-bottom: 15px;
  }
  .welcome-feature-item {
    gap: 8px;
  }
  .welcome-feature-item .feature-icon {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }
  .welcome-feature-item .feature-text {
    font-size: 0.75rem;
  }
  .welcome-footer-info {
    padding-top: 10px;
    gap: 10px;
  }
  .welcome-location i {
    font-size: 1rem;
  }
  .welcome-location span {
    font-size: 0.7rem;
  }
  .welcome-phone-btn {
    padding: 8px 15px;
    font-size: 0.8rem;
  }
}

.welcome-page-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #0d0d0d 0%, #151515 100%);
}

.welcome-academy-header {
  margin-bottom: 20px;
}

.welcome-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.welcome-logo i {
  font-size: 2rem;
  color: var(--primary-gold);
  animation: pulse-gold 2s infinite ease-in-out;
}

.welcome-logo h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--light-cream);
  line-height: 1.1;
}

.welcome-logo h2 span {
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--muted-text);
  display: block;
  letter-spacing: 4px;
  margin-top: 4px;
}

.welcome-academy-tagline {
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--primary-gold);
  text-transform: uppercase;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 5px;
  display: inline-block;
}

.welcome-main-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.35;
  margin-bottom: 25px;
  color: var(--light-cream);
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
}

.welcome-panel.active .welcome-main-title {
  animation: welcome-fade-in-up 0.8s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes welcome-fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.welcome-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(-20px);
  opacity: 0;
}

.welcome-panel.active .welcome-feature-item {
  animation: welcome-slide-in 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-panel.active .welcome-feature-item:nth-child(1) { animation-delay: 0.3s; }
.welcome-panel.active .welcome-feature-item:nth-child(2) { animation-delay: 0.4s; }
.welcome-panel.active .welcome-feature-item:nth-child(3) { animation-delay: 0.5s; }
.welcome-panel.active .welcome-feature-item:nth-child(4) { animation-delay: 0.6s; }
.welcome-panel.active .welcome-feature-item:nth-child(5) { animation-delay: 0.7s; }

@keyframes welcome-slide-in {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.welcome-feature-item .feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transform: scale(0);
}

.welcome-panel.active .welcome-feature-item .feature-icon {
  animation: welcome-scale-up 0.5s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-panel.active .welcome-feature-item:nth-child(1) .feature-icon { animation-delay: 0.4s; }
.welcome-panel.active .welcome-feature-item:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.welcome-panel.active .welcome-feature-item:nth-child(3) .feature-icon { animation-delay: 0.6s; }
.welcome-panel.active .welcome-feature-item:nth-child(4) .feature-icon { animation-delay: 0.7s; }
.welcome-panel.active .welcome-feature-item:nth-child(5) .feature-icon { animation-delay: 0.8s; }

@keyframes welcome-scale-up {
  to {
    transform: scale(1);
  }
}

.welcome-feature-item .feature-text {
  font-size: 0.9rem;
  color: var(--muted-text);
  font-weight: 300;
}

.welcome-footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  gap: 20px;
}

.welcome-location {
  display: flex;
  align-items: center;
  gap: 10px;
}

.welcome-location i {
  font-size: 1.2rem;
}

.welcome-location span {
  font-size: 0.8rem;
  color: var(--muted-text);
  line-height: 1.3;
}

.welcome-location small {
  color: var(--primary-gold);
}

.welcome-phone-btn {
  background: var(--primary-gold);
  color: var(--dark-bg);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}

.welcome-phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
  background: #FFF5D6;
}

.welcome-page-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.welcome-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.welcome-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.5s ease-in-out;
  filter: brightness(0.65) contrast(1.1);
}

.welcome-slide.active {
  opacity: 1;
  z-index: 1;
  animation: welcome-zoom-slow 8s infinite alternate ease-in-out;
}

@keyframes welcome-zoom-slow {
  0% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

.welcome-image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid var(--primary-gold);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  animation: welcome-badge-enter 1s 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes welcome-badge-enter {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.welcome-image-badge span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-gold);
}

.welcome-image-badge strong {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--light-cream);
  letter-spacing: 1px;
}

@keyframes welcome-page-enter {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.welcome-intro-overlay.hidden {
  opacity: 0;
  transform: scale(1.03);
  visibility: hidden;
  pointer-events: none;
}
