/* ==========================================
   NAVIGATION & BRANDING (CENTRALIZED)
   ========================================== */
.glass-header {
    position: fixed;
    top: 40px; /* Offset for topbar */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    color: var(--text-accent);
}

.brand-icon.mini {
    width: 36px;
    height: 36px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-slogan {
    font-size: 0.75rem;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    color: #cbd5e1;
    letter-spacing: 0.3px;
}

.mobile-brand-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mobile-brand-name {
    font-weight: 800;
    font-size: 1.2rem;
}

/* MEGA MENU STYLES */
@media (min-width: 992px) {
    .nav-links { position: static; } 
    .dropdown.mega { position: static; }
}

.mega-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 3px solid var(--text-accent);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem 0;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    z-index: 1000;
    cursor: default;
}

@media (min-width: 992px) {
    .dropdown.mega > a.dropbtn::before {
        content: '';
        position: absolute;
        bottom: -40px;
        left: -15px;
        width: calc(100% + 30px);
        height: 100px; /* Larger hit area */
        z-index: 10;
    }
    .dropdown.mega:hover .mega-content { 
        display: block; 
        animation: megaFadeIn 0.3s ease; 
    }
}

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

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

.mega-col {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.mega-col:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(240, 193, 75, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.mega-icon {
    width: 44px; height: 44px;
    background: rgba(240, 193, 75, 0.1);
    color: var(--text-accent);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
}

.mega-col h4 {
    font-size: 1.2rem; margin-bottom: 0.6rem;
}

.mega-col h4 a {
    color: #fff !important; padding: 0 !important; font-weight: 700 !important; display: inline-block;
}

.mega-col h4 a:hover { 
    color: var(--text-accent) !important; 
}

.mega-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.mega-features { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.mega-features li {
    color: #e2e8f0; font-size: 0.85rem; margin-bottom: 0.5rem;
    display: flex; align-items: start; gap: 0.5rem;
}

.mega-features li svg {
    color: #22c55e; width: 14px; height: 14px; min-width: 14px; margin-top: 3px;
}

.mega-link {
    display: inline-flex; align-items: center; gap: 0.3rem;
    color: var(--text-accent) !important; font-size: 0.88rem; font-weight: 600;
    padding: 0 !important; transition: 0.3s;
}

.mega-link:hover { padding-left: 5px !important; color: #fff !important; }

/* MOBILE MEGA ADAPTATION */
@media (max-width: 991px) {
    .dropdown.mega { width: 100%; }
    .mega-content { 
        position: static; display: none; margin-top: 0.5rem; padding: 0; width: 100%; 
        box-shadow: none; border: none; background: rgba(255,255,255,0.02); overflow: hidden; border-radius: 8px; 
    }
    .dropdown.mega:hover .mega-content, .dropdown.mega:focus-within .mega-content { display: block; animation: none; }
    .mega-grid { display: flex; flex-direction: column; gap: 0; padding: 0.5rem 0; width: 100%; }
    .mega-col { background: transparent; padding: 0; border: none; border-radius: 0; }
    .mega-col:hover { background: rgba(255,255,255,0.05); transform: none; box-shadow: none; }
    .mega-col h4 { margin: 0; }
    .mega-col h4 a { 
        display: block !important; padding: 0.8rem 1.5rem !important; 
        font-size: 1.1rem; color: var(--text-secondary) !important; 
        font-weight: normal !important; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.02); 
    }
    .mega-col h4 a:hover { color: var(--text-primary) !important; padding-left: 2rem !important; }
    .mega-icon, .mega-desc, .mega-features, .mega-link { display: none !important; }
}

/* ROOT VARIABLES */
:root {
    --bg-primary: #0a0a0c;
    --bg-secondary: #141416;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0ab;
    --text-accent: #ffcc00; /* More vibrant yellow */
    
    --accent-gradient: linear-gradient(135deg, #ffcc00 0%, #b38927 100%);
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Inter', sans-serif;
    
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TOPBAR */
.topbar {
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.5rem 5%;
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1002;
    display: none;
}
@media (min-width: 992px) {
    .topbar { display: block; }
}
.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.topbar-right {
    display: flex;
    gap: 1.5rem;
}
.topbar-link {
    transition: var(--transition);
}
.topbar-link:hover { color: #fff; }
.topbar-accent { color: var(--text-accent); font-weight: 600; }

/* HEADER / NAVIGATION */
.glass-header {
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.4s ease;
}
.glass-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(10, 10, 12, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3%;
    max-width: 1400px;
    margin: 0 auto;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.brand-logo { height: 40px; background: rgba(255,255,255,0.1); padding: 5px; border-radius: 6px; }

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0%; height: 2px;
    background: var(--text-accent);
    transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.mobile-menu-header { display: none; }

/* DROPDOWN */
.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(14, 14, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 240px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--text-accent);
    border-radius: 8px;
    overflow: hidden;
    z-index: 100;
}
.dropdown:hover .dropdown-content { display: flex; flex-direction: column; }
.dropdown-content a {
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}
.dropdown-content a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
}
.dropdown-content a::after { display: none; }

.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.btn-primary-sm {
    background: var(--text-accent);
    color: #000;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-primary-sm:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: radial-gradient(circle at top right, rgba(240, 193, 75, 0.15), transparent 40%),
                radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 40%);
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-accent);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-gradient);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(240, 193, 75, 0.2);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-group {
    display: flex;
    gap: 1rem;
}

/* FEATURES GRID */
.features {
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 193, 75, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-accent);
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* LEGACY TABLE SUPPORT */
.table {
    width: 100%;
    margin-bottom: 2rem;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
}
.table th, .table td {
    padding: 1rem;
    border: 1px solid var(--border-glass);
    text-align: left;
}
.table th {
    background: rgba(240, 193, 75, 0.1);
    color: var(--text-accent);
    font-weight: 600;
}
.table tr:hover {
    background: rgba(255,255,255,0.02);
}
.table .sag {
    text-align: right;
}
.table img {
    border-radius: 8px;
}

/* PREMIUM FOOTER */
.premium-footer {
    background: var(--bg-primary);
    color: var(--text-secondary);
    border-top: 1px solid var(--border-glass);
}
.footer-cta {
    background: linear-gradient(180deg, rgba(20,20,22,1) 0%, rgba(10,10,12,1) 100%);
    padding: 5rem 5%;
    border-bottom: 1px solid var(--border-glass);
}
.container {
    max-width: 1400px;
    margin: 0 auto;
}
.text-center { text-align: center; }
.footer-widgets { padding: 5rem 5%; }
.row-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}
.widget-title { color: #fff; font-size: 1.2rem; margin-bottom: 1.5rem; }
.widget-links { list-style: none; padding: 0; }
.widget-links li { margin-bottom: 0.8rem; }
.widget-links a { color: var(--text-secondary); transition: 0.3s; }
.widget-links a:hover { color: var(--text-accent); padding-left: 5px; }

.widget-contact { list-style: none; padding: 0; }
.widget-contact li { display: flex; gap: 0.8rem; margin-bottom: 1rem; color: var(--text-secondary); }
.widget-contact .icon { color: var(--text-accent); }
.widget-contact a:hover { color: #fff; }

.footer-brand { display: flex; align-items: center; gap: 1rem; font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.footer-brand img { height: 40px; background: rgba(255,255,255,0.1); padding: 5px; border-radius: 6px; }
.col-brand p { margin-bottom: 2rem; line-height: 1.8; }
.social-links { display: flex; gap: 1rem; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; transition: 0.3s; }
.social-links a:hover { background: var(--text-accent); color: #000; transform: translateY(-3px); }

.footer-copyright { border-top: 1px solid var(--border-glass); padding: 2rem 5%; font-size: 0.9rem; }

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 10px;
    transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 991px) {
    .row-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .glass-header { top: 0; }
    .hero h1 { font-size: 3rem; }
    .btn-group { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .row-grid { grid-template-columns: 1fr; gap: 3rem; }
    
    .menu-toggle { display: flex; }
    .btn-primary-sm { display: none; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 420px;
        background: rgba(10, 10, 12, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem 2rem 5rem 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        backdrop-filter: blur(25px);
        box-shadow: -10px 0 30px rgba(0,0,0,0.7);
        overflow-y: auto;
        border-left: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-links.active {
        right: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-close-btn {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: var(--transition);
    }
    .mobile-close-btn:hover { background: var(--text-accent); color: #000; transform: rotate(90deg); }
    
    .nav-links a {
        font-size: 1.25rem;
        width: 100%;
        display: block;
        padding: 0.5rem 0;
    }
    .nav-links a::after { display: none; }
    .nav-links a:hover, .nav-links a.active { color: var(--text-accent); padding-left: 5px; }

    .dropdown { width: 100%; }
    .dropdown > a { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        width: 100%; 
    }
    .dropdown-content { 
        position: static; 
        display: none; 
        background: rgba(255,255,255,0.02); 
        border: 1px solid rgba(255,255,255,0.05);
        border-left: 2px solid var(--text-accent);
        box-shadow: none; 
        width: 100%;
        margin-top: 0.5rem;
        border-radius: 8px;
        padding: 0.5rem 0;
    }
    .dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content { display: flex; flex-direction: column; }
    .dropdown-content a { font-size: 1.1rem; padding: 0.8rem 1.5rem; }
}


/* ==========================================================================
   PREMIUM PSEO AND GLOBAL COMPONENTS 
   ========================================================================== */

/* Page Hero (Used on non-home pages) */
.page-hero {
    background: linear-gradient(135deg, rgba(8,12,20,0.6) 0%, rgba(10,12,18,0.8) 100%), var(--hero-bg, url('../img/slide/slide-2.jpg')) center/cover no-repeat fixed;
    margin-top: -130px;
    padding: 12rem 5% 4rem;
    border-bottom: 1px solid var(--border-glass);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 40vh; /* Increased height for better presence */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(240, 193, 75, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

/* Containers */
.section-container {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* Features Component (Extremely Premium) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition, 0.4s ease);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 193, 75, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 193, 75, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon-wrapper {
    color: var(--text-accent, #f0c14b);
    background: rgba(240, 193, 75, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(240, 193, 75, 0.2);
    overflow: hidden;
}
.feature-icon-wrapper svg { width: 32px; height: 32px; max-width: 100%; object-fit: contain; }

.feature-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.feature-list {
    list-style-type: square; 
    color: var(--text-secondary); 
    padding-left: 1.2rem; 
    line-height: 1.8; 
    font-size: 0.95rem;
    margin-top: 1rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
}

/* Region Badges */
.regions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 2rem;
}

.region-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.region-badge:hover {
    background: rgba(240, 193, 75, 0.08);
    border-color: rgba(240, 193, 75, 0.4);
    color: var(--text-accent, #f0c14b);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.region-badge svg {
    color: inherit;
    width: 16px;
    height: 16px;
}

/* Technical Grid */
.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.technical-box {
    background: transparent;
    border-left: 2px solid var(--accent-gradient, #f0c14b);
    padding-left: 2rem;
    position: relative;
}

.technical-box::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -6px;
    width: 10px;
    height: 10px;
    background: var(--text-accent, #f0c14b);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(240, 193, 75, 0.5);
}

.technical-title {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Data Tables */
.data-table-container {
    width: 100%;
    overflow-x: auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    margin-top: 2rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.data-table th {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 1.2rem;
    border-bottom: 1px solid var(--border-glass);
}

.data-table td {
    padding: 1.2rem;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    font-size: 0.95rem;
}

.data-table tr:hover td {
    background: rgba(240, 193, 75, 0.03);
}

.data-table .highlight {
    color: var(--text-accent, #f0c14b);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-glass);
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.15);
}

.faq-summary {
    padding: 1.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: '+';
    color: var(--text-accent, #f0c14b);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

/* ANTI-SCROLL MOBIL TABLO MÜDAHALESİ */
@media (max-width: 768px) {
    .data-table-container, .table-container, .table-responsive {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    .data-table, .table {
        min-width: 100% !important;
        table-layout: fixed !important;
        width: 100% !important;
    }
    .data-table th, .data-table td, .table th, .table td {
        padding: 0.6rem 0.3rem !important;
        font-size: 0.75rem !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        white-space: normal !important;
        hyphens: auto;
    }
}

/* ==========================================================================
   COMPONENT STYLES (HOME)
   ========================================================================== */
.home-hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(6, 8, 11, 0.9) 0%, rgba(6, 8, 11, 0.4) 50%, rgba(6, 8, 11, 0.9) 100%), 
                url('../img/heroes/home_hero.png') center/cover no-repeat fixed;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    margin-top: -130px; /* Pull under glass header */
}
.hero-ambient-orb {
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 235, 59, 0.12) 0%, transparent 60%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 8s infinite alternate ease-in-out;
}
.hero-ambient-orb-2 {
    position: absolute;
    bottom: -30%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.05) 0%, transparent 60%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
}
@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
    100% { transform: scale(1.1) translate(-20px, 20px); opacity: 1; }
}
.hero-tag-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e1;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-tag-premium::before {
    content: '';
    display: block;
    width: 8px; height: 8px;
    background: var(--text-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--text-accent);
}
.hero-title-premium {
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
.hero-desc-premium {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #94a3b8;
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    font-weight: 300;
}
.core-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}
@media (max-width: 1024px) { .core-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .core-products-grid { grid-template-columns: 1fr; } }
.core-product-card {
    background: linear-gradient(145deg, rgba(20,25,35,0.4) 0%, rgba(10,12,18,0.8) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}
.core-product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(240, 193, 75, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.core-product-card:hover { border-color: rgba(240, 193, 75, 0.3); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.core-product-card:hover::before { opacity: 1; }
.card-icon { margin-bottom: 2rem; color: var(--text-accent); position: relative; z-index: 2; }
.card-title { color: #fff; font-size: 1.4rem; margin-bottom: 1rem; position: relative; z-index: 2; }
.card-desc { color: #94a3b8; line-height: 1.6; font-size: 0.95rem; margin-bottom: 2.5rem; font-weight: 300; position: relative; z-index: 2; }
.card-link { display: inline-flex; align-items: center; gap: 0.8rem; color: #fff; text-decoration: none; font-size: 0.95rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; position: relative; z-index: 2; transition: gap 0.3s ease; }
.core-product-card:hover .card-link { gap: 1.2rem; color: var(--text-accent); }
.b2b-premium-banner { position: relative; padding: 4rem 2rem; border-top: 1px solid rgba(255,255,255,0.03); }
.banner-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

/* ==========================================================================
   COMPONENT STYLES (SECTORAL & PSEO)
   ========================================================================== */
.sector-page-wrapper { margin-top: -130px; }

.sector-hero {
    padding: 160px 1.5rem 80px;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.02), transparent 50%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.sector-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; width: 100%; }
.badge-premium {
    display: inline-flex; align-items: center; gap: 12px; padding: 10px 20px;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50px; color: #94a3b8; font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 2.5rem;
}
.badge-premium span { width: 10px; height: 10px; background: var(--text-accent); border-radius: 50%; box-shadow: 0 0 15px var(--text-accent); }
.main-title { font-size: clamp(2.5rem, 6vw, 4.2rem); font-weight: 800; color: #fff; line-height: 1.05; margin-bottom: 2rem; letter-spacing: -2px; }
.technical-layout { display: grid; grid-template-columns: 1.8fr 1fr; gap: 4rem; margin-top: 6rem; align-items: start; }
@media (max-width: 1024px) { .technical-layout { grid-template-columns: 1fr; gap: 3rem; margin-top: 4rem; } }
.rich-article { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 4rem; border-radius: 40px; }
@media (max-width: 768px) { .rich-article { padding: 2rem; border-radius: 20px; } }
.rich-article h2 { color: #fff; font-size: 2.2rem; margin-bottom: 2rem; font-weight: 800; }
.rich-article p { color: #cbd5e1; font-size: 1.2rem; line-height: 1.8; margin-bottom: 2rem; }
.rich-article strong { color: var(--text-accent); font-weight: 800; }
.tech-sidebar { background: #0f172a; border: 1px solid rgba(255,255,255,0.05); border-radius: 35px; padding: 3rem; height: fit-content; }
@media (max-width: 768px) { .tech-sidebar { padding: 2rem; border-radius: 20px; } }
.tech-table { width: 100%; border-collapse: collapse; }
.tech-table tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
.tech-table td { padding: 1.2rem 0; font-size: 0.95rem; }
.tech-table td:first-child { color: #64748b; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.75rem; }
.tech-table td:last-child { color: #fff; text-align: right; font-weight: 700; }
.cta-banner { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); padding: 5rem; border-radius: 50px; text-align: center; border: 1px solid rgba(255,255,255,0.1); margin-top: 100px; }

/* ==========================================================================
   GLOBAL DESIGN SYSTEM EXTENSIONS
   ========================================================================== */
.page-wrapper {
    padding-top: 130px; /* Offset for fixed header + topbar */
}

.section-container { padding: 5rem 5%; max-width: 1200px; margin: 0 auto; }
.section-title { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: 2rem; text-align: center; }
.section-subtitle { color: var(--text-secondary); font-size: 1.15rem; text-align: center; max-width: 800px; margin: 0 auto 4rem; line-height: 1.7; }

/* DATA TABLES (PREMIUM) */
.data-table-container { width: 100%; overflow-x: auto; background: var(--bg-glass); border: 1px solid var(--border-glass); border-radius: 12px; margin-bottom: 3rem; }
.data-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.data-table th { background: rgba(255, 255, 255, 0.03); color: var(--text-accent); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; padding: 1.2rem; border-bottom: 1px solid var(--border-glass); text-align: center; }
.data-table td { padding: 1.2rem; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.02); font-size: 0.95rem; text-align: center; }
.data-table tr:hover td { background: rgba(240, 193, 75, 0.03); }
.data-table .highlight { color: var(--text-accent); font-weight: 600; }

/* FAQ SYSTEM (PREMIUM) */
.faq-section { margin-top: 5rem; max-width: 1000px; margin-inline: auto; }
.faq-item { background: var(--bg-glass); border: 1px solid var(--border-glass); border-radius: 12px; margin-bottom: 1rem; overflow: hidden; transition: 0.3s ease; }
.faq-item:hover { border-color: rgba(255,255,255,0.15); }
.faq-summary { padding: 1.5rem; color: #fff; font-weight: 600; font-size: 1.1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-summary::after { content: '+'; color: var(--text-accent); font-size: 1.5rem; transition: 0.3s ease; }
details[open] .faq-summary::after { transform: rotate(45deg); }
.faq-content { padding: 0 1.5rem 1.5rem; color: var(--text-secondary); line-height: 1.7; }

/* PSEO COMPONENTS */
.pseo-hero { min-height: 50vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 8rem 2rem 4rem; position: relative; overflow: hidden; }
.pseo-hero::before { content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(240, 193, 75, 0.05) 0%, transparent 60%); z-index: -1; }

.page-hero {
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, rgba(8, 12, 20, 0.7) 0%, rgba(10, 12, 18, 0.8) 100%), 
                var(--hero-bg, url('../img/hero-bg-2.jpg')) center/cover no-repeat fixed;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-top: -130px; /* Pull under glass header */
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.rich-content-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: center; margin-bottom: 5rem; }
@media (max-width: 900px) { .rich-content-grid { grid-template-columns: 1fr; gap: 2rem; } }
