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

:root {
  --bg-color: #020306;
  --panel-bg: rgba(6, 8, 12, 0.88);
  --border-color: rgba(212, 175, 55, 0.25); /* More prominent gold border */
  --text-primary: #fdfdfd;
  --text-secondary: #a3aab5;
  --accent-gold: #c5a059; /* Richer Gold */
  --accent-gold-glow: rgba(197, 160, 89, 0.25);
  --secondary-cyan: #0ea5e9;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
  --card-radius: 12px; /* Sleeker, sharper borders look more premium */
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
  min-height: 100vh;
}

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

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 7, 12, 0.7) 0%, var(--bg-color) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  animation: fadeUp 1.2s ease-out;
}

.logo-container {
  margin-bottom: 20px;
  position: relative;
}

.logo-img {
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-top: 15px;
  background: linear-gradient(135deg, #ffffff 20%, var(--accent-gold) 60%, #fff9e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  text-shadow: 0 0 25px rgba(197, 160, 89, 0.25);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 35px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* Glassmorphism Card Container */
.container {
  max-width: 950px;
  margin: 30px auto 60px auto;
  padding: 20px;
  position: relative;
  z-index: 10;
}

.glass-card {
  background: var(--panel-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 55px 45px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85);
  transition: var(--transition);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), #ffffff, var(--accent-gold), transparent);
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.glass-card:hover {
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: 0 30px 80px rgba(197, 160, 89, 0.06);
}

/* Section Title */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}

.section-title-wrapper::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 15px auto 0 auto;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

/* Form Styles */
.form-group {
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input[type="text"],
input[type="number"],
input[type="tel"],
select,
input[type="file"] {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
select:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px var(--accent-gold-glow);
}

select option {
  background-color: #0b0f19;
  color: var(--text-primary);
}

/* Styled File Input */
input[type="file"] {
  padding: 10px;
  cursor: pointer;
}

/* Category Option Selectors */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

.checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  text-transform: none;
  font-size: 1rem;
  letter-spacing: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: var(--transition);
  user-select: none;
  font-weight: 500;
}

.checkbox-label:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--accent-gold);
}

.checkbox-label.selected {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
}

.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"] {
  accent-color: var(--accent-gold);
  width: 20px;
  height: 20px;
}

/* Dynamic file upload blocks */
.conditional-section {
  display: none;
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
  background: rgba(212, 175, 55, 0.02);
  border: 1px dashed rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  margin-bottom: 28px;
}

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

/* Rules Section */
.rules-container {
  max-height: 220px;
  overflow-y: auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.rules-container ul {
  padding-left: 20px;
}

.rules-container li {
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  gap: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #fff9e6);
  color: #000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-success {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: #000;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Gallery Section */
.gallery-section {
  max-width: 1100px;
  margin: 60px auto 100px auto;
  padding: 20px;
}

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

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item::after {
  content: '🔍 View Moment';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 7, 12, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

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

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

/* Modal Lightbox */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 7, 12, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox-modal.show {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  animation: zoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

@keyframes zoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

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

/* Info Box Alert */
.alert {
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.alert-success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.alert-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

/* Elegant Loading Intro Overlay */
.intro-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #0e121e 0%, #030407 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
  overflow: hidden;
}

.intro-loader::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  animation: bgPan 40s linear infinite;
  z-index: 1;
}

@keyframes bgPan {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-10%, -10%); }
}

.intro-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  max-width: 450px;
  padding: 40px;
  background: rgba(10, 14, 23, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--card-radius);
  backdrop-filter: blur(15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  animation: loaderEntry 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  position: relative;
}

@keyframes loaderEntry {
  from { transform: scale(0.9); opacity: 0; filter: blur(10px); }
  to { transform: scale(1); opacity: 1; filter: blur(0); }
}

.loader-logo {
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
  animation: loaderPulse 3s infinite ease-in-out;
}

.loader-progress-container {
  margin: 35px auto 20px auto;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.6);
}

.loader-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), #fff9e6, var(--accent-gold));
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
  border-radius: 2px;
  animation: fillProgress 2.2s cubic-bezier(0.1, 0.7, 0.1, 1) forwards;
}

@keyframes fillProgress {
  0% { width: 0%; }
  20% { width: 15%; }
  50% { width: 45%; }
  80% { width: 85%; }
  100% { width: 100%; }
}

.loader-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-top: 15px;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #fff, var(--accent-gold), #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 3s linear infinite;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

@keyframes textShimmer {
  to { background-position: 200% center; }
}

.loader-subtext {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 8px;
  opacity: 0.8;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)); }
  50% { transform: scale(1.03); filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.55)); }
}


@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Feedback / Testimonials Grid styling */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

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

.feedback-card {
  background: var(--panel-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.feedback-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
}

.feedback-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.12);
}

.feedback-card:hover img {
  transform: scale(1.03);
}

.feedback-quote {
  padding: 16px;
  font-size: 0.92rem;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}

/* Floating WhatsApp Support Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
  animation: waPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  background-color: #20ba5a;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Admin Nav Tabs Styling */
.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.nav-tab {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-secondary);
  padding: 10px 18px;
  font-size: 0.9rem;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.nav-tab:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: var(--accent-gold-glow);
}

.nav-tab.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #020306;
  font-weight: 700;
  box-shadow: 0 4px 15px var(--accent-gold-glow);
}

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

.ambient-particle {
  position: absolute;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.6) 0%, rgba(197, 160, 89, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatAmbient 20s infinite linear;
}

.ambient-particle.p1 { width: 6px; height: 6px; left: 8%; top: 15%; animation-duration: 26s; }
.ambient-particle.p2 { width: 10px; height: 10px; left: 75%; top: 35%; animation-duration: 19s; animation-delay: -4s; }
.ambient-particle.p3 { width: 5px; height: 5px; left: 25%; top: 65%; animation-duration: 32s; animation-delay: -1s; }
.ambient-particle.p4 { width: 8px; height: 8px; left: 55%; top: 10%; animation-duration: 23s; animation-delay: -8s; }
.ambient-particle.p5 { width: 6px; height: 6px; left: 88%; top: 75%; animation-duration: 28s; animation-delay: -6s; }
.ambient-particle.p6 { width: 4px; height: 4px; left: 40%; top: 45%; animation-duration: 35s; animation-delay: -3s; }
.ambient-particle.p7 { width: 9px; height: 9px; left: 15%; top: 80%; animation-duration: 21s; animation-delay: -9s; }

@keyframes floatAmbient {
  0% { transform: translateY(105vh) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-10vh) translateX(45px) scale(0.6); opacity: 0; }
}

/* Premium Custom File Upload Cards */
.custom-file-upload-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(197, 160, 89, 0.3);
  border-radius: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.custom-file-upload-card:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(197, 160, 89, 0.05);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.08);
  transform: translateY(-2px);
}

.upload-card-icon {
  font-size: 1.25rem;
  color: var(--accent-gold);
}

.upload-card-label {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* ==========================================================================
   MOBILE & RESPONSIVE PERFECTION (iOS, Android, Tablets, Small Screens)
   ========================================================================== */

/* Main Header */
.main-nav-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-sizing: border-box;
}

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

.header-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
}

.header-brand-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.header-lookup-btn {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: 8px;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero Section Refinements */
.hero-subtitle-tag {
  font-size: 2rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.hero-presenter-tag {
  color: #f1e5cc;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.event-pill-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.event-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--accent-gold);
  border-radius: 30px;
  font-size: 0.88rem;
  color: #fff;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.04em;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.18);
}

.hero-cta-btn {
  padding: 15px 36px;
  font-size: 1rem;
  box-shadow: 0 8px 30px rgba(197, 160, 89, 0.35);
}

/* Highlights Section */
.highlights-wrapper {
  max-width: 1100px;
  margin: 60px auto 20px auto;
  padding: 20px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.highlight-card {
  background: var(--panel-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  padding: 30px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.1);
}

.highlight-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.highlight-card h4 {
  font-family: 'Cinzel', serif;
  color: var(--accent-gold);
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Mobile Screens (Under 768px - Phones & Tablets) */
@media (max-width: 768px) {
  /* Header adjustments */
  .main-nav-header {
    padding: 14px 16px !important;
  }
  
  .header-brand {
    gap: 8px !important;
  }
  
  .header-logo-img {
    width: 32px !important;
    height: 32px !important;
  }
  
  .header-brand-title {
    font-size: 0.92rem !important;
    letter-spacing: 0.06em !important;
  }
  
  .header-lookup-btn {
    padding: 6px 12px !important;
    font-size: 0.72rem !important;
  }

  /* Hero adjustments */
  .hero-section {
    min-height: 85vh !important;
    height: auto !important;
    padding: 85px 16px 40px 16px !important;
  }
  
  .hero-content {
    padding: 10px 0 !important;
    width: 100% !important;
  }

  .hero-subtitle-tag {
    font-size: 1.45rem !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 6px !important;
  }

  .hero-presenter-tag {
    font-size: 0.8rem !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 16px !important;
  }

  .event-pill-container {
    gap: 8px !important;
    margin-bottom: 18px !important;
  }

  .event-pill {
    padding: 6px 14px !important;
    font-size: 0.78rem !important;
  }

  .hero-desc {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 22px !important;
    padding: 0 4px !important;
  }

  .hero-cta-btn {
    width: 100% !important;
    max-width: 280px !important;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
  }

  /* Container & Form Card - Remove cramping */
  .container {
    padding: 8px 12px !important;
    margin: 15px auto 40px auto !important;
  }

  .glass-card {
    padding: 24px 16px !important;
    border-radius: 14px !important;
  }

  .section-title {
    font-size: 1.55rem !important;
  }

  .section-title-wrapper {
    margin-bottom: 22px !important;
  }

  /* Form row: stack nicely */
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  /* Inputs: 16px font prevents iOS automatic zoom on focus */
  input[type="text"],
  input[type="number"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px !important;
    padding: 12px 14px !important;
    border-radius: 8px !important;
  }

  .form-group {
    margin-bottom: 18px !important;
  }

  label {
    font-size: 0.8rem !important;
    margin-bottom: 6px !important;
  }

  /* Category radio selectors on mobile */
  .checkbox-group {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .checkbox-label {
    padding: 12px 14px !important;
    font-size: 0.92rem !important;
    border-radius: 8px !important;
  }

  /* Custom file upload cards on mobile */
  .custom-file-upload-card {
    padding: 14px 12px !important;
    gap: 8px !important;
    border-radius: 8px !important;
  }

  .upload-card-label {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }

  .upload-card-icon {
    font-size: 1.15rem !important;
  }

  .file-upload-info {
    font-size: 0.78rem !important;
  }

  /* Rules container on mobile */
  .rules-container {
    padding: 12px !important;
    max-height: 170px !important;
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
  }

  .rules-container ul {
    padding-left: 16px !important;
  }

  .rules-container li {
    margin-bottom: 6px !important;
  }

  /* Submit button on mobile */
  .btn-primary {
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    border-radius: 8px !important;
  }

  /* Highlights grid on mobile */
  .highlights-wrapper {
    padding: 12px !important;
    margin: 25px auto 10px auto !important;
  }

  .highlights-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 16px !important;
  }

  .highlight-card {
    padding: 20px 16px !important;
    border-radius: 10px !important;
  }

  /* Gallery: 2 balanced columns on phones instead of 1 massive stretched image */
  .gallery-section {
    padding: 12px !important;
    margin: 25px auto 50px auto !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .gallery-item {
    height: 125px !important;
    border-radius: 8px !important;
  }

  /* Feedback grid */
  .feedback-section {
    padding: 12px !important;
    margin: 25px auto 10px auto !important;
  }

  .feedback-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .feedback-quote {
    padding: 12px !important;
    font-size: 0.85rem !important;
  }

  /* Floating WhatsApp button: move to a safe, non-blocking position on mobile */
  .whatsapp-float {
    bottom: 16px !important;
    right: 14px !important;
    width: 48px !important;
    height: 48px !important;
  }

  .whatsapp-float svg {
    width: 24px !important;
    height: 24px !important;
  }

  /* Intro Loader on Mobile */
  .loader-content {
    max-width: 90vw !important;
    padding: 24px 16px !important;
  }

  .loader-logo {
    max-width: 170px !important;
  }

  .loader-text {
    font-size: 1.55rem !important;
  }

  .loader-subtext {
    font-size: 0.72rem !important;
  }

  /* OTP Modal Mobile */
  .otp-modal-box {
    width: 92% !important;
    max-width: 360px !important;
    padding: 24px 18px !important;
    border-radius: 12px !important;
  }
}

.otp-modal-box {
  max-width: 420px;
  width: 90%;
  padding: 35px 30px;
  border-radius: 14px;
  background: #0c0f18;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
  margin: auto;
}

/* ==========================================================================
   GOLDEN LIVE COUNTDOWN & SMS REMINDER STYLING
   ========================================================================== */
.countdown-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 15px auto 30px auto;
  flex-wrap: nowrap;
}

.countdown-box {
  background: rgba(12, 16, 26, 0.85);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 12px;
  padding: 16px 18px;
  min-width: 78px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-digit {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ffffff 20%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.countdown-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-top: 6px;
  font-weight: 600;
}

.countdown-colon {
  font-size: 1.8rem;
  font-family: 'Cinzel', serif;
  color: var(--accent-gold);
  margin-top: -15px;
}

.reminder-card-container {
  background: rgba(197, 160, 89, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 14px;
  padding: 24px 20px;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 600px) {
  .countdown-grid {
    gap: 6px;
  }
  .countdown-box {
    padding: 10px 8px;
    min-width: 58px;
  }
  .countdown-digit {
    font-size: 1.5rem;
  }
  .countdown-tag {
    font-size: 0.56rem;
  }
  .countdown-colon {
    font-size: 1.2rem;
  }
}

/* Coming Soon Mode Styles */
.coming-soon-container {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
}

.coming-soon-card {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(197, 160, 89, 0.08);
}

