/* ==========================================================================
   Radha Krishna AC Banquet Hall - Luxury Design System (Header Aligned)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Logo Derived Color Combination */
  --logo-red: #a71930;
  --logo-red-dark: #7a0f21;
  --logo-red-light: #c8233c;
  --logo-red-gradient: linear-gradient(135deg, #a71930 0%, #6e0c1c 100%);

  --logo-navy: #0c1e42;
  --logo-navy-dark: #061127;
  --logo-navy-light: #162f65;
  --logo-navy-gradient: linear-gradient(135deg, #0c1e42 0%, #050d1e 100%);

  --primary-gold: #d4af37;
  --gold-light: #f5e4a8;
  --gold-dark: #a67c1e;
  --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
  --gold-glow: rgba(212, 175, 55, 0.4);

  --bg-dark: #070913;
  --bg-card-dark: #101424;
  --bg-light: #ffffff;
  --bg-cream: #fffdf7;

  --text-dark: #0c1e42;
  --text-muted-dark: #475569;
  --text-light: #f8fafc;
  --text-muted-light: #94a3b8;

  --glass-bg: rgba(12, 30, 66, 0.95);
  --glass-border: rgba(212, 175, 55, 0.3);
  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
  --shadow-card: 0 15px 35px rgba(12, 30, 66, 0.08);

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-royal: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --tr-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--logo-navy-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary-gold), var(--logo-red));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-red-gradient {
  background: var(--logo-red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.royal-heading {
  font-family: var(--font-royal);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--logo-red);
  font-family: var(--font-royal);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '◆';
  color: var(--primary-gold);
  font-size: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--logo-navy);
  margin-bottom: 16px;
}

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

.subtitle {
  color: var(--text-muted-dark);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 40px auto;
}

/* ==========================================================================
   PERFECTLY ALIGNED HEADER STYLING
   ========================================================================== */

/* Top Info Bar */
.top-bar {
  background: var(--logo-navy-dark);
  color: #e2e8f0;
  font-size: 0.825rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  white-space: nowrap;
}

.top-info-item i {
  color: var(--primary-gold);
  font-size: 0.9rem;
}

.top-info-item a {
  color: #cbd5e1;
  font-weight: 500;
  white-space: nowrap;
}

.top-info-item a:hover {
  color: var(--primary-gold);
}

.top-social {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* Logo Sub-Tagline Bar */
.logo-tagline-bar {
  background: linear-gradient(90deg, #7a0f21 0%, #a71930 50%, #7a0f21 100%);
  color: #ffffff;
  padding: 7px 0;
  text-align: center;
  font-family: var(--font-royal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.logo-tagline-bar .tag-item {
  display: inline-block;
  color: #ffffff;
}

.logo-tagline-bar .tag-sep {
  color: var(--primary-gold);
  margin: 0 12px;
  font-size: 0.75rem;
}

/* Main Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--primary-gold);
  transition: var(--tr-smooth);
}

.main-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  background: rgb(5 24 68);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  min-height: 72px;
}

.header-official-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-official-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid var(--primary-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.header-official-logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: #ad601f;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #a35b04;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Red & Gold Buttons */
.btn-gold {
  background: var(--gold-gradient);
  color: var(--logo-navy-dark);
  font-weight: 700;
  font-family: var(--font-sans);
  padding: 10px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transition: var(--tr-smooth);
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  color: #000;
}

.btn-red {
  background: var(--logo-red-gradient);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(167, 25, 48, 0.4);
  border: 1.5px solid var(--primary-gold);
  transition: var(--tr-smooth);
  cursor: pointer;
  white-space: nowrap;
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(167, 25, 48, 0.6);
  background: linear-gradient(135deg, #c8233c 0%, #a71930 100%);
}

.btn-outline-gold {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--tr-smooth);
  cursor: pointer;
}

.btn-outline-gold:hover {
  background: var(--primary-gold);
  color: var(--logo-navy);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-gold);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .top-bar {
    display: none !important;
  }

  .header-book-btn {
    display: none !important;
  }

  .top-bar-content {
    justify-content: center;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* Layout Container */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

/* Page Header & Breadcrumb Banner Section */
.page-banner {
  padding: 80px 0 70px 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 3px solid var(--primary-gold);
  position: relative;
  box-shadow: inset 0 -30px 40px rgba(0, 0, 0, 0.5);
}

.page-banner-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin: 12px 0 16px 0;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  font-family: var(--font-serif);
  font-weight: 700;
}

.page-banner-desc {
  color: #e2e8f0;
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
  font-weight: 300;
}

/* Breadcrumb Navigation Trail */
.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(7, 9, 19, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 8px 24px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-size: 0.9rem;
}

.breadcrumb-nav a {
  color: var(--gold-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--tr-fast);
}

.breadcrumb-nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.breadcrumb-nav .bc-sep {
  color: var(--logo-red);
  font-size: 0.75rem;
}

.breadcrumb-nav .bc-current {
  color: #ffffff;
  font-weight: 700;
}

/* Hero Section */
.hero-slider-wrapper {
  position: relative;
  min-height: 580px;
  max-height: 640px;
  background: var(--bg-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

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

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 30, 66, 0.75) 0%, rgba(7, 9, 19, 0.88) 70%, rgba(7, 9, 19, 0.98) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  color: #fff;
  padding: 40px 0 50px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(167, 25, 48, 0.3);
  border: 1px solid var(--primary-gold);
  padding: 6px 18px;
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

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

.hero-desc {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 25px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-btn-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Slider Controls & Prev/Next Nav Arrows */
.slider-controls {
  position: absolute;
  bottom: 20px;
  right: 5%;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-arrows {
  display: flex;
  gap: 10px;
}

.slider-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(12, 30, 66, 0.7);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr-fast);
}

.slider-arrow-btn:hover {
  background: var(--primary-gold);
  color: var(--logo-navy);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  background: transparent;
  cursor: pointer;
  transition: var(--tr-fast);
}

.dot.active {
  background: var(--primary-gold);
  width: 32px;
  border-radius: 10px;
}

/* Feature Cards Grid */
.features-section {
  padding: 60px 0;
  background: var(--bg-cream);
}

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

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  border: 1px solid rgba(12, 30, 66, 0.08);
  box-shadow: var(--shadow-card);
  transition: var(--tr-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--logo-red-gradient);
  opacity: 0;
  transition: var(--tr-fast);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 30, 66, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

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

.feature-icon {
  width: 65px;
  height: 65px;
  background: rgba(167, 25, 48, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--logo-red);
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--tr-fast);
  border: 1px solid rgba(167, 25, 48, 0.15);
}

.feature-card:hover .feature-icon {
  background: var(--logo-red-gradient);
  color: var(--primary-gold);
}

.feature-card h3 {
  font-size: 1.35rem;
  color: var(--logo-navy);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
}

/* Stats Banner Section */
.stats-banner {
  background: linear-gradient(135deg, #0c1e42 0%, #060e20 100%);
  color: #fff;
  padding: 50px 0;
  border-top: 3px solid var(--primary-gold);
  border-bottom: 3px solid var(--primary-gold);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-royal);
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 5px;
}

.stat-item p {
  color: #cbd5e1;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

/* Events Section */
.events-section {
  padding: 60px 0;
  background: #ffffff;
}

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

.event-card {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(12, 30, 66, 0.08);
  box-shadow: var(--shadow-card);
  transition: var(--tr-smooth);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(12, 30, 66, 0.15);
}

.event-img {
  height: 240px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-img img {
  transform: scale(1.08);
}

.event-body {
  padding: 30px;
}

.event-body h3 {
  color: var(--logo-navy);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.event-body p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Gallery Showcase */
.gallery-section {
  padding: 60px 0;
  background: var(--bg-cream);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: var(--logo-navy);
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr-fast);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--logo-red-gradient);
  color: var(--primary-gold);
  border-color: var(--logo-red);
}

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

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 30, 66, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}

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

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

.gallery-overlay i {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 8px;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  border: 2px solid var(--primary-gold);
}

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

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 175, 55, 0.2);
  border: 1.5px solid var(--primary-gold);
  color: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2010;
  outline: none;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-nav:hover {
  background: var(--logo-red-gradient);
  color: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

/* Inquiry Form Section */
.inquiry-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #070913 0%, #0c1e42 100%);
  color: #fff;
  position: relative;
}

.inquiry-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  padding: 50px;
  backdrop-filter: blur(12px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

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

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--tr-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Sticky Floating Actions & Click to Top Button */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: var(--tr-smooth);
}

.float-whatsapp {
  background: #25d366;
}

.float-call {
  background: var(--logo-red);
  border: 1.5px solid var(--primary-gold);
}

.float-top {
  background: var(--gold-gradient);
  color: var(--logo-navy);
  border: 2px solid var(--primary-gold);
  border-radius: 50px;
  width: auto;
  height: auto;
  padding: 10px 18px;
  font-weight: 800;
  font-family: var(--font-royal);
  font-size: 0.8rem;
  letter-spacing: 1px;
  display: flex;
  flex-direction: row;
  /* gap: 6px; */
  align-items: center;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

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

.float-top i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.float-top:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.8);
  color: #000;
}

.float-top:hover i {
  transform: translateY(-3px);
}

.float-btn:hover {
  transform: scale(1.12);
}

/* Footer Styling */
.main-footer {
  background: #04060c;
  color: #94a3b8;
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 2px solid var(--primary-gold);
}

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

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

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

.footer-brand p {
  margin-top: 15px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary-gold);
}

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

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

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--primary-gold);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 15px;
}

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

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive Mobile Navigation Drawer */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #070913;
  z-index: 1600;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.35s ease;
  border-left: 2px solid var(--primary-gold);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-close {
  align-self: flex-end;
  color: var(--primary-gold);
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}

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








.feature-body {
  margin-top: 10px;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN & MOBILE BUG FIXES
   ========================================================================== */

/* Universal Image Scaling & Utilities */
img {
  max-width: 100%;
  height: auto;
}

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

/* 992px Breakpoint (Tablets & Mobile) */
@media (max-width: 992px) {
  .responsive-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
  }

  .responsive-grid-2 [style*="order"] {
    order: 0 !important;
  }

  .header-official-logo img {
    height: 65px;
    padding: 3px 8px;
  }

  .navbar {
    min-height: 64px;
    padding: 8px 0;
  }

  .page-banner {
    padding: 70px 0 45px 0 !important;
  }

  .page-banner h1 {
    font-size: 2.2rem !important;
  }
}

/* 768px Breakpoint (Medium Phones & Small Tablets) */
@media (max-width: 768px) {
  .page-banner {
    padding: 55px 0 45px 0 !important;
  }
  .page-banner-title {
    font-size: 2.0rem !important;
    margin: 10px 0 12px 0 !important;
  }
  .page-banner-desc {
    font-size: 0.95rem !important;
    margin-bottom: 18px !important;
  }
  .breadcrumb-nav {
    padding: 6px 18px !important;
    font-size: 0.825rem !important;
  }

  .top-bar {
    display: none !important;
  }

  .logo-tagline-bar {
    font-size: 0.72rem;
    padding: 5px 0;
    letter-spacing: 1px;
  }

  .logo-tagline-bar .tag-sep {
    margin: 0 6px;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
    margin-bottom: 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* 576px Breakpoint (Small Mobile Devices) */
@media (max-width: 576px) {
  .container {
    width: 92%;
  }

  .header-official-logo img {
    height: 75px;
  }

  .logo-tagline-bar {
    display: none !important;
  }

  .hero-btn-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-btn-group .btn-red,
  .hero-btn-group .btn-outline-gold {
    width: 100%;
    justify-content: center;
  }

  .slider-controls {
    right: 50%;
    transform: translateX(50%);
    bottom: 15px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .floating-actions {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .float-top {
    padding: 8px 12px;
    font-size: 0.72rem;
  }

  .form-box-mobile {
    padding: 24px 16px !important;
  }

  .contact-info-card {
    padding: 16px !important;
    gap: 14px !important;
  }
}