@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&display=swap');

/* ==========================================================================
   DESIGN TOKENS & LEGACY ROOT
   ========================================================================== */
:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Luxury Color System */
    --color-primary: hsl(43, 74%, 49%);     /* Champagne Gold #D4AF37 */
    --color-primary-hover: hsl(43, 85%, 55%);
    --color-primary-light: hsl(43, 77%, 81%);
    --color-primary-glow: rgba(212, 175, 55, 0.35);

    --color-bg-dark: hsl(222, 47%, 7%);       /* Majestic Deep Space Dark #070B19 */
    --color-bg-navy: #0F172A;                 /* Premium Navy Blue */
    --color-bg-card: rgba(30, 41, 59, 0.7);   /* Translucent Card for Glassmorphism */
    --color-border-glass: rgba(212, 175, 55, 0.15); /* Delicate gold border */
    
    --color-text-light: hsl(0, 0%, 98%);
    --color-text-muted: hsl(215, 20%, 65%);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --box-shadow-gold: 0 8px 30px var(--color-primary-glow);
    --box-shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
}

/* ==========================================================================
   RESET & SYSTEM BASICS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-bg-dark);
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-hover);
}

/* Typography & Titles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-text-light);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

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

/* ==========================================================================
   GLOBAL UTILITIES
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

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

/* Glassmorphism Card Utility */
.glass-panel {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-glass);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--box-shadow-gold), var(--box-shadow-glass);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: #070B19;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background: var(--color-primary);
    color: #070B19;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-gold);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.header-nav.scrolled {
    background: rgba(7, 11, 25, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 12px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px var(--color-primary-glow));
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--color-text-light);
    letter-spacing: 0.02em;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 8px 0;
}

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

.nav-link:hover {
    color: var(--color-primary);
}

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

.nav-cta-btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

/* Luxury Golden Radial & Linear Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Dark radial overlay to vignette the edges and keep center clean */
        radial-gradient(circle at center, rgba(7, 11, 25, 0.15) 0%, rgba(7, 11, 25, 0.88) 100%),
        /* Golden diagonal sheen overlay */
        linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, transparent 45%, transparent 55%, rgba(212, 175, 55, 0.15) 100%),
        /* Bottom transition fade */
        linear-gradient(0deg, var(--color-bg-dark) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Blurred Stage Photo Background Layer */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/welcome-bg-v2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(8px) brightness(0.55) contrast(1.25); /* Darker and higher contrast */
    transform: scale(1.05); /* Prevents blur bleed edge outlines */
    z-index: 0;
}

/* Glowing background elements for visual interest */
.glowing-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--color-primary-glow);
    filter: blur(150px);
    z-index: 0;
    pointer-events: none;
}
.orb-1 { top: -100px; left: -100px; }
.orb-2 { bottom: -100px; right: -100px; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.hero-tagline {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin: 28px auto 44px;
    max-width: 650px;
}

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

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   LEGACY / ABOUT SECTION
   ========================================================================== */
.legacy-section {
    position: relative;
    overflow: hidden;
}

.legacy-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.legacy-content {
    text-align: left;
}

.section-label {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    display: block;
}

.legacy-title {
    margin-bottom: 28px;
}

.legacy-title::after {
    left: 0;
    transform: none;
}

.legacy-desc {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legacy-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
}

.legacy-visual {
    position: relative;
}

.visual-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--box-shadow-glass);
    aspect-ratio: 4 / 3;
}

.visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.visual-container:hover .visual-image {
    transform: scale(1.05);
}

/* Badge for 25 Years legacy */
.experience-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    padding: 24px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.badge-number {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* ==========================================================================
   VENUES / SPACES TABS SECTION
   ========================================================================== */
.venues-section {
    background-color: var(--color-bg-navy);
    position: relative;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto 60px;
    list-style: none;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--color-primary);
    color: #070B19;
    border-color: var(--color-primary);
    box-shadow: var(--box-shadow-gold);
}

.venues-display {
    position: relative;
}

.venue-tab-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    animation: tabFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.venue-tab-content.active {
    display: grid;
}

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

.venue-info h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--color-text-light);
}

.venue-info p {
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.spec-card {
    padding: 20px;
    border-radius: var(--border-radius-md);
}

.spec-val {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.spec-lbl {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.venue-image-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-glass);
    aspect-ratio: 1.5;
    box-shadow: var(--box-shadow-glass);
}

.venue-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.venue-image-wrapper:hover .venue-img {
    transform: scale(1.05);
}

/* ==========================================================================
   PACKAGE INQUIRY & INTERACTIVE ESTIMATOR
   ========================================================================== */
.estimator-section {
    position: relative;
}

.estimator-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: stretch;
}

.estimator-calculator {
    padding: 44px;
}

.calc-title {
    margin-bottom: 12px;
}

.calc-desc {
    margin-bottom: 36px;
}

.input-group {
    margin-bottom: 32px;
}

.label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.input-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.05rem;
}

.input-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Modern Slider Styling */
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: opacity 0.2s;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 4px solid var(--color-bg-dark);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--color-primary-light);
}

/* Elegant Radio Options */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.option-card {
    position: relative;
    cursor: pointer;
}

.option-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option-box {
    padding: 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border-glass);
    text-align: center;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.02);
}

.option-box h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-text-light);
}

.option-box p {
    font-size: 0.85rem;
}

.option-card input:checked ~ .option-box {
    border-color: var(--color-primary);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.option-card input:checked ~ .option-box h4 {
    color: var(--color-primary);
}

/* Output Billing Sheet Panel */
.estimator-result {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 44px;
    position: relative;
    overflow: hidden;
}

.result-header {
    margin-bottom: 30px;
}

.result-subtitle {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--color-primary);
}

.result-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-top: 6px;
}

.bill-details {
    margin-bottom: 40px;
}

.bill-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bill-lbl {
    font-weight: 300;
    color: var(--color-text-muted);
}

.bill-val {
    font-weight: 500;
}

.bill-row.total-row {
    border-bottom: none;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
    margin-top: 10px;
    padding: 24px 0 0;
}

.bill-row.total-row .bill-lbl {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--color-text-light);
    font-weight: 600;
}

.bill-row.total-row .bill-val {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
}

.estimator-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.small-note {
    font-size: 0.75rem;
    text-align: center;
    color: var(--color-text-muted);
}

/* ==========================================================================
   PHOTO GALLERY
   ========================================================================== */
.gallery-section {
    background-color: var(--color-bg-navy);
}

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

.gallery-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border-glass);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: var(--box-shadow-glass);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(7, 11, 25, 0.9) 0%, rgba(7, 11, 25, 0.2) 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.08);
}

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

.gallery-category {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text-light);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 11, 25, 0.96);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border-glass);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2100;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* Lightbox Navigation Arrows */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 3.5rem;
    font-weight: 300;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: var(--transition-fast);
    z-index: 2100;
}

.lightbox-arrow:hover {
    color: var(--color-primary);
    text-shadow: 0 0 15px var(--color-primary-glow);
    transform: translateY(-50%) scale(1.15);
}

.arrow-left {
    left: 40px;
}

.arrow-right {
    right: 40px;
}

/* Responsive arrows for tablets/mobile */
@media (max-width: 768px) {
    .lightbox-arrow {
        font-size: 2.5rem;
        padding: 10px;
    }
    .arrow-left { left: 10px; }
    .arrow-right { right: 10px; }
    .lightbox-close { top: 15px; right: 20px; font-size: 2.5rem; }
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-section {
    position: relative;
}

.reviews-slider {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
    min-width: 100%;
    padding: 20px;
    flex-shrink: 0;
}

.review-card {
    padding: 50px;
    text-align: center;
}

.review-stars {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.review-text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

.review-author h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.review-author p {
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Slider Pagination dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    list-style: none;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--color-primary);
    transform: scale(1.3);
}

/* ==========================================================================
   CONTACT US & MAPS
   ========================================================================== */
.contact-section {
    background-color: var(--color-bg-navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    margin-bottom: 24px;
}

.contact-title::after {
    left: 0;
    transform: none;
}

.contact-intro {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details-list {
    list-style: none;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-text-light);
}

.contact-text p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-glass);
    box-shadow: var(--box-shadow-glass);
    height: 100%;
    min-height: 450px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   FOOTER BAR
   ========================================================================== */
.footer-bar {
    background-color: var(--color-bg-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
}

.footer-copy {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   RESPONSIVENESS (TABLETS & PHONES)
   ========================================================================== */
@media (max-width: 1024px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .legacy-content {
        order: 2;
    }
    
    .legacy-visual {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .venue-tab-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .venue-image-wrapper {
        order: 1;
    }
    
    .venue-info {
        order: 2;
    }
    
    .estimator-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        padding: 16px 0;
    }
    
    .nav-wrapper {
        justify-content: center !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .mobile-nav-toggle {
        display: none !important;
    }
    
    .glowing-orb {
        display: none !important;
    }
    
    .hero-section {
        min-height: 90vh;
    }
    
    .estimator-calculator {
        padding: 24px;
    }
    
    .estimator-result {
        padding: 24px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .legacy-highlights {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        bottom: -15px;
        left: -15px;
        padding: 16px 20px;
    }
    
    .badge-number {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   FLOATING AI CHAT WIDGET STYLING
   ========================================================================== */
.ai-chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000000;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Persistent left call-to-action label pointing to portal */
.portal-cta-label {
    background: rgba(7, 11, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius-md);
    color: var(--color-primary-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 16px;
    white-space: nowrap;
    box-shadow: var(--box-shadow-glass);
    pointer-events: none;
    animation: ctaLabelSway 2s ease-in-out infinite alternate;
    letter-spacing: 0.02em;
}

@keyframes ctaLabelSway {
    0% {
        transform: translateX(0);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
    }
    100% {
        transform: translateX(-6px);
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.25), var(--box-shadow-glass);
    }
}

/* Chat bubble button -> Refactored into a high-end square Packages Portal */
.ai-chat-bubble {
    width: 55px;
    height: 55px;
    border-radius: var(--border-radius-sm); /* Sleek square borders (8px) */
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: #070B19;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), var(--box-shadow-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
}

.ai-chat-bubble:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* Pulsating light trigger (Sleek Square outline pulse) */
.bubble-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--color-primary);
    animation: bubblePulse 2.5s infinite;
    pointer-events: none;
}

@keyframes bubblePulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Chat Window Box */
.ai-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: var(--transition-smooth);
    background: rgba(15, 23, 42, 0.85); /* Darker backdrop for premium text contrast */
}

.ai-chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Header */
.chat-header {
    padding: 16px 20px;
    background: rgba(7, 11, 25, 0.5);
    border-bottom: 1px solid var(--color-border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
}

.chat-close-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.chat-close-btn:hover {
    color: var(--color-primary);
}

/* Messages Body */
.chat-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    font-size: 0.92rem;
    line-height: 1.5;
    animation: messageFadeIn 0.3s ease forwards;
}

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

.bot-msg {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom-left-radius: 4px;
    color: var(--color-text-light);
}

.user-msg {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--color-primary-glow) 0%, rgba(212, 175, 55, 0.15) 100%);
    border: 1px solid var(--color-primary);
    border-bottom-right-radius: 4px;
    color: var(--color-text-light);
}

.msg-time {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 4px;
    text-align: right;
}

/* Footer Input Area */
.chat-footer {
    padding: 16px 20px;
    background: rgba(7, 11, 25, 0.5);
    border-top: 1px solid var(--color-border-glass);
    display: flex;
    gap: 12px;
}

.chat-footer input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 10px 18px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition-fast);
}

.chat-footer input:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
}

.chat-footer button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #070B19;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chat-footer button:hover {
    background: var(--color-primary-hover);
    transform: scale(1.05);
}

/* Responsiveness for mobile screens */
@media (max-width: 480px) {
    .ai-chat-container {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }
    
    .portal-cta-label {
        font-size: 0.76rem;
        padding: 6px 12px;
    }
    
    .ai-chat-bubble {
        width: 48px;
        height: 48px;
    }

    .ai-chat-window {
        width: calc(100vw - 40px);
        height: 520px;
        right: -10px;
        bottom: 65px;
    }
}

/* Chat option select buttons styling */
.chat-options-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    width: 100%;
}

.chat-opt-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    color: var(--color-text-light);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chat-opt-btn:hover {
    border-color: var(--color-primary);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.chat-opt-btn.selected {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary-glow) 0%, rgba(212, 175, 55, 0.18) 100%);
    box-shadow: var(--box-shadow-gold);
    font-weight: 500;
    color: var(--color-primary-light);
}

.opt-custom-trigger {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.01);
    color: var(--color-text-muted);
}

.opt-custom-trigger:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-light);
    box-shadow: none;
}

/* Ensure AI-delivered images fit perfectly inside the chat window */
.chat-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Gallery-specific attention-grabbing animation */
.ai-chat-container.gallery-view {
    animation: chatBubbleSlideAlert 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes chatBubbleSlideAlert {
    0% {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Chat window gallery link styling */
.chat-gallery-link {
    color: var(--color-primary); /* Royal Gold #D4AF37 */
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    transition: var(--transition-fast);
}
.chat-gallery-link:hover {
    color: var(--color-primary-hover);
}

/* ==========================================================================
   MINI CREDENTIAL OVERLAY BOX
   ========================================================================== */
.mini-credential-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid var(--color-primary);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-gold), var(--box-shadow-glass);
    z-index: 1000001; /* Above package details backdrop */
    padding: 16px;
    font-family: var(--font-body);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
}

.mini-credential-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Collapsed State Styles */
.mini-credential-box.collapsed {
    width: auto;
    max-width: 290px;
    padding: 10px 18px;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 30px;
    animation: ctaLabelSway 2s ease-in-out infinite alternate;
}

.mini-credential-box.collapsed:hover {
    background: rgba(212, 175, 55, 0.15);
}

.mini-credential-box.collapsed .expanded-content {
    display: none;
}

.mini-credential-box.collapsed .collapsed-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-primary-light);
    white-space: nowrap;
}

.mini-credential-box:not(.collapsed) .collapsed-content {
    display: none;
}

.mini-credential-box:not(.collapsed) .expanded-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mobile responsive adjustments for mini box */
@media (max-width: 480px) {
    .mini-credential-box {
        bottom: 65px;
        right: -10px;
        width: calc(100vw - 40px);
    }
    .mini-credential-box.collapsed {
        width: auto;
        max-width: calc(100vw - 120px);
        right: 0;
    }
}


