/* ================================================================
   Dr RK Hall – Premium Royal Website Stylesheet
   Color Palette: Gold #C6A75E | Maroon #5A0F1C | Blue #0D1B2A | Ivory #F8F5F0
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --gold: #C6A75E;
  --gold-light: #E6C77B;
  --gold-dark: #A08444;
  --maroon: #5A0F1C;
  --maroon-dark: #3D0912;
  --royal-blue: #0D1B2A;
  --ivory: #F8F5F0;
  --black: #111111;
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(198, 167, 94, 0.25);
  --shadow-gold: 0 8px 40px rgba(198, 167, 94, 0.18);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.25);
  --nav-h: 80px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--ivory);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--royal-blue);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── Selection ── */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ── Utility Classes ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center;
}

/* Ornamental divider */
.royal-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}

.royal-divider::before,
.royal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.royal-divider span {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ── Section Labels ── */
.section-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ivory);
}

.section-title span {
  color: var(--gold);
}

.section-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.7);
  margin-top: 16px;
  max-width: 600px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(198, 167, 94, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 6px 30px rgba(198, 167, 94, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 20px rgba(198, 167, 94, 0.1);
}

.btn-outline:hover {
  background: rgba(198, 167, 94, 0.1);
  box-shadow: 0 0 30px rgba(198, 167, 94, 0.3);
  transform: translateY(-2px);
}

/* ── Glassmorphism Card ── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--radius);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(198, 167, 94, 0.5);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}

/* ================================================================
   NAVBAR
   ================================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
  padding: 0 24px;
  display: flex;
  align-items: center;
}

#navbar.scrolled {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.nav-logo span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.8);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.75rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--royal-blue) 0%, #1a0a0f 40%, var(--maroon-dark) 70%, var(--royal-blue) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(198, 167, 94, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(90, 15, 28, 0.5) 0%, transparent 55%);
}

/* Golden light rays */
.hero-rays {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-rays::before,
.hero-rays::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(198, 167, 94, 0.5), transparent);
  transform-origin: top center;
}

.hero-rays::before {
  height: 70%;
  transform: translateX(-50%) rotate(-20deg);
}

.hero-rays::after {
  height: 65%;
  transform: translateX(-50%) rotate(20deg);
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198, 167, 94, 0.12);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '✦';
  font-size: 0.6rem;
}

.hero-badge::after {
  content: '✦';
  font-size: 0.6rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 20px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(248, 245, 240, 0.75);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 42px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(248, 245, 240, 0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
#about {
  background: var(--royal-blue);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image-wrap:hover img {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90, 15, 28, 0.3), rgba(198, 167, 94, 0.1));
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-badge .number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  padding: 20px;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-lbl {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: rgba(248, 245, 240, 0.6);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ================================================================
   FEATURES SECTION
   ================================================================ */
#features {
  background: linear-gradient(180deg, #0a1420 0%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(198, 167, 94, 0.07), transparent 70%);
  transition: opacity 0.4s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 167, 94, 0.1);
  border: 1px solid rgba(198, 167, 94, 0.3);
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(198, 167, 94, 0.2);
  box-shadow: 0 0 30px rgba(198, 167, 94, 0.3);
  transform: scale(1.1);
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.9rem;
  color: rgba(248, 245, 240, 0.6);
  line-height: 1.7;
}

/* ================================================================
   LUCKY DRAW SECTION
   ================================================================ */
#lucky-draw {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--royal-blue) 50%, var(--maroon-dark) 100%);
  position: relative;
  overflow: hidden;
}

#lucky-draw::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(198, 167, 94, 0.08), transparent 60%);
}

.lucky-draw-wrap {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.draw-form-card {
  border-radius: 20px;
  padding: 50px 48px;
  background: rgba(13, 27, 42, 0.6);
  border: 1px solid rgba(198, 167, 94, 0.3);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(198, 167, 94, 0.85);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(198, 167, 94, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(198, 167, 94, 0.6);
  box-shadow: 0 0 0 3px rgba(198, 167, 94, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(248, 245, 240, 0.3);
}

.form-group select option {
  background: var(--royal-blue);
  color: var(--ivory);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(2);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
  grid-column: 1 / -1;
}

.consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 2px;
  accent-color: var(--gold);
}

.consent-row label {
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(248, 245, 240, 0.65);
  line-height: 1.5;
}

.consent-row label a {
  color: var(--gold);
  text-decoration: underline;
}

.form-submit-wrap {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 10px;
}

.privacy-note {
  margin-top: 20px;
  grid-column: 1 / -1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(248, 245, 240, 0.45);
}

.privacy-note i {
  color: var(--gold);
}

/* Success Message */
.success-overlay {
  display: none;
  text-align: center;
  padding: 40px 20px;
  animation: fadeInUp 0.6s ease;
}

.success-overlay.show {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--black);
  animation: pulseGold 2s ease infinite;
}

.success-overlay h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.success-overlay p {
  color: rgba(248, 245, 240, 0.7);
  line-height: 1.7;
}

/* ================================================================
   GALLERY SECTION
   ================================================================ */
#gallery {
  background: var(--royal-blue);
}

.gallery-masonry {
  column-count: 3;
  column-gap: 16px;
  margin-top: 50px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(90, 15, 28, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--ivory);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: var(--ivory);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--gold);
}

/* ================================================================
   TESTIMONIALS SECTION
   ================================================================ */
#testimonials {
  background: linear-gradient(180deg, var(--black) 0%, #0a1420 100%);
  overflow: hidden;
}

.testimonial-slider {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 48px 52px;
  position: relative;
}

.quote-icon {
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 0.6;
  color: rgba(198, 167, 94, 0.15);
  margin-bottom: 24px;
  display: block;
  pointer-events: none;
}

.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--ivory);
  margin-bottom: 28px;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ivory);
  font-weight: 700;
}

.author-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

.author-loc {
  font-size: 0.8rem;
  color: rgba(248, 245, 240, 0.5);
  letter-spacing: 1px;
  margin-top: 2px;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(198, 167, 94, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.slider-prev,
.slider-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: none;
  border: 1px solid rgba(198, 167, 94, 0.3);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(198, 167, 94, 0.15);
  border-color: var(--gold);
}

/* ================================================================
   LOCATION SECTION
   ================================================================ */
#location {
  background: var(--royal-blue);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
  margin-top: 60px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  filter: grayscale(20%) contrast(1.05);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 10px;
  background: rgba(198, 167, 94, 0.1);
  border: 1px solid rgba(198, 167, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background: rgba(198, 167, 94, 0.2);
  box-shadow: 0 0 20px rgba(198, 167, 94, 0.2);
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(198, 167, 94, 0.7);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1rem;
  color: var(--ivory);
  font-weight: 500;
}

.directions-btn {
  align-self: flex-start;
  margin-top: 10px;
}

/* ================================================================
   FINAL CTA SECTION
   ================================================================ */
#final-cta {
  background: var(--royal-blue);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 0%, rgba(198, 167, 94, 0.1), transparent),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(90, 15, 28, 0.4), transparent);
}

.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(5rem, 15vw, 16rem);
  color: rgba(198, 167, 94, 0.03);
  white-space: nowrap;
  pointer-events: none;
  font-weight: 700;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-content .section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

/* ================================================================
   FOOTER
   ================================================================ */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(198, 167, 94, 0.15);
  padding: 70px 24px 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand .logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(248, 245, 240, 0.55);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.footer-col ul li+li {
  margin-top: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(248, 245, 240, 0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: center;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.9rem;
  width: 16px;
}

.footer-contact-item span {
  font-size: 0.86rem;
  color: rgba(248, 245, 240, 0.6);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(198, 167, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 245, 240, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: rgba(198, 167, 94, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  border-top: 1px solid rgba(198, 167, 94, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(248, 245, 240, 0.4);
}

.footer-bottom a {
  color: var(--gold);
  transition: opacity 0.2s;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 20px;
}

/* ================================================================
   FLOATING BUTTONS
   ================================================================ */
.float-buttons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.float-btn.wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.float-btn.call {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}

.float-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.float-btn .tooltip {
  position: absolute;
  right: 62px;
  background: var(--black);
  color: var(--ivory);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: var(--sans);
  border: 1px solid var(--glass-border);
}

.float-btn:hover .tooltip {
  opacity: 1;
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.up {
  transform: translateY(40px);
}

.reveal.left {
  transform: translateX(-40px);
}

.reveal.right {
  transform: translateX(40px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Staggered delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* ================================================================
   KEYFRAMES
   ================================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes pulseGold {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(198, 167, 94, 0.4);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(198, 167, 94, 0);
  }
}

@keyframes particleFade {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 65px;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: 1;
  }

  .gallery-masonry {
    column-count: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .draw-form-card {
    padding: 28px 20px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .about-badge {
    right: 0;
    bottom: -10px;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .gallery-masonry {
    column-count: 1;
  }

  .section {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .btn-lucky-draw-hero {
    width: 90%;
    justify-content: center;
  }
}

/* ================================================================
   LUCKY DRAW HERO BUTTON – Premium Animated CTA
   ================================================================ */
.btn-lucky-draw-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 14px;
  padding: 0;
  overflow: visible;
  transition: transform 0.3s ease;
}

.btn-lucky-draw-hero:hover {
  transform: translateY(-3px);
}

/* Pulsing animated border ring */
.ldb-ring {
  position: absolute;
  inset: -3px;
  border-radius: 17px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #C6A75E, #fff0b0, #C6A75E, #8B6914) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: ringSpin 3s linear infinite;
  pointer-events: none;
}

/* Shimmer sweep across button */
.ldb-shimmer {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmerSweep 2.4s ease-in-out infinite;
  pointer-events: none;
}

/* Main button body */
.ldb-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px 16px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3D0912 0%, #1a0d1a 40%, #0D1B2A 100%);
  border: 1px solid rgba(198, 167, 94, 0.5);
  box-shadow:
    0 0 30px rgba(198, 167, 94, 0.25),
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.btn-lucky-draw-hero:hover .ldb-inner {
  box-shadow:
    0 0 50px rgba(198, 167, 94, 0.45),
    0 12px 40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Icon group */
.ldb-icons {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

/* Crown bounces */
.ldb-crown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: var(--gold-light);
  animation: crownBounce 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(198, 167, 94, 0.7));
}

/* Orbiting stars */
.ldb-star {
  position: absolute;
  font-size: 0.45rem;
  color: #ffe066;
  filter: drop-shadow(0 0 3px #ffe066);
}

.ldb-star.s1 {
  animation: orbit 2.0s linear infinite;
  top: 0;
  left: 50%;
}

.ldb-star.s2 {
  animation: orbit 2.0s linear infinite -0.66s;
  top: 0;
  left: 50%;
}

.ldb-star.s3 {
  animation: orbit 2.0s linear infinite -1.33s;
  top: 0;
  left: 50%;
}

/* Text block */
.ldb-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.ldb-main {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.ldb-sub {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.65);
}

/* Urgency badge */
.ldb-badge {
  flex-shrink: 0;
  background: linear-gradient(135deg, #C6A75E, #8B6914);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  animation: badgePop 1.5s ease-in-out infinite;
  white-space: nowrap;
}

/* ── Keyframes ── */
@keyframes ringSpin {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes shimmerSweep {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(198, 167, 94, 0.25), 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }

  50% {
    box-shadow: 0 0 50px rgba(198, 167, 94, 0.45), 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }
}

@keyframes crownBounce {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -58%) scale(1.15);
  }
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(20px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(20px) rotate(-360deg);
  }
}

@keyframes badgePop {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}