@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #a11b5d; /* Modern Magenta-Purple inspired by logo */
    --primary-gradient: linear-gradient(135deg, #a11b5d 0%, #6d1140 100%);
    --primary-glow: rgba(161, 27, 93, 0.4);
    --secondary: #1a1b4b; /* Deep rich blue */
    --accent: #f43f5e;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(161, 27, 93, 0.3);
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

::selection {
    background: var(--primary);
    color: white;
}

body {
    font-family: 'Outfit', sans-serif !important;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.03em;
}

/* Base Animations & Keyframes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(161, 27, 93, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(161, 27, 93, 0); }
    100% { box-shadow: 0 0 0 0 rgba(161, 27, 93, 0); }
}

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

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism Header */
header {
    background: rgba(255, 255, 255, 0.98) !important; /* Solidified for perfect logo blending */
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth) !important;
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

header.sticky {
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 8px 0;
    box-shadow: var(--shadow-md) !important;
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.05);
}

#scroll-progress {
    height: 100%;
    width: 0%;
    background: var(--primary-gradient);
    box-shadow: 0 0 10px var(--primary-glow);
    transition: width 0.1s ease;
}

/* Logo Pulse Animation */
#logo a img {
    transition: var(--transition-bounce);
}

#logo:hover a img {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 5px 15px rgba(161, 27, 93, 0.2));
}

/* Header CTA Button */
.nav-cta {
    background: var(--primary-gradient) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 13px !important;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px var(--primary-glow) !important;
    transition: var(--transition-bounce) !important;
    margin-left: 20px;
    border: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px var(--primary-glow) !important;
    color: #fff !important;
}

.nav-cta i {
    margin-right: 8px;
    font-size: 16px;
}

/* Modern Navigation Styling */
.main-menu > ul {
    display: flex;
    align-items: center;
    margin: 0;
}

.main-menu > ul > li > a {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    letter-spacing: 0.8px !important; /* Increased for luxury feel */
    color: var(--secondary) !important;
    padding: 10px 15px !important;
    position: relative;
    transition: var(--transition-smooth);
    text-shadow: none;
}

header.sticky .main-menu > ul > li > a {
    text-shadow: none;
}

.main-menu > ul > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 15px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: var(--transition-bounce);
}

/* Updated Nav CTA - Luxury Edition */
.nav-cta {
    background: var(--primary-gradient) !important;
    color: white !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 11px !important;
    letter-spacing: 2px;
    box-shadow: 0 10px 25px var(--primary-glow) !important;
    transition: var(--transition-bounce) !important;
    margin-left: 25px;
    border: 1px solid rgba(255,255,255,0.2) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: ctaLuxuryPulse 4s infinite; /* Slower, more confident pulse */
}

@keyframes ctaLuxuryPulse {
    0% { transform: scale(1); box-shadow: 0 8px 20px var(--primary-glow); }
    50% { transform: scale(1.02); box-shadow: 0 18px 45px var(--primary-glow); } /* More profound glow */
    100% { transform: scale(1); box-shadow: 0 8px 20px var(--primary-glow); }
}

.main-menu ul li:hover > ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.main-menu ul ul li a {
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 10px 25px !important;
    color: var(--text-main) !important;
    transition: var(--transition-smooth) !important;
}

.main-menu ul ul li:hover > a {
    padding-left: 32px !important;
    color: var(--primary) !important;
    background: rgba(161, 27, 93, 0.05) !important;
}

.main-menu li.submenu > a i {
    transition: transform 0.4s ease;
    display: inline-block;
}

.main-menu li.submenu:hover > a i {
    transform: rotate(180deg);
}/* Premium Footer Modernization */
footer {
    background: rgba(10, 10, 15, 0.98) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 100px 0 60px;
    color: #fff;
    position: relative;
    border-top: 2px solid transparent;
    background-image: linear-gradient(rgba(10, 10, 15, 0.98), rgba(10, 10, 15, 0.98)), 
                      linear-gradient(270deg, #a11b5d, #4f46e5);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

footer h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-magenta);
    border-radius: 2px;
}

/* Footer Link Animations */
.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-magenta);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

/* Premium Vision Cards */
.vision-intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: rgba(10, 10, 15, 0.8);
    font-weight: 500;
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.vision-card-premium {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    transition: var(--transition-bounce);
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.vision-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(161, 27, 93, 0.2);
}

.vision-card-premium .icon-container {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: rgba(161, 27, 93, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-magenta);
}

.vision-card-premium h3 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1b4b;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.vision-card-premium p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
}

@media (max-width: 768px) {
    .vision-card-premium {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
        align-items: center;
    }
    
    .vision-card-premium .icon-container {
        margin-bottom: 20px;
    }
}

/* Newsletter Section */
.home_feat_1_box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--glass);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition-bounce);
    position: relative;
    z-index: 1;
}

.home_feat_1_box img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    /* Subtle hover zoom */
}

.home_feat_1_box:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    z-index: 2;
}

.home_feat_1_box:hover img {
    transform: scale(1.08);
}

.short_info {
    background: linear-gradient(to top, rgba(26, 27, 75, 0.9) 0%, rgba(26, 27, 75, 0) 100%) !important;
    padding-bottom: 25px !important;
    transition: padding 0.4s ease;
}

.home_feat_1_box:hover .short_info {
    padding-bottom: 35px !important;
}

.short_info h3 {
    font-size: 22px;
    font-weight: 700;
}

/* =========================================================================
   Mobile & Tablet Modern Header Adjustments
   ========================================================================= */
@media (max-width: 991px) {
    header {
        background: rgba(255, 255, 255, 0.9) !important;
        padding: 10px 0 !important;
    }

    #logo {
        display: flex;
        align-items: center;
        height: 50px;
    }

    #logo img {
        max-height: 40px !important;
    }

    /* Mobile Toggle Makeover */
    .cmn-toggle-switch {
        background: var(--primary-gradient) !important;
        width: 45px !important;
        height: 45px !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        float: right;
        margin-top: 2px !important;
        box-shadow: 0 4px 12px var(--primary-glow);
        border: none !important;
    }

    .cmn-toggle-switch span {
        margin: 0 !important;
        background: #fff !important;
    }

    .cmn-toggle-switch span::before,
    .cmn-toggle-switch span::after {
        background: #fff !important;
    }

    /* Mobile Menu Glassmorphic Slide-in */
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 10000;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        display: block !important;
        overflow-y: auto;
    }

    .main-menu.show {
        right: 0;
    }

    .main-menu ul {
        display: block !important;
        padding: 80px 20px 30px !important;
    }

    .main-menu ul li {
        width: 100% !important;
        margin: 0 0 15px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 5px;
    }

    .main-menu ul li a {
        padding: 10px 0 !important;
        font-size: 16px !important;
    }

    .main-menu ul li a::after {
        display: none;
    }

    /* Submenu on Mobile */
    .main-menu ul ul {
        position: static !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: rgba(0, 0, 0, 0.03) !important;
        margin-top: 10px !important;
        box-shadow: none !important;
        border-top: none !important;
    }

    .main-menu ul ul.show_normal {
        display: block !important;
    }

    .main-menu #header_menu {
        padding: 20px;
        background: #f8fafc;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    #close_in {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 28px;
        color: var(--secondary);
    }

    /* Mobile CTA */
    .nav-cta {
        margin: 20px 0 !important;
        width: 100%;
        font-size: 14px !important;
    }
}

/* Featured Sections & Cards */
.message-card, .box_feat_home {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
    height: 100%;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.message-card::before, .box_feat_home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.message-card:hover, .box_feat_home:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.message-card:hover::before, .box_feat_home:hover::before {
    transform: scaleX(1);
}

.message-card h2, .box_feat_home h3 {
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.message-card h2::after, .box_feat_home h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--accent);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.message-card:hover h2::after, .box_feat_home:hover h3::after {
    width: 80px;
}

/* Footer Modern Enhancements */
footer {
    background: linear-gradient(to bottom, #1a1b4b, #11112b) !important;
    padding: 80px 0 40px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    box-shadow: 0 0 15px var(--primary-glow);
}

footer h4 {
    border-bottom: none !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 25px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

#contacts_footer {
    padding-left: 0;
    list-style: none;
}

#contacts_footer li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

#contacts_footer li i {
    font-size: 20px;
    color: var(--primary);
    margin-right: 15px;
    margin-top: 3px;
    transition: var(--transition-bounce);
}

#contacts_footer li:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent);
}

#contacts_footer a {
    color: inherit;
    text-decoration: none;
    background: linear-gradient(white, white) no-repeat 0 100%;
    background-size: 0 1px;
    transition: background-size 0.4s ease;
}

#contacts_footer a:hover {
    background-size: 100% 1px;
    color: #fff;
}

#map_footer {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
}

#map_footer:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}

#social_footer {
    padding-left: 0;
    margin-bottom: 30px;
}

#social_footer li {
    display: inline-block;
    margin-left: 15px;
}

#social_footer li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#social_footer li a:hover {
    background: var(--primary-gradient);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 20px var(--primary-glow);
    border-color: transparent;
}

#logo_footer img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

#logo_footer:hover img {
    opacity: 1;
    transform: scale(1.05);
}

#copy {
    background: #0d0d21;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copy-text {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Footer entry animation helper */
@keyframes footerEntrance {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-animate {
    animation: footerEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Premium Scroll-to-Top with Progress Circle */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(161, 27, 93, 0.1);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.8);
    transition: var(--transition-bounce);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'fontello';
    content: '\e80e'; /* Up arrow from your icon font */
    text-align: center;
    line-height: 50px;
    width: 50px;
    height: 50px;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 24px;
    z-index: 1;
    transition: var(--transition-smooth);
}

/* Fallback if fontello e80e is missing */
.progress-wrap:empty::after {
    content: '↑';
    font-family: sans-serif;
    font-weight: bold;
}

.progress-wrap:hover::after {
    color: var(--accent);
    transform: translateY(-3px);
}

.progress-wrap svg.progress-circle path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
    box-sizing: border-box;
    transition: var(--transition-smooth);
}

.progress-wrap:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px var(--primary-glow);
}

.scroll-percent-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    opacity: 1;
    transition: var(--transition-smooth);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'fontello';
    content: '\e80e'; /* Up arrow */
    text-align: center;
    line-height: 50px;
    width: 50px;
    height: 50px;
    left: 0;
    top: -15px; /* Move arrow up slightly to make room for percentage */
    color: var(--primary);
    font-size: 18px;
    z-index: 1;
    transition: var(--transition-bounce);
    opacity: 0.6;
}

.progress-wrap:hover::after {
    color: var(--accent);
    transform: translateY(-5px);
    opacity: 1;
}

.progress-wrap:hover .scroll-percent-text {
    color: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Enhanced Visitor Counter Badge */
.visitor-stats-wrapper {
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
}

.visitor-counter-enhanced {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px 20px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.visitor-counter-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--primary));
    animation: rotate-glow 6s linear infinite;
    opacity: 0.1;
    z-index: 0;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.visitor-counter-enhanced:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(161, 27, 93, 0.4);
    box-shadow: 0 15px 40px rgba(161, 27, 93, 0.15);
}

.status-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.pulse-dot-premium {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
}

.pulse-dot-premium::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #10b981;
    border-radius: 50%;
    animation: pulse-ring 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    opacity: 0.5;
}

@keyframes pulse-ring {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

.status-text {
    font-size: 10px;
    font-weight: 800;
    color: #10b981;
    letter-spacing: 2px;
}

.stats-content {
    position: relative;
    z-index: 1;
}

.stats-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.visitor-count-number-glow {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: -1px;
    line-height: 1;
}
/* Custom Modals with Glassmorphism */
.modal-content {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.form-white {
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: var(--radius-md) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 12px 20px !important;
    transition: var(--transition-smooth) !important;
}

.form-white:focus {
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(161, 27, 93, 0.1) !important;
    border-color: var(--primary) !important;
}

/* Video Container & Images */
.video_container, .img-responsive {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* Add subtle pulsing to main action areas */
.pulse-anim {
    animation: pulseGlow 2s infinite;
}

/* Icon Container Animations */
.box_feat_home i {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--primary);
    font-size: 40px;
    margin-bottom: 15px;
}

.box_feat_home:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent);
}

/* Custom Scrollbar - Premium Edition */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
    border: 3px solid #f1f5f9;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #6d1140 0%, #a11b5d 100%);
}

/* Gallery Premium Styling */
.magnific-gallery {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.magnific-gallery li {
    margin: 0 !important;
    width: 100% !important;
}

.magnific-gallery figure {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 0;
    background: var(--secondary);
    transition: var(--transition-bounce);
    aspect-ratio: 4/3;
    display: block;
    height: 100%;
}

.magnific-gallery figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    display: block;
}

.magnific-gallery figure:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.magnific-gallery figure:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.magnific-gallery figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient(to top, rgba(161, 27, 93, 0.85), rgba(26, 27, 75, 0.4));
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.magnific-gallery figure:hover figcaption {
    opacity: 1;
}

.magnific-gallery .caption-content {
    transform: translateY(25px);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.magnific-gallery figure:hover .caption-content {
    transform: translateY(0);
}

.magnific-gallery .caption-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: var(--glass);
    border-radius: 50%;
    color: var(--primary);
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: var(--transition-bounce);
    text-decoration: none;
}

.magnific-gallery .caption-content a:hover {
    background: #fff;
    color: var(--accent);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
}

/* =========================================================================
   Modern Reveal Animation System (Intersection Observer)
   ========================================================================= */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-up { transform: translateY(50px); }
.reveal-down { transform: translateY(-50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.9); }

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

/* Delayed reveals for staggered effects */
.d-100 { transition-delay: 100ms; }
.d-200 { transition-delay: 200ms; }
.d-300 { transition-delay: 300ms; }
.d-400 { transition-delay: 400ms; }
.d-500 { transition-delay: 500ms; }

/* =========================================================================
   Enhanced Modern Index Page Component Styles
   ========================================================================= */

/* Glassmorphism Cards Refined */
.message-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    padding: 50px 40px !important;
    position: relative;
    z-index: 1;
}

.message-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.5), transparent, rgba(161,27,93,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Section Titles with modern underline */
.main_title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.main_title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.main_title p {
    color: var(--text-muted);
    font-weight: 500;
}

/* Core Pillars Grid Staggered Hover */
.feat_grid_item {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.4) 100%) !important;
}

.feat_grid_item:hover i {
    animation: rotateScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes rotateScale {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.25) rotate(10deg); }
    100% { transform: scale(1.2) rotate(5deg); }
}

/* Video Container Floating Glow */
.video_container {
    transition: var(--transition-bounce);
    cursor: pointer;
}

.video_container:hover {
    transform: scale(1.01);
    box-shadow: 0 50px 110px rgba(161, 27, 93, 0.25);
    border-color: var(--primary) !important;
}

/* Newsletter Shimmer Effect */
.newsletter-premium {
    overflow: hidden;
}

.newsletter-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: moveGlow 10s infinite linear;
    pointer-events: none;
}

@keyframes moveGlow {
    0% { transform: translate(-30%, -30%); }
    50% { transform: translate(30%, 30%); }
    100% { transform: translate(-30%, -30%); }
}

.btn-subscribe {
    position: relative;
    overflow: hidden;
}

.btn-subscribe::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(30deg);
    transition: 0.5s;
}

.btn-subscribe:hover::after {
    left: 150%;
    transition: 0.8s;
}


/* ==========================================================================
   PREMIUM CARDS (Features & Clubs) - REFINED
   ========================================================================== */
.feat_grid_item {
    background: rgba(255, 255, 255, 0.05); /* Lighter base for better glass visibility */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 35px; /* More breathable padding */
    border-radius: 40px; /* Softer corners for modern feel */
    height: 100%;
    margin-bottom: 30px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Glass Inner Glow */
.feat_grid_item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.feat_grid_item > * {
    position: relative;
    z-index: 1;
}

.feat_grid_item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(161, 27, 93, 0.08); /* More subtle base */
    border: 1px solid rgba(161, 27, 93, 0.15);
    border-radius: 24px;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 30px;
    transition: all 0.5s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    animation: floatIcon 4s ease-in-out infinite;
}

.feat_grid_item h3 {
    font-size: 22px; /* Slightly larger heading */
    font-weight: 800;
    margin-bottom: 15px;
    
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.feat_grid_item p {
    font-size: 16px;
    line-height: 1.7;
    
    margin-bottom: 0;
    font-weight: 400;
}

/* EXTREME HOVER EFFECT */
.feat_grid_item:hover {
    transform: translateY(-20px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 20px rgba(161, 27, 93, 0.2);
}

.feat_grid_item:hover i {
    transform: scale(1.15) rotate(5deg) translateY(-5px);
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 20px 40px rgba(161, 27, 93, 0.4);
    animation-play-state: paused; /* Pause floating while interacting */
}

.feat_grid_item:hover h3 {
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Float Animation Fix */
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Staggered Floating Delays */
.staggered-grid > div:nth-child(2n) i { animation-delay: 0.5s; }
.staggered-grid > div:nth-child(3n) i { animation-delay: 1s; }

/* Grid Container Consistency */
.staggered-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* ALL CARDS SAME HEIGHT */
}
.staggered-grid > div {
    display: flex;
    margin-bottom: 30px;
}

/* ==========================================================================
   PREMIUM SUBMENU ANIMATIONS & STYLING (OVERRIDING MENU.CSS)
   ========================================================================== */

@media (min-width: 992px) {
    /* Base Overrides */
    .main-menu ul ul {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(161, 27, 93, 0.04) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.6) !important;
        padding: 10px 0 !important;
        min-width: 260px !important;
        width: max-content !important;
        
        top: 100% !important;
        left: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(15px) !important;
        transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), 
                    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                    visibility 0.3s !important;
        display: block !important;
    }

    /* Primary Dropdown Hover */
    .main-menu ul li:hover > ul {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Nested Dropdown Overrides */
    .main-menu ul ul ul {
        top: 0 !important;
        left: 100% !important;
        transform: translateX(15px) !important;
        margin-left: 2px !important;
    }

    /* Nested Dropdown Hover */
    .main-menu ul ul li:hover > ul {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Submenu Items Line */
    .main-menu ul ul li {
        border-bottom: 1px solid rgba(0,0,0,0.03) !important;
    }
    
    .main-menu ul ul li:last-child {
        border-bottom: none !important;
    }

    /* Submenu Links */
    .main-menu ul ul li > a {
        font-family: 'Outfit', sans-serif !important;
        font-size: 14.5px !important;
        font-weight: 500 !important;
        color: #4a5568 !important;
        padding: 12px 22px !important;
        text-transform: none !important;
        position: relative !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        line-height: 1.4 !important;
    }

    /* Link Hover Effects */
    .main-menu ul ul li > a:hover {
        color: var(--primary-magenta, #A11B5D) !important;
        background: linear-gradient(90deg, rgba(161, 27, 93, 0.04) 0%, rgba(255,255,255,0) 100%) !important;
        padding-left: 32px !important;
    }

    /* Animated Dot */
    .main-menu ul ul li > a::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%) scale(0);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: var(--primary-magenta, #A11B5D);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .main-menu ul ul li > a:hover::before {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    /* Nested Chevron */
    .main-menu ul ul li.submenu > a::after {
        content: '›';
        font-family: Arial, sans-serif;
        font-size: 20px;
        line-height: 0;
        color: #a0aec0;
        transform: translateY(-1px);
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .main-menu ul ul li.submenu:hover > a::after {
        color: var(--primary-magenta, #A11B5D);
        transform: translateX(4px) translateY(-1px);
    }
}
