/* Custom Styles for Pinakine Liquidity */

:root {
    /* Pinakine Brand Colors */
    --primary-blue: #16257E;
    --gradient-blue-1: #1D4DA8;
    --gradient-blue-2: #0F91D1;
    --deep-blue: #0B1A65;
    --accent-gold: #C28A1A;
    
    /* Neutrals */
    --white: #FFFFFF;
    --light-gray: #F2F4F7;
    --dark-gray: #202020;
    --black: #000000;
    
    /* Legacy variables for compatibility */
    --gold-accent: #C28A1A;
    --dark-navy: #0B1A65;
    --soft-light-bg: #F2F4F7;
    --light-blue: #F2F4F7;
    --blue-tint: #F2F4F7;
    --purple-pink: #F2F4F7;
    --purple-pink-dark: #F2F4F7;
    --dark-button: #16257E;
    --section-bg: #F2F4F7;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    padding-top: 76px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    background-attachment: fixed;
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    min-height: 80px;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
    display: flex;
    align-items: center;
}

/* Logo Styling - Consistent across all pages */
.navbar-brand img,
img[src*="logo.png"],
img[alt*="Pinakine"] {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    background: transparent !important;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    transform: none !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Footer logo - same styling as navbar */
footer img[src*="logo.png"],
footer img[alt*="Pinakine"],
.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    background: transparent !important;
    display: block;
}

/* Navbar Links */
.nav-link {
    font-weight: 500;
    color: var(--dark-navy) !important;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

/* Dropdown Menu */
.dropdown-menu {
    border: 1px solid rgba(31, 60, 136, 0.1);
    box-shadow: 0 10px 30px rgba(31, 60, 136, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    background: linear-gradient(135deg, #FFFFFF, var(--light-blue));
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    color: var(--dark-navy);
}

.dropdown-item:hover {
    background-color: var(--primary-blue);
    color: white;
    padding-left: 2rem;
}

.dropdown-item.active {
    background-color: var(--primary-blue);
    color: white;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Navbar Buttons */
.navbar .btn {
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.navbar .btn-primary {
    background: var(--primary-blue);
    border: none;
    box-shadow: 0 4px 15px rgba(22, 37, 126, 0.3);
}

.navbar .btn-primary:hover {
    background: linear-gradient(135deg, var(--gradient-blue-1), var(--gradient-blue-2));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 37, 126, 0.4);
}

.navbar .btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.navbar .btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 60, 136, 0.3);
}

/* Mobile Menu Improvements */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    /* Mobile Menu Container - Full Screen Style */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #F8FAFC 0%, #F0F4F9 100%);
        margin-top: 0;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        z-index: 9999;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
    }
    
    /* Mobile Menu Header - Dark Blue */
    .mobile-menu-header {
        position: sticky;
        top: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
        color: white;
        padding: 0;
        z-index: 10001;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin: 0;
        border: none;
    }
    
    /* Logo Section in Mobile Menu Header */
    .mobile-menu-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem 1.5rem 1rem 1.5rem;
        background: #FFFFFF;
        border-bottom: 1px solid rgba(31, 60, 136, 0.1);
    }
    
    .mobile-menu-logo img {
        height: 50px;
        width: auto;
        object-fit: contain;
        filter: none;
    }
    
    /* Menu Title and Close Button Row */
    .mobile-menu-title-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        font-size: 1.25rem;
        font-weight: 600;
    }
    
    /* Close Button in Header */
    .mobile-menu-close {
        background: transparent;
        border: none;
        color: white;
        font-size: 1.75rem;
        cursor: pointer;
        padding: 0;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        transition: all 0.2s ease;
        line-height: 1;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: rotate(90deg);
    }
    
    /* Menu Items Container - iOS Style */
    .navbar-nav {
        padding: 0.75rem 1rem;
        background: linear-gradient(135deg, #F8FAFC 0%, #F0F4F9 100%);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Section Separator for Menu Groups */
    .navbar-nav::after {
        content: '';
        display: block;
        height: 0.5rem;
        width: 100%;
    }
    
    /* iOS Style Full-Width Button */
    .nav-item {
        width: 100%;
        margin: 0;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 52px;
        padding: 0.875rem 1.25rem !important;
        margin: 0;
        border: none;
        border-radius: 12px;
        color: var(--primary-blue) !important;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.15s ease;
        background: #FFFFFF;
        position: relative;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        -webkit-tap-highlight-color: rgba(31, 60, 136, 0.1);
        touch-action: manipulation;
        overflow: hidden;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(31, 60, 136, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.4s ease, height 0.4s ease, opacity 0.3s ease;
        pointer-events: none;
        z-index: 0;
        opacity: 0;
    }
    
    .nav-link:active::after {
        width: 300px;
        height: 300px;
        opacity: 1;
    }
    
    /* Menu Item Content Wrapper */
    .nav-link > *:not(.nav-link-icon):not(.nav-link-arrow) {
        flex: 1;
        position: relative;
        z-index: 1;
    }
    
    /* Menu Item Icons (if using icons) */
    .nav-link i,
    .nav-link .bi,
    .nav-link-icon {
        color: var(--primary-blue);
        margin-right: 0.75rem;
        font-size: 1.25rem;
        width: 24px;
        text-align: center;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }
    
    /* Arrow Icon for Menu Items - iOS Style */
    .nav-link::before {
        content: '›';
        position: absolute;
        right: 1.25rem;
        color: rgba(31, 60, 136, 0.4);
        font-size: 1.25rem;
        font-weight: 300;
        transition: all 0.2s ease;
        flex-shrink: 0;
        z-index: 1;
    }
    
    .nav-link:hover::before,
    .nav-link:active::before {
        color: var(--primary-blue);
        transform: translateX(3px);
    }
    
    /* iOS Style Touch Feedback */
    .nav-link:hover {
        background: rgba(31, 60, 136, 0.05);
        color: var(--primary-blue) !important;
        transform: scale(0.98);
    }
    
    .nav-link:active {
        background: rgba(31, 60, 136, 0.15) !important;
        color: var(--primary-blue) !important;
        transform: scale(0.97);
    }
    
    /* Active Nav Link - More Visible */
    .nav-link.active {
        background: rgba(31, 60, 136, 0.15) !important;
        color: var(--primary-blue) !important;
        font-weight: 600;
        border-left: 3px solid var(--primary-blue);
    }
    
    /* Remove border from last child */
    .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    /* Mobile Dropdown Menu Styles */
    .dropdown {
        position: relative;
    }
    
    .dropdown-toggle {
        cursor: pointer;
        position: relative;
        user-select: none;
    }
    
    /* Remove default Bootstrap arrow */
    .dropdown-toggle::after {
        display: none !important;
    }
    
    /* Custom arrow for dropdown - iOS Style */
    .dropdown-toggle::before {
        content: '›';
        position: absolute;
        right: 1.25rem;
        color: rgba(31, 60, 136, 0.4);
        font-size: 1.25rem;
        font-weight: 300;
        transition: all 0.3s ease;
    }
    
    .dropdown-toggle[aria-expanded="true"]::before {
        color: var(--primary-blue);
        transform: rotate(90deg);
    }
    
    .dropdown-toggle:hover::before,
    .dropdown-toggle:active::before {
        color: var(--primary-blue);
    }
    
    /* Prevent Bootstrap dropdown positioning on mobile */
    .dropdown-toggle[data-bs-toggle="dropdown"] {
        pointer-events: auto;
    }
    
    /* iOS Style Dropdown Menu */
    .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin: 0.5rem 0 0 0 !important;
        margin-left: 0 !important;
        margin-bottom: 0;
        box-shadow: none !important;
        border: none !important;
        border-radius: 12px !important;
        padding: 0.5rem !important;
        background: #FFFFFF !important;
        display: block !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }
    
    .dropdown-menu.show,
    .dropdown-menu.mobile-submenu-open {
        max-height: 2000px !important;
        padding: 0.5rem !important;
        margin-top: 0.5rem !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* iOS Style Dropdown Items - Full Width Buttons */
    .dropdown-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 0.875rem 1.25rem !important;
        margin: 0 0 0.25rem 0 !important;
        border: none;
        border-radius: 10px;
        color: var(--primary-blue) !important;
        cursor: pointer !important;
        position: relative;
        -webkit-tap-highlight-color: rgba(31, 60, 136, 0.1);
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
        transition: all 0.15s ease;
        font-size: 0.95rem;
        font-weight: 500;
        text-decoration: none;
        background: transparent;
        overflow: hidden;
    }
    
    .dropdown-item:last-child {
        margin-bottom: 0 !important;
    }
    
    /* iOS Touch Fill Effect for Dropdown Items */
    .dropdown-item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(31, 60, 136, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.4s ease, height 0.4s ease, opacity 0.3s ease;
        pointer-events: none;
        z-index: 0;
        opacity: 0;
    }
    
    .dropdown-item:active::before {
        width: 300px;
        height: 300px;
        opacity: 1;
    }
    
    /* Arrow for dropdown items - iOS Style */
    .dropdown-item::after {
        content: '›';
        position: absolute;
        right: 1.25rem;
        color: rgba(31, 60, 136, 0.4);
        font-size: 1.25rem;
        font-weight: 300;
        transition: all 0.2s ease;
        flex-shrink: 0;
        z-index: 1;
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus {
        background: rgba(31, 60, 136, 0.05) !important;
        color: var(--primary-blue) !important;
        transform: scale(0.98);
    }
    
    .dropdown-item:hover::after,
    .dropdown-item:focus::after {
        color: var(--primary-blue);
        transform: translateX(3px);
    }
    
    .dropdown-item:active {
        background: rgba(31, 60, 136, 0.15) !important;
        color: var(--primary-blue) !important;
        transform: scale(0.97);
    }
    
    /* Active Dropdown Item - More Visible */
    .dropdown-item.active {
        background: rgba(31, 60, 136, 0.15) !important;
        color: var(--primary-blue) !important;
        font-weight: 600;
        border-left: 3px solid var(--primary-blue);
    }
    
    .dropdown-item > * {
        position: relative;
        z-index: 1;
    }
    
    /* iOS Style Action Buttons Container */
    .navbar-nav .nav-item .btn {
        margin-top: 0.75rem;
    }
    
    .navbar-nav .nav-item:first-child .btn {
        margin-top: 0;
    }
    
    /* Mobile Menu Buttons - iOS Style Full Width */
    .navbar .btn {
        width: 100%;
        min-height: 52px;
        margin: 0.5rem 0;
        padding: 0.875rem 1.5rem;
        font-weight: 600;
        font-size: 1rem;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.15s ease;
        -webkit-tap-highlight-color: rgba(31, 60, 136, 0.1);
        touch-action: manipulation;
    }
    
    .navbar .btn-primary {
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
        border: none;
        color: white;
        box-shadow: 0 2px 8px rgba(31, 60, 136, 0.2);
    }
    
    .navbar .btn-primary:hover {
        transform: scale(0.98);
        box-shadow: 0 2px 12px rgba(31, 60, 136, 0.3);
    }
    
    .navbar .btn-primary:active {
        transform: scale(0.96);
    }
    
    .navbar .btn-outline-primary {
        border: 2px solid var(--primary-blue);
        color: var(--primary-blue);
        background: #FFFFFF;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
    
    .navbar .btn-outline-primary:hover {
        background: var(--primary-blue);
        color: white;
        transform: scale(0.98);
    }
    
    .navbar .btn-outline-primary:active {
        transform: scale(0.96);
    }
    
    /* Button Group Container - iOS Style */
    .navbar-nav .btn-group-container {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.75rem;
        padding: 0;
    }
    
    /* Group buttons together - iOS Style */
    .navbar-nav .nav-item .btn-primary + .btn-outline-primary,
    .navbar-nav .nav-item .btn-outline-primary + .btn-primary {
        margin-top: 0.5rem;
    }
    
    /* Button container spacing */
    .navbar-nav .nav-item:last-child {
        margin-bottom: 1rem;
    }
    
    /* Overlay when menu is open */
    .navbar-collapse.show ~ .mobile-menu-overlay,
    body.mobile-menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* Prevent body scroll when menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 875px;
    max-height: 1125px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.85) 0%, rgba(2, 21, 38, 0.8) 50%, rgba(31, 60, 136, 0.85) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Hero Swiper */
.hero-swiper {
    width: 100%;
    height: 100%;
    height: 100vh;
    min-height: 900px;
    max-height: 1150px;
}

.hero-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Gradient Text */
.hero-gradient-text {
    background: linear-gradient(to right, var(--gold-accent) 0%, #dcc8b2 50%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shine Button Effect */
.shine-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.shine-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.shine-button:hover::before {
    left: 100%;
}

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
    bottom: 30px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--gold-accent);
    width: 30px;
    border-radius: 6px;
}

/* Hero Typography - Consistent Sizing */
.hero-title,
.hero-title-large,
.hero-swiper h1,
.hero-swiper h2,
.hero-swiper h3,
.hero-swiper .hero-title,
.hero-swiper .hero-title-large {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    padding: 0 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.hero-subtitle-small {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

/* Tablet and up */
@media (min-width: 768px) {
    .hero-title,
    .hero-title-large,
    .hero-swiper h1,
    .hero-swiper h2,
    .hero-swiper h3,
    .hero-swiper .hero-title,
    .hero-swiper .hero-title-large {
        font-size: 2.25rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
        padding: 0 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
        line-height: 1.4;
}

.hero-subtitle-small {
    font-size: 1rem;
        line-height: 1.4;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .hero-title,
    .hero-title-large,
    .hero-swiper h1,
    .hero-swiper h2,
    .hero-swiper h3,
    .hero-swiper .hero-title,
    .hero-swiper .hero-title-large {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        padding: 0 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-subtitle-small {
        font-size: 1.125rem;
        line-height: 1.4;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .hero-title,
    .hero-title-large,
    .hero-swiper h1,
    .hero-swiper h2,
    .hero-swiper h3,
    .hero-swiper .hero-title,
    .hero-swiper .hero-title-large {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        padding: 0 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
        line-height: 1.4;
    }
    
    .hero-subtitle-small {
        font-size: 1.25rem;
        line-height: 1.4;
    }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
    .hero-title,
    .hero-title-large,
    .hero-swiper h1,
    .hero-swiper h2,
    .hero-swiper h3,
    .hero-swiper .hero-title,
    .hero-swiper .hero-title-large {
        font-size: 4rem;
        line-height: 1.2;
        padding: 0 5rem;
    }
}

/* Mobile Specific Adjustments */
@media (max-width: 767px) {
    .hero-title,
    .hero-title-large,
    .hero-swiper h1,
    .hero-swiper h2,
    .hero-swiper h3,
    .hero-swiper .hero-title,
    .hero-swiper .hero-title-large {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        padding: 0 1rem !important;
        margin-bottom: 1rem !important;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        padding: 0 1.5rem;
        line-height: 1.4;
    }
    
    .hero-subtitle-small {
        font-size: 0.8rem !important;
        padding: 0 1.5rem;
        line-height: 1.4;
    }
    
    /* Ensure text doesn't overflow on mobile */
    .hero-swiper .swiper-slide {
        padding: 1rem 0;
    }
    
    .hero-swiper .swiper-slide > div {
        width: 100%;
        max-width: 100%;
    }
    
    /* Prevent text overflow */
    .hero-swiper .swiper-slide h1,
    .hero-swiper .swiper-slide h2,
    .hero-swiper .swiper-slide h3 {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title,
    .hero-title-large,
    .hero-swiper h1,
    .hero-swiper h2,
    .hero-swiper h3,
    .hero-swiper .hero-title,
    .hero-swiper .hero-title-large {
        font-size: 1.25rem !important;
        line-height: 1.35 !important;
        padding: 0 0.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.875rem !important;
        padding: 0 1rem;
    }
    
    .hero-subtitle-small {
        font-size: 0.75rem !important;
        padding: 0 1rem;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 25%;
    right: 25%;
    width: 300px;
    height: 300px;
    background: rgba(212, 160, 23, 0.2);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 25%;
    width: 400px;
    height: 400px;
    background: rgba(212, 160, 23, 0.15);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 20px) scale(1.2);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    flex-shrink: 0;
}

/* Price Ticker */
/* TradingView Ticker Container */
.tradingview-ticker-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
    padding: 0;
    z-index: 2;
    border-top: 3px solid var(--gold-accent);
}

/* Force blue background - prevent any color changes */
.tradingview-ticker-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
    z-index: -1;
    pointer-events: none;
}

.tradingview-ticker-container .tradingview-widget-container {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%) !important;
    padding: 15px 0;
    width: 100%;
    height: auto;
    min-height: 50px;
    max-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tradingview-ticker-container .tradingview-widget-container__widget {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%) !important;
    width: 100% !important;
    height: auto !important;
    min-height: 45px;
    max-height: 55px;
    overflow: hidden;
    padding: 0;
}

/* Ensure TradingView widget text is white on hero section background */
.tradingview-ticker-container .tradingview-widget-container__widget * {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
    color: #ffffff !important;
}

.tradingview-ticker-container .tradingview-widget-container__widget span,
.tradingview-ticker-container .tradingview-widget-container__widget div,
.tradingview-ticker-container .tradingview-widget-container__widget a,
.tradingview-ticker-container .tradingview-widget-container__widget p,
.tradingview-ticker-container .tradingview-widget-container__widget strong {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
}

/* Force white color for all symbols and text in TradingView widget */
.tradingview-ticker-container .tradingview-widget-container__widget [class*="symbol"],
.tradingview-ticker-container .tradingview-widget-container__widget [class*="ticker"],
.tradingview-ticker-container .tradingview-widget-container__widget [class*="price"],
.tradingview-ticker-container .tradingview-widget-container__widget [class*="change"],
.tradingview-ticker-container .tradingview-widget-container__widget [class*="title"] {
    color: #ffffff !important;
}

/* Override any colored text (green/red) to white */
.tradingview-ticker-container .tradingview-widget-container__widget [style*="color"],
.tradingview-ticker-container .tradingview-widget-container__widget [class*="positive"],
.tradingview-ticker-container .tradingview-widget-container__widget [class*="negative"],
.tradingview-ticker-container .tradingview-widget-container__widget [class*="up"],
.tradingview-ticker-container .tradingview-widget-container__widget [class*="down"] {
    color: #ffffff !important;
}

.tradingview-ticker-container .tv-widget-container {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
    width: 100%;
    color: #ffffff !important;
}

/* Fix TradingView widget iframe and content - hero section gradient background */
.tradingview-ticker-container iframe {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
    width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    max-height: 55px !important;
    border: none !important;
}

.tradingview-ticker-container .tradingview-widget-container__widget > div {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
    width: 100% !important;
    color: #ffffff !important;
}

/* Override TradingView default styles - force hero section gradient background */
.tradingview-ticker-container [class*="tv-"],
.tradingview-ticker-container [class*="tradingview"],
.tradingview-ticker-container div,
.tradingview-ticker-container span {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
    color: #ffffff !important;
}

/* Force hero section gradient background on all nested elements */
.tradingview-ticker-container * {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
}

/* Prevent any background color changes - override inline styles */
.tradingview-ticker-container [style*="background:"] {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%) !important;
}

.tradingview-ticker-container [style*="background-color:"] {
    background-color: var(--primary-blue) !important;
}

.tradingview-ticker-container [style*="background-color"] {
    background-color: var(--primary-blue) !important;
}

/* Override any black backgrounds from TradingView */
.tradingview-ticker-container [style*="background"],
.tradingview-ticker-container [style*="background-color"] {
    background: var(--primary-blue) !important;
    background-color: var(--primary-blue) !important;
}

/* Ensure iframe content area shows blue - multiple selectors for maximum coverage */
.tradingview-ticker-container iframe[src*="tradingview"],
.tradingview-ticker-container iframe {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
    opacity: 1 !important;
}

/* Ensure widget container maintains blue background */
.tradingview-ticker-container .tradingview-widget-container,
.tradingview-ticker-container .tradingview-widget-container__widget {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 50%, var(--primary-blue) 100%) !important;
    background-color: var(--primary-blue) !important;
    position: relative;
    z-index: 2;
}

/* Hide TradingView copyright - comprehensive hiding */
.tradingview-ticker-container .tradingview-widget-copyright {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

/* Hide any copyright text, links, or trademark that might appear */
.tradingview-ticker-container [class*="copyright"],
.tradingview-ticker-container [class*="trademark"],
.tradingview-ticker-container .blue-text,
.tradingview-ticker-container a[href*="tradingview.com"],
.tradingview-ticker-container a[href*="markets"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

/* Responsive adjustments for TradingView ticker tape widget */
@media (max-width: 768px) {
    .tradingview-ticker-container .tradingview-widget-container {
        padding: 12px 0;
        min-height: 45px;
        max-height: 55px;
    }
    .tradingview-ticker-container .tradingview-widget-container__widget {
        min-height: 40px;
        max-height: 50px;
    }
    .tradingview-ticker-container iframe {
        height: 45px !important;
        min-height: 45px !important;
        max-height: 50px !important;
    }
}

/* Price Ticker Container (Legacy) */
.price-ticker-container {
    background: rgba(21, 38, 70, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    margin-top: auto;
    z-index: 2;
}

.price-ticker {
    display: flex;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    color: white;
    font-size: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-symbol {
    font-weight: 600;
    color: #fff;
}

.ticker-price {
    font-weight: 500;
    color: #fff;
}

.ticker-change {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.ticker-change.positive {
    color: #02C776;
}

.ticker-change.negative {
    color: #FF4D4D;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
    border: 1px solid rgba(31, 60, 136, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31, 60, 136, 0.15) !important;
    border-color: rgba(31, 60, 136, 0.2);
}

/* Accordion */
.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-blue);
    color: white;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* Footer */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-gold) !important;
    text-shadow: 0 0 8px rgba(194, 138, 26, 0.5);
}

/* New Footer Styling - Professional Design */
.footer-new {
    background: #021526 !important;
    color: var(--white);
    position: relative;
}

.footer-brand-text {
    font-size: 1.75rem;
    letter-spacing: 1px;
    color: var(--white);
    font-weight: 700;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    border-radius: 4px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social-icon:hover {
    background: var(--accent-gold);
    color: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 138, 26, 0.4);
}

.footer-heading {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a {
    transition: all 0.3s ease;
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

.footer-contact-icon {
    font-size: 1.25rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.footer-legal-links a {
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-legal-links a:hover::after {
    width: 100%;
}

.footer-legal-links a:hover {
    color: var(--accent-gold) !important;
}

/* Footer Text Colors */
.footer-new .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-new .text-white {
    color: var(--white) !important;
}

.footer-new p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Footer License Section */
.footer-new .bg-dark.bg-opacity-50 {
    background: rgba(22, 37, 126, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-new .bg-dark.bg-opacity-50 .text-warning {
    color: var(--accent-gold) !important;
}

.footer-new .bg-dark.bg-opacity-50 h6 {
    color: var(--white) !important;
    font-weight: 600;
}

.footer-new .bg-dark.bg-opacity-50 .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-brand-text {
        font-size: 1.5rem;
    }
    
    .footer-heading {
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }
    
    .footer-legal-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem !important;
    }
    
    .footer-contact-icon {
        font-size: 1.1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 580px;
        max-height: 730px;
        padding: 80px 0 20px;
    }
    
    .hero-swiper {
        height: auto;
        min-height: 580px;
        max-height: 730px;
    }
    
    .tradingview-ticker-container .tradingview-widget-container {
        padding: 20px 0;
        min-height: 75px;
    }
    
    .tradingview-ticker-container .tradingview-widget-container__widget {
        min-height: 60px;
    }
    
    .tradingview-ticker-container iframe {
        height: 70px !important;
        min-height: 70px !important;
    }
    
    .hero-section::before,
    .hero-section::after {
        width: 200px;
        height: 200px;
    }
    
    .price-ticker {
        animation-duration: 30s;
    }
    
    .ticker-item {
        font-size: 12px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-title-large {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-subtitle-small {
        font-size: 0.875rem !important;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gradient-blue-1), var(--gradient-blue-2));
    border-color: var(--gradient-blue-1);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, var(--gold-accent), #E6B84F);
    border-color: var(--gold-accent);
    color: var(--dark-navy);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #b89014, var(--gold-accent));
    border-color: #b89014;
    color: var(--dark-navy);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

/* Text Colors */
.text-primary {
    color: var(--primary-blue) !important;
}

.text-warning {
    color: var(--accent-gold) !important;
}

/* Icon Animations and Transparency Effects */
.icon-wrapper {
    position: relative;
    display: inline-block;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-blue);
}

/* Checkmark icons in circles - use accent gold */
.icon-circle .bi-check-lg,
.icon-circle .bi-check-circle,
.icon-circle .bi-check-circle-fill {
    color: var(--accent-gold) !important;
}

.icon-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-blue-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.icon-circle:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-blue-1);
    box-shadow: 0 10px 30px rgba(22, 37, 126, 0.3);
    border-color: var(--gradient-blue-1);
}

.icon-circle:hover::before {
    opacity: 1;
}

.icon-animated {
    font-size: 2.5rem;
    color: var(--accent-gold);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Checkmark icons specifically use accent gold */
.bi-check-lg,
.bi-check-circle,
.bi-check-circle-fill {
    color: var(--accent-gold) !important;
}

.icon-circle:hover .icon-animated {
    transform: scale(1.1);
    color: var(--primary-blue);
    filter: drop-shadow(0 0 10px rgba(31, 60, 136, 0.5));
}

/* White Icon Variants for Partner Section */
.icon-circle-white {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.icon-circle-white::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.icon-circle-white:hover {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.3));
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.icon-circle-white:hover::before {
    opacity: 1;
}

.icon-animated-white {
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.icon-circle-white:hover .icon-animated-white {
    transform: scale(1.1);
    color: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Pulse Animation for Icons */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.icon-animated,
.icon-animated-white {
    animation: pulse 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.icon-circle,
.icon-circle-white {
    animation: float-icon 4s ease-in-out infinite;
}

.icon-circle:nth-child(2),
.icon-circle-white:nth-child(2) {
    animation-delay: 0.5s;
}

.icon-circle:nth-child(3),
.icon-circle-white:nth-child(3) {
    animation-delay: 1s;
}

.icon-circle:nth-child(4),
.icon-circle-white:nth-child(4) {
    animation-delay: 1.5s;
}

/* Responsive Icon Sizes */
@media (max-width: 768px) {
    .icon-circle,
    .icon-circle-white {
        width: 80px;
        height: 80px;
    }
    
    .icon-animated,
    .icon-animated-white {
        font-size: 2rem;
    }
}

/* Professional Section Styling */
.section-professional {
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--light-gray);
    color: var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 2px 10px rgba(194, 138, 26, 0.2);
}

.section-badge-white {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.section-title {
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold), var(--primary-blue));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(194, 138, 26, 0.3);
}

.section-subtitle {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 400;
}

/* Card titles use strong blue */
.card-title,
.card h4,
.card h5,
.card h6 {
    color: var(--primary-blue) !important;
}

/* Icons and highlights use accent gold */
.bi,
i[class*="bi-"],
.icon-animated:not(.icon-animated-white),
.icon-circle:not(.icon-circle-white) {
    color: var(--accent-gold) !important;
}

/* Account type headings and special highlights use accent gold */
h3[style*="gold-accent"],
h4[style*="gold-accent"],
.display-5[style*="gold-accent"] {
    color: var(--accent-gold) !important;
}

/* All headings use strong blue (#16257E) for professional global look */
section h1:not(.page-header h1):not(.cta-section h2):not(.hero-title):not(.hero-title-large),
section h2:not(.page-header h1):not(.cta-section h2):not(.hero-title):not(.hero-title-large),
section h3:not(.page-header h1):not(.cta-section h2):not(.hero-title):not(.hero-title-large),
section .display-1:not(.page-header h1):not(.cta-section h2),
section .display-2:not(.page-header h1):not(.cta-section h2),
section .display-3:not(.page-header h1):not(.cta-section h2),
section .display-4:not(.page-header h1):not(.cta-section h2),
section .display-5:not(.page-header h1):not(.cta-section h2),
section .display-6:not(.page-header h1):not(.cta-section h2),
.container h1:not(.page-header h1):not(.cta-section h2):not(.hero-title):not(.hero-title-large),
.container h2:not(.page-header h1):not(.cta-section h2):not(.hero-title):not(.hero-title-large),
.container h3:not(.page-header h1):not(.cta-section h2):not(.hero-title):not(.hero-title-large),
.container .display-1:not(.page-header h1):not(.cta-section h2),
.container .display-2:not(.page-header h1):not(.cta-section h2),
.container .display-3:not(.page-header h1):not(.cta-section h2),
.container .display-4:not(.page-header h1):not(.cta-section h2),
.container .display-5:not(.page-header h1):not(.cta-section h2),
.container .display-6:not(.page-header h1):not(.cta-section h2) {
    color: var(--primary-blue) !important;
}

/* Smaller headings use strong blue */
h4:not(.page-header h1):not(.cta-section h2),
h5:not(.page-header h1):not(.cta-section h2),
h6:not(.page-header h1):not(.cta-section h2) {
    color: var(--primary-blue) !important;
}

.professional-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
    border: 1px solid rgba(31, 60, 136, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(31, 60, 136, 0.08);
}

.professional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--gold-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.professional-card:hover::before {
    transform: scaleX(1);
}

.professional-card:hover {
    border-color: var(--gold-accent);
    box-shadow: 0 15px 40px rgba(31, 60, 136, 0.2) !important;
    transform: translateY(-5px);
    background: linear-gradient(135deg, #FFFFFF 0%, var(--light-blue) 100%);
}

/* Section Pattern for Partner Section */
.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(22, 37, 126, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(194, 138, 26, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced Accordion Styling */
.accordion-item {
    border: 1px solid rgba(31, 60, 136, 0.1);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--gold-accent);
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.15);
}

.accordion-button {
    background: white;
    color: var(--dark-navy);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    color: white;
    box-shadow: 0 2px 10px rgba(22, 37, 126, 0.3);
    border-bottom: 2px solid var(--accent-gold);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 160, 23, 0.25);
    border-color: var(--gold-accent);
}

.accordion-body {
    padding: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--light-blue) 100%);
    color: #495057;
    line-height: 1.8;
}

/* Enhanced Button Styling */
.btn-primary {
    background: var(--primary-blue);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 37, 126, 0.3);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gradient-blue-1), var(--gradient-blue-2));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 37, 126, 0.4);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 60, 136, 0.3);
}

/* Card Title Styling */
.card-title {
    color: var(--dark-navy);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Text Color Enhancements */
.text-primary {
    color: var(--primary-blue) !important;
}

/* Section Background Variations */
.bg-light {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%) !important;
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(31, 60, 136, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 160, 23, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Account Card Styling */
.account-card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.account-card .card-body {
    text-align: left;
}

.account-card h4 {
    color: var(--dark-navy);
    font-size: 1.5rem;
}

.account-params {
    background: linear-gradient(135deg, #F8FAFC 0%, var(--light-blue) 100%);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(31, 60, 136, 0.15);
    box-shadow: 0 2px 8px rgba(31, 60, 136, 0.05);
}

.account-params .border-bottom {
    border-color: rgba(31, 60, 136, 0.1) !important;
}

.account-params strong {
    color: var(--primary-blue);
    font-size: 1rem;
}

.account-params .text-success {
    color: #28a745 !important;
}

.account-benefits {
    padding-left: 0;
}

.account-benefits li {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 400;
}

.account-benefits i {
    font-size: 1rem;
}

.account-card .btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.account-card .btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 60, 136, 0.3);
}

.account-card .btn-primary {
    background: var(--primary-blue);
    border: none;
    color: white;
}

.account-card .btn-primary:hover {
    background: linear-gradient(135deg, var(--gradient-blue-1), var(--gradient-blue-2));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 37, 126, 0.4);
}

.account-card .btn-warning {
    background: linear-gradient(135deg, var(--gold-accent), #e6b84f);
    border: none;
    color: var(--dark-navy);
    font-weight: 600;
}

.account-card .btn-warning:hover {
    background: linear-gradient(135deg, #b89014, var(--gold-accent));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}

/* Featured Card Styling */
.featured-card {
    border: 3px solid var(--accent-gold);
    position: relative;
    box-shadow: 0 10px 40px rgba(194, 138, 26, 0.3), 0 5px 15px rgba(22, 37, 126, 0.15) !important;
    transform: scale(1.02);
    background: linear-gradient(135deg, #ffffff 0%, var(--light-blue) 100%);
}

.featured-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 50px rgba(194, 138, 26, 0.4), 0 8px 20px rgba(22, 37, 126, 0.2) !important;
    border-color: var(--primary-blue);
}

.featured-card::before {
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-blue));
}

/* Page Header Styling - Brand Logo Colors */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 50%, var(--deep-blue) 100%) !important;
    color: white;
    padding: 2.5rem 0 1.5rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(31, 60, 136, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(2, 21, 38, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.15) 0%, rgba(2, 21, 38, 0.2) 100%);
    pointer-events: none;
}

.page-header h1 {
    color: white;
    margin-bottom: 0 !important;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.page-header h1 .bi {
    margin-right: 0.75rem;
}

.page-header .lead {
    color: white;
    margin-bottom: 0 !important;
    margin-top: 0.25rem;
    position: relative;
    z-index: 1;
}

/* CTA Section Styling - Brand Logo Colors */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 50%, var(--deep-blue) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(31, 60, 136, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(2, 21, 38, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.15) 0%, rgba(2, 21, 38, 0.2) 100%);
    pointer-events: none;
}

.cta-section h2,
.cta-section .lead {
    color: white;
    position: relative;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* Responsive Section Styling */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem !important;
    }
    
    .section-badge,
    .section-badge-white {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .professional-card {
        margin-bottom: 1rem;
    }
    
    .featured-card {
        box-shadow: 0 8px 30px rgba(212, 160, 23, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }
    
    .featured-card:hover {
        box-shadow: 0 12px 40px rgba(212, 160, 23, 0.35), 0 6px 15px rgba(0, 0, 0, 0.15) !important;
    }
    
    .account-card .card-body {
        padding: 1.5rem !important;
    }
    
    .account-params {
        padding: 0.75rem;
    }
    
    .account-card h4 {
        font-size: 1.25rem;
    }
    
    .account-card .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   Professional JavaScript Enhancements
   ============================================ */

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold), var(--primary-blue));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(31, 60, 136, 0.5);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
    color: white;
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(31, 60, 136, 0.4);
}

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

.back-to-top:hover {
    background: linear-gradient(135deg, var(--gold-accent), #E6B84F);
    border-color: var(--primary-blue);
    color: var(--dark-navy);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5);
}

.back-to-top i {
    font-size: 1.25rem;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-navy), var(--primary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.2s ease-out;
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

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

.loader-logo {
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
    will-change: transform, opacity;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--gold-accent);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
    will-change: transform;
}

.loader-text {
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Fade-in Animation */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Button Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Card Animations */
.card,
.professional-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover,
.professional-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Parallax Effect */
.hero-video {
    will-change: transform;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 80% !important;
}

/* Number Counter Animation */
[data-count] {
    font-variant-numeric: tabular-nums;
}

/* Lazy Load Images */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[data-src].loaded {
    opacity: 1;
}

/* Enhanced Dropdown Animation */
.dropdown-menu {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Accordion Icon Rotation */
.accordion-button i {
    transition: transform 0.3s ease;
}

/* Section Reveal Animation */
section {
    position: relative;
}

/* Stagger Animation for Cards */
.card:nth-child(1) { transition-delay: 0.1s; }
.card:nth-child(2) { transition-delay: 0.2s; }
.card:nth-child(3) { transition-delay: 0.3s; }
.card:nth-child(4) { transition-delay: 0.4s; }

/* Smooth Navbar Transition */
.navbar {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Icon Animations */
.icon-animated,
.icon-animated-white {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icon-circle:hover .icon-animated,
.icon-circle-white:hover .icon-animated-white {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(5deg); }
}

/* Text Reveal Animation */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading State for Buttons */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-progress {
        height: 2px;
    }
    
    .page-loader {
        padding: 1rem;
        transition: opacity 0.15s ease-out;
    }
    
    .loader-logo {
        margin-bottom: 1rem;
    }
    
    .loader-logo img {
        height: 50px !important;
        width: auto;
    }
    
    .loader-spinner {
        width: 35px;
        height: 35px;
        border-width: 3px;
        margin: 0.5rem auto;
    }
    
    .loader-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    /* Disable heavy animations on mobile for better performance */
    .loader-logo {
        animation: none;
        opacity: 1;
    }
    
    .loader-text {
        animation: none;
        opacity: 0.9;
    }
}

/* Fixed Bottom Bar - Register, Login, WhatsApp, Telegram */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    z-index: 9999;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 2px solid var(--gold-accent);
    will-change: transform, opacity;
}

.bottom-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 70px;
    position: relative;
    flex: 1;
    max-width: 120px;
}

.bottom-bar-btn i {
    font-size: 24px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.bottom-bar-btn span {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.bottom-bar-btn:hover {
    background: rgba(194, 138, 26, 0.2);
    color: var(--accent-gold);
    text-decoration: none;
    transform: translateY(-2px);
}

.bottom-bar-btn:active {
    transform: translateY(0);
    background: rgba(194, 138, 26, 0.3);
}

.bottom-bar-btn:hover i {
    transform: scale(1.1);
}

/* Adjust body padding to account for fixed bottom bar on mobile */
@media (max-width: 768px) {
    body {
        padding-bottom: 75px;
    }
    
    .fixed-bottom-bar {
        padding: 10px 0;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .bottom-bar-btn {
        padding: 6px 8px;
        min-width: 60px;
    }
    
    .bottom-bar-btn i {
        font-size: 20px;
        margin-bottom: 3px;
    }
    
    .bottom-bar-btn span {
        font-size: 10px;
    }
    
    /* Adjust back-to-top button position on mobile */
    .back-to-top {
        bottom: 90px !important;
    }
}

/* Desktop: Full width at bottom - hidden by default, shown via JS when scrolled to bottom */
@media (min-width: 769px) {
    .fixed-bottom-bar {
        display: flex;
        padding: 8px 0;
        justify-content: space-around;
        gap: 0;
        max-width: 100%;
        left: 0;
        right: 0;
        border-radius: 0;
        box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transform: translateY(100%);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }
    
    .fixed-bottom-bar.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .bottom-bar-btn {
        min-width: 120px;
        max-width: 200px;
        padding: 4px 20px;
    }
    
    .bottom-bar-btn i {
        font-size: 20px;
        margin-bottom: 2px;
    }
    
    .bottom-bar-btn span {
        font-size: 11px;
    }
    
    body {
        padding-bottom: 0;
    }
    
    /* Add padding to footer to account for fixed bottom bar so copyright is visible */
    .footer-new {
        padding-bottom: 80px !important;
        margin-bottom: 0 !important;
    }
    
    /* Ensure copyright text row has additional spacing */
    .footer-new .row:last-child {
        padding-bottom: 20px !important;
    }
    
    .back-to-top {
        bottom: 65px !important;
    }
}

/* Form Elements Styling */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
select,
textarea {
    border: 2px solid rgba(31, 60, 136, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 0.25rem rgba(212, 160, 23, 0.25);
    outline: none;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
select:hover,
textarea:hover {
    border-color: var(--primary-blue);
}

/* Form Container Styling */
.form-container,
.registration-form,
.login-form {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--light-blue) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--gold-accent);
    box-shadow: 0 10px 30px rgba(31, 60, 136, 0.15);
    position: relative;
    overflow: hidden;
}

.form-container::before,
.registration-form::before,
.login-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(31, 60, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 160, 23, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.form-container > *,
.registration-form > *,
.login-form > * {
    position: relative;
    z-index: 1;
}

/* Badge Styling */
.badge {
    border-radius: 6px;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue)) !important;
}

.badge.bg-warning {
    background: var(--accent-gold) !important;
    color: var(--deep-blue) !important;
}

.badge.bg-success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
}

/* Table Styling */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: linear-gradient(135deg, var(--light-blue), #FFFFFF);
    transform: scale(1.01);
}

.table tbody td {
    border-color: rgba(31, 60, 136, 0.1);
    padding: 0.75rem 1rem;
}

/* Alert Styling */
.alert {
    border-radius: 8px;
    border: 2px solid;
    padding: 1rem 1.5rem;
}

.alert-primary {
    background: linear-gradient(135deg, var(--light-blue), #FFFFFF);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.alert-warning {
    background: rgba(212, 160, 23, 0.1);
    border-color: var(--gold-accent);
    color: var(--dark-navy);
}

/* Modal Styling */
.modal-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
    color: white;
    border-bottom: 2px solid var(--gold-accent);
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-footer {
    border-top: 1px solid rgba(31, 60, 136, 0.1);
    background: linear-gradient(135deg, #FFFFFF, var(--light-blue));
}

/* Card Header Styling */
.card-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    color: white;
    border-bottom: 2px solid var(--accent-gold);
    font-weight: 600;
    padding: 1rem 1.5rem;
}

/* List Group Styling */
.list-group-item {
    border-color: rgba(31, 60, 136, 0.1);
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background: linear-gradient(135deg, var(--light-blue), #FFFFFF);
    border-color: var(--gold-accent);
    transform: translateX(5px);
}

.list-group-item.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
    border-color: var(--gold-accent);
    color: white;
}

/* Pagination Styling */
.page-link {
    color: var(--primary-blue);
    border-color: rgba(31, 60, 136, 0.2);
    transition: all 0.3s ease;
}

.page-link:hover {
    background: linear-gradient(135deg, var(--light-blue), #FFFFFF);
    border-color: var(--gold-accent);
    color: var(--primary-blue);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
    border-color: var(--gold-accent);
    color: white;
}

/* Breadcrumb Styling */
.breadcrumb {
    background: linear-gradient(135deg, #FFFFFF, var(--light-blue));
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(31, 60, 136, 0.1);
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--gold-accent);
}

.breadcrumb-item.active {
    color: var(--dark-navy);
}

/* Economic Calendar Widget Styles */
#economicCalendarWidget {
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

/* Hide copyright text from economic calendar widget */
.ecw-copyright,
[class*="copyright"],
[class*="ecw-copyright"],
#economicCalendarWidget + .ecw-copyright,
#economicCalendarWidget ~ .ecw-copyright {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

/* Additional Color Enhancements */
.text-muted {
    color: #6c757d !important;
}

.border-primary {
    border-color: var(--primary-blue) !important;
}

.border-warning {
    border-color: var(--gold-accent) !important;
}

.shadow-primary {
    box-shadow: 0 4px 15px rgba(31, 60, 136, 0.3) !important;
}

.shadow-gold {
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3) !important;
}

/* Link Styling */
a {
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-accent) !important;
}

/* Selection Styling */
::selection {
    background: var(--gold-accent);
    color: var(--dark-navy);
}

::-moz-selection {
    background: var(--gold-accent);
    color: var(--dark-navy);
}

