/**
 * K-Lounge Bathinda - Main Stylesheet
 * Premium Nightclub Website
 * Color Palette:
 * - Royal Black: #0D0D0D
 * - Gold Primary: #D4AF37
 * - Gold Light: #F4E8C1
 * - Rose Gold: #B76E79
 * - Dark Brown: #3A2D28
 * - Taupe: #A48374
 * - Cream: #EBE3DB
 * - White: #F1EDE6
 * - Neon Gold: #FFD700
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --royal-black: #0D0D0D;
    --gold-primary: #D4AF37;
    --gold-light: #F4E8C1;
    --rose-gold: #B76E79;
    --dark-brown: #3A2D28;
    --taupe: #A48374;
    --cream: #EBE3DB;
    --white: #F1EDE6;
    --neon-gold: #FFD700;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--royal-black);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gold-primary);
}

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

a:hover {
    color: var(--gold-light);
}

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

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--royal-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.gold-logo {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 0 0 30px var(--gold-primary);
    animation: pulse 2s infinite;
}

.loading-text {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold-light);
    margin-top: 20px;
    letter-spacing: 3px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, var(--dark-brown), var(--royal-black));
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-contact a {
    color: var(--cream);
    margin-right: 20px;
}

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

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

.top-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.top-social a {
    color: var(--cream);
    font-size: 14px;
}

.top-social a:hover {
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.divider {
    color: var(--taupe);
    margin: 0 10px;
}

.member-link {
    color: var(--gold-primary) !important;
    font-weight: 500;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-navbar {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
  
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1050;
}

.main-navbar.scrolled {
    padding: 10px 0;
    background: rgba(13, 13, 13, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    padding: 0;
}

.navbar-logo-img {
    height: 110px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 12px rgba(212,175,55,0.7)) drop-shadow(0 0 4px rgba(212,175,55,0.5));
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-k {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 3px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--taupe);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: var(--cream) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 36px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary) !important;
}

.dropdown-menu {
    background: var(--dark-brown);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    min-width: 240px;
}

.dropdown-item {
    color: var(--cream);
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 10px;
    transition: background 0.2s, transform 0.15s;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    transform: translateX(3px);
}

.dropdown-divider {
    border-color: rgba(212, 175, 55, 0.2);
}

/* Dropdown hover support (works alongside Bootstrap click trigger) */
.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeInDown 0.15s ease;
}

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

.nav-cta {
    margin-left: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary), #B8941F);
    color: var(--royal-black);
    border: none;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: var(--royal-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--royal-black);
}

.btn-dark {
    background: var(--dark-brown);
    color: var(--cream);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-dark:hover {
    background: var(--royal-black);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #0D0D0D;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-bg { display: none; }
.hero-overlay { display: none; }

.hero-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.8s ease-in-out;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 60%, rgba(13,13,13,0.7) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-video {
    transition: opacity 0.8s ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 8vw, 80px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--gold-primary);
    display: block;
}

.hero-description {
    font-size: 18px;
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--gold-primary);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--taupe);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Gold particles animation */
.gold-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: float 15s infinite;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: var(--taupe);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   EXPERIENCE CARDS
   ============================================ */
.experience-section {
    background: linear-gradient(180deg, var(--royal-black), var(--dark-brown));
}

.experience-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    margin-bottom: 30px;
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.experience-card:hover img {
    transform: scale(1.1);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(13, 13, 13, 0.95),
        rgba(13, 13, 13, 0.3),
        transparent
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition-fast);
}

.experience-card:hover .experience-overlay {
    background: linear-gradient(
        to top,
        rgba(13, 13, 13, 0.98),
        rgba(13, 13, 13, 0.5),
        transparent
    );
}

.experience-time {
    font-size: 12px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.experience-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--white);
    margin-bottom: 10px;
}

.experience-description {
    font-size: 14px;
    color: var(--cream);
    margin-bottom: 20px;
}

/* ============================================
   EVENTS
   ============================================ */
.events-section {
    background: var(--royal-black);
}

.event-card {
    background: linear-gradient(145deg, var(--dark-brown), rgba(58, 45, 40, 0.5));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
    margin-bottom: 30px;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

.event-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #111;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-medium);
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

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

.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-primary);
    color: var(--royal-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(13, 13, 13, 0.9);
    color: var(--gold-primary);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.event-date .day {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 25px;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--taupe);
}

.event-meta i {
    color: var(--gold-primary);
    margin-right: 5px;
}

.event-description {
    font-size: 14px;
    color: var(--cream);
    margin-bottom: 20px;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-price {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--gold-primary);
}

.event-price span {
    font-size: 14px;
    color: var(--taupe);
}

/* ============================================
   MEMBERSHIP
   ============================================ */
.membership-section {
    background: linear-gradient(180deg, var(--dark-brown), var(--royal-black));
}

.membership-card {
    background: linear-gradient(145deg, rgba(58, 45, 40, 0.8), rgba(13, 13, 13, 0.9));
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.membership-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--shadow-gold);
}

.membership-card.featured {
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

.membership-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--gold-primary);
    color: var(--royal-black);
    padding: 5px 40px;
    font-size: 11px;
    font-weight: 600;
    transform: rotate(45deg);
}

.membership-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid var(--gold-primary);
}

.membership-icon i {
    font-size: 36px;
    color: var(--gold-primary);
}

.membership-name {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.membership-price {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 5px;
}

.membership-price span {
    font-size: 16px;
    color: var(--taupe);
}

.membership-period {
    font-size: 14px;
    color: var(--taupe);
    margin-bottom: 25px;
}

.membership-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.membership-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 14px;
    color: var(--cream);
    display: flex;
    align-items: center;
}

.membership-benefits li:last-child {
    border-bottom: none;
}

.membership-benefits li i {
    color: var(--gold-primary);
    margin-right: 10px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
    background: var(--royal-black);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 24px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.gallery-overlay i {
    font-size: 40px;
    color: var(--gold-primary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: linear-gradient(180deg, var(--royal-black), var(--dark-brown));
}

.testimonial-card {
    background: rgba(58, 45, 40, 0.5);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonial-stars {
    color: var(--gold-primary);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--cream);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
}

.testimonial-info h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--taupe);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: linear-gradient(180deg, var(--dark-brown), var(--royal-black));
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-brand .logo-k {
    font-size: 60px;
}

.footer-brand .logo-main {
    font-size: 28px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold-primary);
    margin: 20px 0 10px;
}

.footer-description {
    font-size: 14px;
    color: var(--taupe);
    margin-bottom: 25px;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 18px;
    transition: var(--transition-fast);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-icon:hover {
    background: var(--gold-primary);
    color: var(--royal-black);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: var(--cream);
    font-size: 14px;
    transition: var(--transition-fast);
}

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

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--cream);
}

.contact-item i {
    color: var(--gold-primary);
    font-size: 18px;
    margin-top: 3px;
}

.contact-item a {
    color: var(--cream);
    display: block;
}

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

.contact-item span {
    display: block;
}

.footer-newsletter {
    background: rgba(212, 175, 55, 0.05);
    padding: 50px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-newsletter h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.footer-newsletter p {
    color: var(--taupe);
    margin: 0;
}

.newsletter-form .form-control {
    background: rgba(13, 13, 13, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--cream);
    padding: 15px 25px;
    border-radius: 30px 0 0 30px;
}

.newsletter-form .form-control:focus {
    background: rgba(13, 13, 13, 0.8);
    border-color: var(--gold-primary);
    box-shadow: none;
    color: var(--cream);
}

.newsletter-form .form-control::placeholder {
    color: var(--taupe);
}

.newsletter-form .btn-gold {
    border-radius: 0 30px 30px 0;
    padding: 15px 30px;
}

.footer-bottom {
    padding: 25px 0;
}

.copyright {
    color: var(--taupe);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--taupe);
    font-size: 13px;
}

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

/* ============================================
   CHATBOT WIDGET
   ============================================ */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chatbot-toggle {
    background: linear-gradient(135deg, var(--gold-primary), #B8941F);
    color: var(--royal-black);
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-fast);
}

.chatbot-toggle:hover {
    transform: scale(1.05);
}

.chatbot-toggle i {
    font-size: 24px;
}

.chatbot-label {
    font-weight: 600;
    font-size: 14px;
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--dark-brown);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.chatbot-container.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--gold-primary), #B8941F);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    background: var(--royal-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-avatar i {
    font-size: 24px;
    color: var(--gold-primary);
}

.chatbot-info h5 {
    color: var(--royal-black);
    margin: 0;
    font-size: 16px;
}

.chatbot-info .status {
    font-size: 12px;
    color: var(--royal-black);
    display: flex;
    align-items: center;
    gap: 5px;
}

.chatbot-info .status i {
    font-size: 8px;
    color: #28a745;
}

.chatbot-header .btn-close {
    margin-left: auto;
    filter: invert(1);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.message {
    margin-bottom: 15px;
}

.message-content {
    padding: 12px 15px;
    border-radius: 15px;
    max-width: 85%;
}

.bot-message .message-content {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--cream);
}

.user-message .message-content {
    background: var(--gold-primary);
    color: var(--royal-black);
    margin-left: auto;
}

.message-content p {
    margin: 0 0 10px;
}

.message-content p:last-child {
    margin: 0;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-replies button {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quick-replies button:hover {
    background: var(--gold-primary);
    color: var(--royal-black);
}

.chatbot-input {
    padding: 15px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    background: rgba(13, 13, 13, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 10px 20px;
    color: var(--cream);
    outline: none;
}

.chatbot-input input:focus {
    border-color: var(--gold-primary);
}

.chatbot-input input::placeholder {
    color: var(--taupe);
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    background: var(--gold-primary);
    border: none;
    border-radius: 50%;
    color: var(--royal-black);
    cursor: pointer;
    transition: var(--transition-fast);
}

.chatbot-input button:hover {
    background: var(--gold-light);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    border: none;
    border-radius: 50%;
    color: var(--royal-black);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 9998;
    box-shadow: var(--shadow-gold);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-5px);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    border-radius: 10px;
    padding: 15px 20px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.alert-info {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-primary);
}

/* ============================================
   FORMS
   ============================================ */
.form-control {
    background: rgba(13, 13, 13, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--cream);
    padding: 12px 20px;
    border-radius: 10px;
}

.form-control:focus {
    background: rgba(13, 13, 13, 0.8);
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    color: var(--cream);
}

.form-control::placeholder {
    color: var(--taupe);
}

.form-label {
    color: var(--gold-primary);
    font-weight: 500;
}

.form-select {
    background-color: rgba(13, 13, 13, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--cream);
    padding: 12px 20px;
    border-radius: 10px;
}

.form-select:focus {
    background-color: rgba(13, 13, 13, 0.8);
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    color: var(--cream);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .membership-card.featured {
        transform: none;
    }
    
    .chatbot-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-container {
        width: calc(100vw - 40px);
        right: -20px;
    }
    
    .footer-newsletter .row {
        text-align: center;
    }
    
    .newsletter-form {
        margin-top: 20px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .top-bar {
        display: none;
    }
    
    .nav-cta {
        margin: 15px 0 0;
    }
    
    .chatbot-label {
        display: none;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        left: 20px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.shimmer-text {
    background: linear-gradient(
        90deg,
        var(--gold-primary) 0%,
        var(--gold-light) 50%,
        var(--gold-primary) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--royal-black);
}

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

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

/* ============================================
   MAIN NAV MENU - DESKTOP
   ============================================ */
.main-nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
}
.main-nav-menu .navbar-nav {
    display: flex;
    flex-direction: row;
    margin-left: auto;
}

/* ============================================
   NAVBAR TOGGLER (HAMBURGER) STYLING
   ============================================ */
.navbar-toggler {
    display: none;
    border: 2px solid rgba(212, 175, 55, 0.7) !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    background: rgba(212, 175, 55, 0.1) !important;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}
.navbar-toggler:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25) !important;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212%2C175%2C55%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 24px !important;
    height: 24px !important;
    display: block;
}

/* Mobile navbar handling */
@media (max-width: 991px) {
    .navbar-toggler {
        display: block !important;
    }
    .main-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(13, 13, 13, 0.99);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        border-bottom: 2px solid rgba(212, 175, 55, 0.15);
        z-index: 1090;
        flex-direction: column;
        padding: 10px 0 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    }
    .main-nav-menu.open {
        display: flex !important;
    }
    .main-nav-menu .navbar-nav {
        flex-direction: column !important;
        width: 100%;
        margin: 0;
        padding: 0 12px;
    }
    .main-nav-menu .nav-link {
        padding: 13px 16px !important;
        border-bottom: 1px solid rgba(255,255,255,0.06) !important;
        font-size: 15px !important;
        color: #EBE3DB !important;
        display: block;
        width: 100%;
    }
    .main-nav-menu .nav-link:hover {
        color: #D4AF37 !important;
        background: rgba(212,175,55,0.06);
        border-radius: 6px;
    }
    .main-nav-menu .nav-cta {
        padding: 14px 28px 4px;
    }
    .main-nav-menu .nav-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .main-nav-menu .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.05) !important;
        background: rgba(255,255,255,0.03);
        margin: 0;
        padding: 4px 0;
        border-radius: 0;
    }
    /* Make the main navbar position relative so dropdown positions correctly */
    .main-navbar {
        position: relative !important;
    }
}

/* ============================================
   MOBILE RESPONSIVE - GENERAL FIXES
   ============================================ */
@media (max-width: 768px) {
    /* Fix letter-spacing on all paragraph text - prevents character-by-character display */
    p, li, span, div {
        letter-spacing: normal;
        word-spacing: normal;
        word-break: normal;
    }
    /* Brand section paragraphs specifically */
    section p[style*="letter-spacing"] {
        letter-spacing: 0.5px !important;
    }
    /* Badge pills with letter-spacing */
    section div[style*="letter-spacing:3px"],
    section div[style*="letter-spacing: 3px"] {
        letter-spacing: 1px !important;
    }
    /* Max-width containers on mobile */
    [style*="max-width:500px"],
    [style*="max-width: 500px"],
    [style*="max-width:600px"],
    [style*="max-width: 600px"] {
        max-width: 100% !important;
    }
    /* Adjust logo size on mobile */
    .navbar-logo-img {
        height: 70px !important;
    }
    /* Top bar on mobile */
    .top-bar {
        display: none;
    }
}
