@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --navy-deep: #0A0F1D;
    --navy-medium: #121B33;
    --navy-light: #1E2B4D;
    --gold-primary: #D4AF37;
    --gold-light: #E6CA65;
    --gold-dark: #AA771C;
    --gold-metallic: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --beige-warm: #F5F2EB;
    --beige-dark: #C5A880;
    --text-white: #FFFFFF;
    --text-muted: #A3B8CC;
    --glass-bg: rgba(18, 27, 51, 0.75);
    --glass-border: rgba(212, 175, 55, 0.25);
    --glass-shadow: rgba(0, 0, 0, 0.4);
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Global Reset & Body Styling */
body {
    background-color: var(--navy-deep);
    color: var(--beige-warm);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--text-white);
}

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

/* Golden Linear Gradients Text */
.text-gold-gradient {
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Layout Elements */
.bg-navy-deep { background-color: var(--navy-deep) !important; }
.bg-navy-medium { background-color: var(--navy-medium) !important; }
.bg-navy-light { background-color: var(--navy-light) !important; }
.border-gold { border-color: var(--gold-primary) !important; }
.border-gold-subtle { border-color: var(--glass-border) !important; }

/* Buttons */
.btn-gold {
    background: var(--gold-metallic);
    color: var(--navy-deep) !important;
    font-weight: 600;
    border: none;
    letter-spacing: 0.05em;
    padding: 0.75rem 2rem;
    border-radius: 0px; /* Luxury sharp look */
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #AA771C 0%, #B38728 50%, #BF953F 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}
.btn-gold:hover::before {
    opacity: 1;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary) !important;
    border: 1px solid var(--gold-primary);
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.75rem 2rem;
    border-radius: 0px;
    transition: var(--transition-smooth);
}
.btn-outline-gold:hover {
    background: var(--gold-metallic);
    color: var(--navy-deep) !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px var(--glass-shadow);
    border-radius: 4px;
    transition: var(--transition-smooth);
    color: var(--beige-warm);
}
.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Form Controls */
.form-luxury {
    background: rgba(18, 27, 51, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 0px;
    color: var(--beige-warm) !important;
    padding: 0.75rem 1rem;
    transition: var(--transition-smooth);
}
.form-luxury:focus {
    background: rgba(18, 27, 51, 0.8);
    border-color: var(--gold-primary);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
    outline: none;
}
.form-luxury::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}
select.form-luxury option {
    background-color: var(--navy-medium);
    color: var(--beige-warm);
}

/* Navigation bar */
.navbar-luxury {
    background: rgba(10, 15, 29, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
}
.navbar-luxury .navbar-brand {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.navbar-luxury .nav-link {
    color: var(--beige-warm);
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.75rem !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}
.navbar-luxury .nav-item.ms-lg-3 {
    margin-left: 0.75rem !important;
}
.fs-7 {
    font-size: 0.75rem !important;
}
.navbar-luxury .nav-link:hover, 
.navbar-luxury .nav-item.active .nav-link {
    color: var(--gold-primary);
}

/* Dropdown menu items inside luxury navbar */
.navbar-luxury .dropdown-menu {
    background-color: var(--navy-medium) !important;
    border: 1px solid var(--glass-border);
    border-radius: 0px;
}
.navbar-luxury .dropdown-item {
    color: var(--beige-warm) !important;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.6rem 1.5rem;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}
.navbar-luxury .dropdown-item:hover,
.navbar-luxury .dropdown-item:focus {
    background-color: rgba(212, 175, 55, 0.1) !important;
    color: var(--gold-primary) !important;
}

/* Hero Section */
.hero-luxury {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,15,29,0.5) 0%, rgba(10,15,29,0.7) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}

/* Page Headers */
.page-header-luxury {
    padding: 140px 0 80px 0;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

/* Footer Section */
.footer-luxury {
    position: relative;
    background: linear-gradient(180deg, rgba(7, 11, 20, 0.6) 0%, rgba(5, 10, 20, 0.75) 100%), 
                url('../images/footer_bg.png') no-repeat center center;
    background-size: cover;
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 2rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    z-index: 1;
}
.footer-luxury h5 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

/* Custom Status Tracker */
.status-tracker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    padding: 1rem 0;
}
.status-tracker::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 2px;
    background: var(--navy-light);
    z-index: 1;
    transform: translateY(-50%);
}
.status-tracker-progress {
    position: absolute;
    top: 50%; left: 0;
    height: 2px;
    background: var(--gold-primary);
    z-index: 2;
    transform: translateY(-50%);
    transition: var(--transition-smooth);
}
.status-step {
    z-index: 3;
    background: var(--navy-medium);
    border: 2px solid var(--navy-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.status-step.active {
    border-color: var(--gold-primary);
    background: var(--gold-primary);
    color: var(--navy-deep);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.status-step.completed {
    border-color: var(--gold-primary);
    background: var(--navy-deep);
    color: var(--gold-primary);
}

/* Chat & Messaging UI */
.chat-container {
    height: 500px;
    overflow-y: auto;
    padding: 1.5rem;
    background: rgba(10, 15, 29, 0.4);
    border-bottom: 1px solid var(--glass-border);
}
.chat-bubble {
    max-width: 75%;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    position: relative;
}
.chat-bubble.sent {
    background: var(--navy-light);
    border-left: 3px solid var(--gold-primary);
    margin-left: auto;
    color: var(--beige-warm);
}
.chat-bubble.received {
    background: rgba(28, 37, 65, 0.65);
    border-right: 3px solid var(--beige-dark);
    margin-right: auto;
    color: var(--beige-warm);
}
.chat-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: block;
}

/* Side navigation for dashboards */
.dashboard-sidebar {
    background: var(--navy-medium);
    border-right: 1px solid var(--glass-border);
    min-height: calc(100vh - 80px);
}
.dashboard-sidebar .nav-link {
    color: var(--beige-warm);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-weight: 500;
    transition: var(--transition-smooth);
}
.dashboard-sidebar .nav-link:hover,
.dashboard-sidebar .nav-link.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding-left: 2rem;
}

/* Audio Player styling for voice notes */
.audio-recorder-container {
    background: var(--navy-medium);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    text-align: center;
    border-radius: 4px;
}
.record-btn {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #dc3545;
    border: none;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}
.record-btn.recording {
    animation: pulse 1.5s infinite;
    background: #bd2130;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(220, 53, 69, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

/* Timeline Components */
.timeline {
    position: relative;
    padding-left: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--glass-border);
}
.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.3rem; top: 0.25rem;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold-primary);
    border: 2px solid var(--navy-deep);
}

/* Custom cards for programs/retreats */
.luxury-card {
    position: relative;
    overflow: hidden;
}
.luxury-card img {
    transition: var(--transition-smooth);
}
.luxury-card:hover img {
    transform: scale(1.05);
}
.luxury-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(10,15,29,0.95) 0%, rgba(10,15,29,0) 100%);
    padding: 2rem 1.5rem;
    transition: var(--transition-smooth);
}

/* Particle Canvas Background */
#particles-canvas {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* --- Mockup Redesign Styles --- */

/* Hero Redesign */
.hero-redesign {
    position: relative;
    min-height: 100vh;
    background: url('../images/hero_meditation.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-top: 100px;
    z-index: 1;
}

.hero-video-bg {
    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-redesign-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10, 15, 29, 0.25) 0%, rgba(10, 15, 29, 0.6) 100%);
    z-index: 2;
}

.hero-redesign .container {
    position: relative;
    z-index: 3;
}

/* Play Intro Video Overlay on Hero */
.play-intro-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.play-intro-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.25);
    border: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    margin-bottom: 0.75rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.play-intro-wrapper:hover .play-intro-circle {
    background: var(--gold-primary);
    color: var(--navy-deep);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}
.play-intro-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-white);
    text-transform: uppercase;
}

/* Partner Logo Bar */
.partner-logos-bar {
    background: var(--text-white);
    padding: 3rem 0;
    border-bottom: 1px solid #ECEFF2;
}
.partner-logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.partner-logo-item {
    flex: 1;
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.partner-logo-item img, .partner-logo-item span {
    max-height: 38px;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: var(--transition-smooth);
}
.partner-logo-item:hover img, .partner-logo-item:hover span {
    filter: grayscale(0%);
    opacity: 1;
}

/* About Collage Grid */
.about-section-custom {
    position: relative;
    background-color: #FAF8F5; /* warm soft beige/off-white background */
    color: var(--navy-deep);
    padding: 7rem 0;
    overflow: hidden;
}
.about-section-custom h2, .about-section-custom h3 {
    color: var(--navy-deep);
}
.about-collage-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.about-collage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
}
.about-collage-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.about-collage-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: var(--navy-deep);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 10px 30px rgba(10,15,29,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    padding: 1.5rem;
    z-index: 10;
}
.about-collage-badge svg {
    margin-bottom: 0.5rem;
}
.about-collage-badge h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.about-collage-badge p {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin: 0;
}

/* Background botanical decoration */
.about-floral-decor {
    position: absolute;
    right: -50px;
    bottom: -50px;
    opacity: 0.25;
    pointer-events: none;
    width: 380px;
    height: auto;
}

/* Stats Bar */
.stats-bar-custom {
    background-color: #050A14; /* very dark blue */
    padding: 3rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.stat-box {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}
.stat-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-right: 1.25rem;
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 0.15rem;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Programs Section Redesign */
.programs-section-custom {
    background-color: #FAF8F5; /* warm soft beige/off-white */
    padding: 7rem 0;
    color: var(--navy-deep);
}
.programs-section-custom h2 {
    color: var(--navy-deep);
}
.program-card-redesign {
    background: var(--text-white);
    border: 1px solid #EAE6DF;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.program-card-redesign:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.3);
}
.program-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.program-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.program-card-redesign:hover .program-card-img-wrap img {
    transform: scale(1.06);
}
.program-card-icon-badge {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--text-white);
    border: 1px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    color: var(--gold-primary);
    font-size: 1.1rem;
    z-index: 5;
}
.program-card-body-redesign {
    padding: 2.5rem 1.75rem 2rem 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.program-card-title-redesign {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.75rem;
}
.program-card-text-redesign {
    font-size: 0.88rem;
    color: #556270;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.program-card-link-redesign {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-primary);
    text-transform: uppercase;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.program-card-link-redesign:hover {
    color: var(--gold-dark);
}

/* Call To Action Redesign */
.cta-section-redesign {
    background-color: #0A0F1D;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 6rem 0;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}
.cta-section-redesign::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section-redesign h2 {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.2;
}
.cta-section-redesign p.lead-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}
.cta-button-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.btn-call-outline {
    background: transparent;
    color: var(--text-white) !important;
    border: 1px solid rgba(255,255,255,0.25);
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.75rem 2rem;
    border-radius: 0px;
    transition: var(--transition-smooth);
}
.btn-call-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary) !important;
}
.cta-features-row {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 4rem;
    padding-top: 2.5rem;
}
.cta-feature-item {
    display: flex;
    align-items: flex-start;
}
.cta-feature-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-right: 1rem;
    line-height: 1;
}
.cta-feature-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}
.cta-feature-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

/* High contrast Bootstrap overrides and luxury transitions */
.text-muted {
    color: var(--text-muted) !important;
}

.glass-card img {
    transition: var(--transition-smooth);
}
.glass-card:hover img {
    transform: scale(1.05);
}

/* Header Responsiveness Overrides */
@media (max-width: 1399px) {
    .navbar-luxury .nav-link {
        padding: 0.5rem 0.45rem !important;
        font-size: 0.74rem;
    }
    .navbar-luxury .navbar-brand {
        font-size: 1.3rem;
    }
    .navbar-luxury .navbar-brand svg {
        width: 18px;
        height: 18px;
    }
    .navbar-luxury .nav-item.ms-lg-3 {
        margin-left: 0.4rem !important;
    }
}

@media (max-width: 1199px) {
    /* Styles for Collapsed Menu State on Tablets/Laptops */
    .navbar-luxury .navbar-collapse {
        background-color: var(--navy-medium);
        padding: 1.5rem;
        border-top: 1px solid var(--glass-border);
        margin-top: 1rem;
        border-radius: 4px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .navbar-luxury .navbar-nav {
        align-items: flex-start !important;
    }
    .navbar-luxury .nav-item {
        width: 100%;
        margin: 0.25rem 0;
    }
    .navbar-luxury .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem;
        display: block;
        width: 100%;
    }
    .navbar-luxury .dropdown-menu {
        border: none;
        background-color: rgba(10, 15, 29, 0.5) !important;
        box-shadow: none;
        padding-left: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar-luxury {
        padding: 0.8rem 0;
    }
    .navbar-luxury .navbar-brand {
        font-size: 1.15rem;
    }
    .navbar-luxury .navbar-brand svg {
        width: 18px;
        height: 18px;
        margin-right: 4px !important;
    }
    .navbar-luxury .btn-gold {
        padding: 0.5rem 1rem;
        font-size: 0.75rem !important;
    }
}

/* ==========================================
   PRELOADER STYLING ("prelogo need")
   ========================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--navy-deep);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    opacity: 1;
    visibility: visible;
}
body.preloader-active {
    overflow: hidden !important;
    height: 100vh;
}
.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.preloader-logo {
    animation: preloader-logo-pulse 2s infinite ease-in-out;
}
.preloader-svg {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.35));
}
.preloader-loader-bar {
    width: 160px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gold-metallic);
    animation: preloader-bar-fill 1.8s forwards cubic-bezier(0.1, 0.8, 0.3, 1);
}
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
@keyframes preloader-logo-pulse {
    0% { transform: scale(0.96); opacity: 0.85; filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.25)); }
    50% { transform: scale(1.04); opacity: 1; filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5)); }
    100% { transform: scale(0.96); opacity: 0.85; filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.25)); }
}
@keyframes preloader-bar-fill {
    0% { width: 0%; }
    40% { width: 60%; }
    100% { width: 100%; }
}

/* ==========================================
   SCROLL REVEAL STYLING ("animation need scrolling")
   ========================================== */
.scroll-reveal {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}
.scroll-reveal.fade-up {
    transform: translateY(40px);
}
.scroll-reveal.fade-down {
    transform: translateY(-40px);
}
.scroll-reveal.fade-left {
    transform: translateX(45px);
}
.scroll-reveal.fade-right {
    transform: translateX(-45px);
}
.scroll-reveal.zoom-in {
    transform: scale(0.93);
}
.scroll-reveal.active {
    opacity: 1;
    transform: translate(0) scale(1) !important;
}

/* Transition delays for staggered elements */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }

/* ==========================================
   PARTNER LOGOS MARQUEE SCROLL
   ========================================== */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0.5rem 0;
}
/* Smooth gradient masks for fade out effects on edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee-animation 24s linear infinite;
    gap: 5.5rem;
    align-items: center;
}
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}
.marquee-track .partner-logo-item {
    flex: 0 0 auto;
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes scroll-marquee-animation {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Translate exactly half the width of the duplicated track */
        transform: translateX(calc(-50% - 2.75rem));
    }
}

