:root {
    --primary: #00174a;
    --accent: #0AC3FF;
    --accent-gradient: linear-gradient(135deg, #0AC3FF 0%, #12CCC4 100%);
    --text-main: #FFFFFF;
    --text-muted: #B0B0B0;
    --bg-dark: #050A18;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(10px);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.3);
}

body.premium-theme {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', 'Outfit', sans-serif;
}

/* Glassmorphism Components */
.glass-card {
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    background: rgba(255, 255, 255, 0.08);
}

/* Hero Section */
.hero-premium {
    position: relative;
    padding: 160px 0 140px;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5, 10, 24, 0.7), rgba(5, 10, 24, 0.8));
    z-index: 0;
}

.hero-premium .container {
    position: relative;
    z-index: 1;
}

.hero-premium h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFF, #0AC3FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-premium .subtext {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 2.5rem;
}

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

.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Section Styling */
.page-content-inner {
    background-image: linear-gradient(rgba(5, 10, 24, 0.85), rgba(5, 10, 24, 0.95)), url('../img/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

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

.section-title-premium {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title-premium::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Buttons */
.btn-premium {
    background: var(--accent-gradient);
    color: white !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(10, 195, 255, 0.2);
}

.btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(10, 195, 255, 0.4);
}

/* Eco-system cards */
.eco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.company-card, .brand-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    transition: 0.3s;
}

.company-logo-box, .brand-logo-box {
    width: 60px;
    height: 60px;
    background: rgba(10, 195, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(10, 195, 255, 0.2);
}

.company-logo-box img, .brand-logo-box img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.company-card:hover .company-logo-box, .brand-card:hover .brand-logo-box {
    background: var(--accent);
}

.company-card:hover .company-logo-box img, .brand-card:hover .brand-logo-box img {
    filter: brightness(0);
    opacity: 1;
}

.brand-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(10, 195, 255, 0.1);
    border: 1px solid rgba(10, 195, 255, 0.2);
    border-radius: 100px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Nav Improvements */
.header-premium {
    background: rgba(5, 10, 24, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link-premium {
    color: var(--text-main) !important;
    font-weight: 500;
    margin: 0 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-link-premium:hover {
    opacity: 1;
    color: var(--accent) !important;
}

/* Global Stats & Pillars */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    font-family: 'Outfit';
    margin-bottom: 5px;
}

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

/* Pillar Cards */
.pillar-card {
    border-left: 4px solid var(--accent);
    padding-left: 25px;
    transition: 0.3s;
}

.pillar-card:hover {
    background: rgba(10, 195, 255, 0.05);
}

/* Tech Focus Highlight */
.tech-focus-container {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 195, 255, 0.05) 50%, transparent 100%);
}

.tech-focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.highlight-card {
    padding: 50px;
    border: 1px solid rgba(10, 195, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.highlight-card h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'Outfit';
}

.highlight-card .accent-icon {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.1;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

@media (max-width: 991px) {
    .tech-focus-grid {
        grid-template-columns: 1fr;
    }
}

/* Marquee / Alliances */
.marquee-container {
    overflow: hidden;
    padding: 40px 0;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin: 80px 0;
}

.marquee-content {
    display: flex;
    gap: 100px;
    animation: scrollMarquee 40s linear infinite;
    white-space: nowrap;
    width: max-content;
}

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

.alliance-logo {
    font-family: 'Outfit';
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    opacity: 0.5;
    transition: 0.3s;
}

.alliance-logo:hover {
    opacity: 1;
    color: var(--accent);
}

/* Global Locations Section */
.locations-map-container {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 40px;
    margin-top: 40px;
}

.map-placeholder-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(10, 195, 255, 0.1));
}

@media (max-width: 768px) {
    .locations-map-container {
        padding: 20px;
        border-radius: 20px;
    }
}

.locations-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
}

.continent-block {
    width: 100%;
}

.countries-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px 30px;
}

.continent-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 25px;
    font-weight: 800;
    opacity: 0.9;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(10, 195, 255, 0.2);
    display: block;
}

.location-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.location-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.location-item:hover {
    color: white;
    transform: translateX(5px);
}

/* Architecture & Synergy Visuals */
.architecture-container {
    margin-top: 80px;
    padding: 60px;
    background: rgba(10, 195, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    text-align: center;
}

.architecture-viz-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 0 50px rgba(10, 195, 255, 0.15);
}

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

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

.synergy-val {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Outfit';
}

.synergy-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}


/* Timeline Styles */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 80px auto;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--accent-gradient);
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 15px var(--accent);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-year {
    font-family: 'Outfit';
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 25px;
    transition: 0.3s;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 30px;
    }
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 70px;
    }
    .timeline-dot {
        left: 22px !important;
    }
}

/* Mobile Nav Defaults */
.mobile-nav-overlay {
    display: none;
}

@media (max-width: 1200px) {
    .mobile-nav-overlay {
        display: flex;
    }
    .d-xl-block { display: none !important; }
    
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 2001;
        padding: 10px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: 0.3s;
    }

    .mobile-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-toggle span {
        width: 24px;
        height: 2px;
        background: white;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 10, 24, 0.98);
        backdrop-filter: blur(20px);
        z-index: 2000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        padding: 40px;
    }

    .mobile-nav-overlay.active {
        transform: translateY(0);
    }

    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .mobile-menu-list li {
        margin: 25px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease;
    }

    .mobile-nav-overlay.active .mobile-menu-list li {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu-link {
        font-size: 1.8rem;
        font-weight: 700;
        color: white;
        text-decoration: none;
        letter-spacing: -1px;
        font-family: 'Outfit', sans-serif;
        transition: color 0.3s;
    }

    .mobile-menu-link:hover {
        color: var(--accent);
    }

    .mobile-footer {
        margin-top: 60px;
        text-align: center;
        opacity: 0.6;
        font-size: 0.9rem;
    }
}

/* Cookie Consent System */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 10, 24, 0.98);
    backdrop-filter: blur(15px);
    color: white;
    padding: 25px 40px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -10px 50px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 750px;
    color: rgba(255,255,255,0.8);
}

.cookie-btns {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cookie-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cookie-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-cookie-solid {
    background: #10c3ff;
    border: 1px solid #10c3ff;
    color: #050a18;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cookie-solid:hover {
    background: #0099cc;
    transform: translateY(-2px);
}

.cookie-close {
    cursor: pointer;
    font-size: 1.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1;
}

.cookie-close:hover {
    color: white;
}

/* Cookie Modal */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal {
    background: #0a0f1e;
    width: 100%;
    max-width: 700px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.cookie-modal-header {
    padding: 25px 35px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-body {
    padding: 30px 35px;
    overflow-y: auto;
}

.cookie-modal-footer {
    padding: 25px 35px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Accordion Styles */
.cookie-accordion-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    margin-bottom: 12px;
}

.cookie-accordion-header {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.cookie-accordion-title {
    font-weight: 600;
    color: white;
}

.cookie-accordion-content {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    display: none;
}

/* Toggle Switch */
.switch {
    width: 50px;
    height: 26px;
    position: relative;
    display: inline-block;
}

.switch input { display: none; }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255,255,255,0.1);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider { background-color: #10c3ff; }
input:checked + .slider:before { transform: translateX(24px); }

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .cookie-btns {
        width: 100%;
        justify-content: space-between;
    }
}

/* Responsive fixes */
@media (max-width: 768px) {
    .hero-premium h1 {
        font-size: 2.5rem;
    }
    .section-title-premium {
        font-size: 2rem;
    }
}
