@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  --dark-bg: #0A1A0A;
  --dark-secondary: #0D2B0D;
  --dark-card: #0F2A0F;
  --gold-primary: #FFD700;
  --gold-secondary: #DAA520;
  --gold-glow: rgba(255, 215, 0, 0.3);
  --gold-light: #FFF3B0;
  --green-neon: #39FF14;
  --green-dark: #1A3A1A;
  --text-primary: #F0F0E8;
  --text-secondary: #B0B0A0;
  --text-muted: #707060;
  --glass-bg: rgba(15, 42, 15, 0.7);
  --glass-border: rgba(255, 215, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px var(--gold-glow);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-primary);
  margin-bottom: 12px;
  position: relative;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
  transform: translateY(-4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--dark-bg);
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
  color: var(--dark-bg);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-primary);
}

.btn-outline:hover {
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
  color: var(--gold-primary);
}

.btn-danger {
  background: linear-gradient(135deg, #FF4444, #CC0000);
  color: white;
}

.btn-danger:hover {
  box-shadow: 0 0 20px rgba(255, 68, 68, 0.4);
  transform: translateY(-2px);
  color: white;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.text-gold {
  color: var(--gold-primary);
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Animated background gradient */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(135deg, #0A1A0A 0%, #0D2B0D 25%, #0A1A0A 50%, #0F2A0F 75%, #0A1A0A 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-primary);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s infinite;
  box-shadow: 0 0 6px var(--gold-glow);
}

@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 26, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-decoration: none;
}

.navbar-brand img {
  height: 80px;
  width: auto;
}

.navbar-brand:hover {
  color: var(--gold-primary);
  text-shadow: 0 0 20px var(--gold-glow);
}

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

.navbar-nav a {
  padding: 8px 18px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.08);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .fallback-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A1A0A 0%, #1A3A1A 30%, #0D2B0D 60%, #0A1A0A 100%);
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 26, 10, 0.85) 0%, rgba(10, 26, 10, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 60px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-primary), #FFF8DC, var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease 0.2s both;
  line-height: 1.15;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator .arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
  transform: rotate(45deg);
  animation: fadeInDown 1s infinite;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* About Section */
.about {
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  pointer-events: none;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
  font-family: 'Sora', sans-serif;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Packages Section */
.packages {
  background: var(--dark-bg);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.package-card {
  overflow: hidden;
  cursor: pointer;
}

.package-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}

.package-card-body {
  padding: 20px;
}

.package-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.package-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.package-card-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Gallery Preview Section */
.gallery-preview {
  background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 26, 10, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-size: 0.9rem;
  color: var(--gold-primary);
  font-weight: 500;
}

.gallery-item-type {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: rgba(10, 26, 10, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  z-index: 2;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* Footer */
.footer {
  background: var(--dark-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

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

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-contact-item .icon {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: var(--text-secondary);
}

.footer-contact-item a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Chat Widget FAB */
.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chat-fab-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  border: none;
  color: var(--dark-bg);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}

.chat-fab-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.chat-fab-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #FF4444;
  color: white;
  font-size: 0.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.chat-widget-container {
  display: none;
  width: 380px;
  height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
}

.chat-widget-container.open {
  display: block;
}

.chat-widget-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: white;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Gallery Page - Split View */
.gallery-page {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gallery-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  flex: 1;
  padding: 100px 0 40px;
}

.gallery-list {
  height: calc(100vh - 140px);
  overflow-y: auto;
  padding-right: 8px;
}

.gallery-list::-webkit-scrollbar {
  width: 4px;
}

.gallery-list::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-list::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 4px;
}

.gallery-list-header {
  position: sticky;
  top: 0;
  background: var(--dark-bg);
  z-index: 2;
  padding-bottom: 16px;
}

.gallery-list-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.gallery-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.filter-btn {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.08);
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
}

.gallery-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.gallery-thumb:hover {
  border-color: var(--gold-primary);
}

.gallery-thumb.active {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.gallery-thumb img,
.gallery-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: rgba(10, 26, 10, 0.7);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 0.8rem;
}

.gallery-preview-area {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
}

.gallery-preview-area img,
.gallery-preview-area video {
  max-width: 100%;
  max-height: calc(100vh - 200px);
  object-fit: contain;
  border-radius: var(--radius);
}

.gallery-preview-info {
  padding: 20px;
  text-align: center;
  width: 100%;
  border-top: 1px solid var(--glass-border);
}

.gallery-preview-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-primary);
}

.gallery-preview-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.gallery-preview-empty {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

.gallery-preview-empty .icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

/* Packages Page */
.packages-page {
  padding-top: 80px;
  min-height: 100vh;
}

.packages-page .packages-grid {
  padding: 100px 0 60px;
}

/* Admin Page */
.admin-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-login {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
}

.admin-login-card {
  width: 100%;
  max-width: 420px;
  padding: 40px;
}

.admin-login-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.admin-login-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

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

.form-error {
  color: #FF4444;
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}

.form-error.show {
  display: block;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

/* Admin Dashboard */
.admin-dashboard {
  display: none;
  flex: 1;
}

.admin-dashboard.active {
  display: block;
}

.admin-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 26, 10, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

.admin-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header-brand {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-content {
  padding: 120px 0 60px;
}

.admin-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0;
}

.admin-tab {
  padding: 12px 24px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.admin-tab:hover {
  color: var(--gold-primary);
}

.admin-tab.active {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

.upload-zone {
  border: 2px dashed var(--glass-border);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 24px;
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.05);
}

.upload-zone-icon {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.upload-zone-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.upload-zone-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.upload-zone-field {
  width: 100%;
  margin-top: 16px;
  text-align: left;
}

.upload-zone-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}

.upload-zone-textarea {
  width: 100%;
  min-height: 70px;
  resize: vertical;
  font-family: 'Inter', sans-serif;
}

.upload-zone input[type="file"] {
  display: none;
}

.upload-progress {
  display: none;
  margin-bottom: 24px;
}

.upload-progress.show {
  display: block;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 3px;
  transition: width 0.3s ease;
  width: 0%;
}

.progress-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 8px;
  text-align: center;
}

.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.admin-media-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.admin-media-item:hover {
  border-color: rgba(255, 215, 0, 0.3);
}

.admin-media-item img,
.admin-media-item video {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.admin-media-info {
  padding: 10px 12px;
}

.admin-media-name {
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-media-date {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.admin-media-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.admin-media-actions {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: var(--transition);
}

.admin-media-item:hover .admin-media-actions {
  opacity: 1;
}

.admin-media-delete {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 68, 68, 0.9);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.admin-media-delete:hover {
  background: #FF4444;
  transform: scale(1.1);
}

.admin-media-edit {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.85);
  border: none;
  color: #0A0E17;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.admin-media-edit:hover {
  background: #FFD700;
  transform: scale(1.1);
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 440px;
  padding: 32px;
  animation: scaleIn 0.2s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.modal-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* Package Lightbox */
.package-lightbox {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.package-lightbox-content {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.package-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  line-height: 1;
}

.package-lightbox-close:hover {
  background: rgba(255, 68, 68, 0.8);
  transform: scale(1.1);
}

.package-lightbox-image {
  width: 100%;
  max-height: 55vh;
  object-fit: contain;
  background: #000;
  display: block;
}

.package-lightbox-body {
  padding: 24px;
  overflow-y: auto;
}

.package-lightbox-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.package-lightbox-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Page Header */
.page-header {
  position: relative;
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
}

.page-header-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 12px;
}

/* Loading Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 3000;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  max-width: 380px;
}

.toast.show {
  transform: translateX(0);
}

.toast-icon {
  font-size: 1.2rem;
}

.toast-success .toast-icon { color: #4CAF50; }
.toast-error .toast-icon { color: #FF4444; }
.toast-info .toast-icon { color: var(--gold-primary); }

.toast-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  flex: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-split {
    grid-template-columns: 1fr;
  }

  .gallery-list {
    height: auto;
    max-height: 300px;
    overflow-y: auto;
  }

  .gallery-thumbnails {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 26, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--glass-border);
  }

  .navbar-nav.open {
    display: flex;
  }

  .navbar-nav a {
    width: 100%;
    padding: 12px 16px;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-brand img {
    height: 50px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section {
    padding: 60px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .packages-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .chat-widget-container {
    width: calc(100vw - 40px);
    height: 450px;
  }

  .admin-media-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .page-header-title {
    font-size: 2rem;
  }

  .gallery-list {
    max-height: 250px;
  }
}

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

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    justify-content: center;
  }

  .admin-media-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}
