/* Niva.Media - Cyber Futuristic Theme */

/* CSS Variables */
:root {
    --primary-color: #00d4ff;
    --primary-dark: #0099cc;
    --secondary-color: #6c757d;
    --success-color: #00ff88;
    --info-color: #00d4ff;
    --warning-color: #ffaa00;
    --danger-color: #ff0066;
    --light-color: #f8f9fa;
    --dark-color: #0a0a0a;
    --cyber-dark: #0d1117;
    --cyber-blue: #00d4ff;
    --cyber-purple: #8b5cf6;
    --cyber-green: #00ff88;
    --cyber-pink: #ff0066;
    --white: #ffffff;
    --black: #000000;
    
    --font-family: 'Poppins', 'Orbitron', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 0.75rem;
    --box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    --box-shadow-lg: 0 20px 60px rgba(0, 212, 255, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
}

/* Cyber Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

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

a:hover {
    color: var(--cyber-green);
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cyber Buttons */
.btn-cyber {
    background: linear-gradient(45deg, var(--cyber-blue), var(--cyber-purple));
    border: 2px solid transparent;
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

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

.btn-cyber:hover::before {
    left: 100%;
}

.btn-cyber:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
    color: var(--white);
}

.btn-outline-cyber {
    background: transparent;
    border: 2px solid var(--cyber-blue);
    color: var(--cyber-blue);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-outline-cyber::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cyber-blue);
    transition: 0.3s;
    z-index: -1;
}

.btn-outline-cyber:hover::before {
    left: 0;
}

.btn-outline-cyber:hover {
    color: var(--dark-color);
    border-color: var(--cyber-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition);
    padding: 1rem 0;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.3);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
    transition: transform 0.3s ease;
    text-shadow: 0 0 10px var(--cyber-blue);
}

.nav-logo:hover {
    transform: scale(1.05);
    color: var(--cyber-blue) !important;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 12px;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple), var(--cyber-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0;
    padding: 0.5rem 0.8rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyber-blue);
    transition: width 0.3s;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyber-blue) !important;
    text-shadow: 0 0 10px var(--cyber-blue);
    transform: translateY(-2px);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
    padding: 5px;
    margin: -5px;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
    z-index: 999;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: -20px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    min-width: 280px;
    width: max-content;
    max-width: 320px;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 9999;
    padding: 1rem 0;
    margin-top: 5px;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

/* Debug kaldırıldı - normal hover kuralları çalışacak */

.dropdown-category {
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.dropdown-category:last-child {
    margin-bottom: 0;
}

.dropdown-category h6 {
    color: var(--cyber-blue);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyber-blue) !important;
    text-shadow: 0 0 5px var(--cyber-blue);
    transform: translateX(5px);
}

.dropdown-item.active {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 255, 136, 0.1) 100%);
    color: var(--cyber-green) !important;
    text-shadow: 0 0 8px var(--cyber-green);
    transform: translateX(5px);
    font-weight: 600;
    border-left: 3px solid var(--cyber-green);
    border-radius: 8px 0 0 8px;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

/* Mobile Dropdown */
.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none; /* Hidden by default on desktop */
}

.mobile-dropdown-toggle {
    position: relative;
}

.mobile-dropdown-toggle .mobile-nav-link {
    padding: 18px 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-toggle .mobile-nav-link .dropdown-arrow {
    position: static;
    transform: none;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}







.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 12px;
    z-index: 1002;
    position: relative;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--white);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: var(--cyber-blue);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: var(--cyber-blue);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 46, 0.98) 50%, rgba(22, 33, 62, 0.98) 100%);
    backdrop-filter: blur(15px);
    border-right: 1px solid rgba(0, 212, 255, 0.2);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    overflow-y: auto;
    padding-top: 80px;
    box-shadow: 5px 0 20px rgba(0, 212, 255, 0.1);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: var(--cyber-blue);
    border-radius: 2px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    gap: 2px;
}

.mobile-nav-link {
    padding: 18px 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-green));
    transition: width 0.3s ease;
    z-index: -1;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    width: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--white);
    text-shadow: 0 0 15px var(--cyber-blue);
    transform: translateX(0);
    border-left: 4px solid var(--cyber-blue);
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 255, 136, 0.1) 100%);
    font-weight: 600;
    position: relative;
}

.mobile-nav-link.active::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--cyber-green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--cyber-green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: translateY(-50%) scale(1.2);
    }
}

.mobile-nav-link i {
    margin-right: 15px;
    width: 20px;
    font-size: 1.1rem;
    text-align: center;
    color: var(--cyber-blue);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
    color: var(--cyber-green);
    transform: scale(1.1);
}

/* Mobile Dropdown Improvements */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle .mobile-nav-link {
    padding: 18px 25px;
    position: relative;
}

.dropdown-arrow {
    color: var(--cyber-blue);
    font-size: 0.8rem;
}

.mobile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 2px solid var(--cyber-blue);
    margin-left: 25px;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 800px;
    animation: slideDown 0.4s ease forwards;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-dropdown-category {
    padding: 15px 0 5px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.mobile-dropdown-category:last-child {
    border-bottom: none;
}

.mobile-dropdown-category h6 {
    color: var(--cyber-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.mobile-dropdown-item {
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border-radius: 0;
    position: relative;
}

.mobile-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--cyber-green), var(--cyber-blue));
    transition: width 0.3s ease;
    z-index: -1;
}

.mobile-dropdown-item:hover::before {
    width: 100%;
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item.active {
    color: var(--white);
    text-shadow: 0 0 5px var(--cyber-green);
    background: rgba(0, 255, 136, 0.05);
}

.mobile-dropdown-item.active {
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-left: 3px solid var(--cyber-green);
    font-weight: 600;
    position: relative;
}

.mobile-dropdown-item.active::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--cyber-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyber-green);
    animation: pulse-small 2s ease-in-out infinite;
}

@keyframes pulse-small {
    0%, 100% { 
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: translateY(-50%) scale(1.3);
    }
}

.mobile-dropdown-item i {
    margin-right: 12px;
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--cyber-green);
    opacity: 0.8;
}

.mobile-dropdown-item:hover i {
    opacity: 1;
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--cyber-dark) 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.tech-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Floating Code Elements */
.floating-code {
    position: absolute;
    color: var(--cyber-blue);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    white-space: nowrap;
    text-shadow: 0 0 10px var(--cyber-blue);
    z-index: 0;
    pointer-events: none;
}

.code-1 { top: 20%; left: 10%; animation-delay: 0s; }
.code-2 { top: 30%; right: 15%; animation-delay: 2s; }
.code-3 { top: 60%; left: 5%; animation-delay: 4s; }
.code-4 { top: 70%; right: 10%; animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Binary Rain */
.binary-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.binary-rain span {
    position: absolute;
    color: var(--cyber-green);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    animation: rain 4s linear infinite;
}

.binary-rain span:nth-child(1) { left: 10%; animation-delay: 0s; }
.binary-rain span:nth-child(2) { left: 20%; animation-delay: 0.5s; }
.binary-rain span:nth-child(3) { left: 30%; animation-delay: 1s; }
.binary-rain span:nth-child(4) { left: 40%; animation-delay: 1.5s; }
.binary-rain span:nth-child(5) { left: 50%; animation-delay: 2s; }
.binary-rain span:nth-child(6) { left: 60%; animation-delay: 0.3s; }
.binary-rain span:nth-child(7) { left: 70%; animation-delay: 0.8s; }
.binary-rain span:nth-child(8) { left: 80%; animation-delay: 1.3s; }
.binary-rain span:nth-child(9) { left: 90%; animation-delay: 1.8s; }
.binary-rain span:nth-child(10) { left: 95%; animation-delay: 2.3s; }

@keyframes rain {
    0% { top: -50px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100vh; opacity: 0; }
}

/* AI Badge */
.ai-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--cyber-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: var(--cyber-blue);
    font-size: 0.9rem;
    font-weight: 500;
    animation: glow-badge 2s ease-in-out infinite alternate;
}

.ai-badge i {
    margin-right: 0.5rem;
    animation: brain-pulse 1.5s ease-in-out infinite;
}

@keyframes glow-badge {
    from { box-shadow: 0 0 5px var(--cyber-blue); }
    to { box-shadow: 0 0 20px var(--cyber-blue), 0 0 30px var(--cyber-blue); }
}

@keyframes brain-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Hero Title Effects */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.glitch {
    position: relative;
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: glitch 2s linear infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s linear infinite reverse;
    color: var(--cyber-blue);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s linear infinite reverse;
    color: var(--cyber-pink);
    z-index: -2;
}

@keyframes glitch {
    2%, 64% { transform: translate(2px, 0) skew(0deg); }
    4%, 60% { transform: translate(-2px, 0) skew(0deg); }
    62% { transform: translate(0, 0) skew(5deg); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, 0); }
    40% { transform: translate(0, 2px); }
    60% { transform: translate(-2px, 0); }
    80% { transform: translate(0, -2px); }
}

.gradient-text {
    background: linear-gradient(45deg, var(--cyber-blue), var(--cyber-purple), var(--cyber-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

.highlight-tech {
    color: var(--cyber-blue);
    text-shadow: 0 0 20px var(--cyber-blue);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Chat Preview */
.chat-preview {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    max-width: 450px;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    z-index: 2;
    margin: 0 auto;
}

.chat-preview:hover {
    transform: translateY(-5px);
    animation-play-state: paused;
    border-color: var(--cyber-blue);
    box-shadow: 0 25px 80px rgba(0, 212, 255, 0.4);
}

.chat-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    flex-shrink: 0;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 15px;
    color: white;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.chat-info h4 {
    margin: 0 0 5px 0;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.online-status {
    font-size: 0.85rem;
    color: var(--cyber-green);
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    padding-right: 5px;
    justify-content: flex-start;
}

.message {
    max-width: 85%;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
    margin-bottom: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.message.sent {
    align-self: flex-end;
}

.message.received {
    align-self: flex-start;
}

.message-content {
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.message.sent .message-content {
    background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple));
    color: white;
    border-color: var(--cyber-blue);
}

.message.received .message-content {
    background: rgba(0, 255, 136, 0.1);
    color: var(--white);
    border-color: var(--cyber-green);
}

/* Services Section */
.services-section {
    display: block;
    visibility: visible;
    opacity: 1;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cyber-dark) 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
    z-index: 1;
}

.services-section .container {
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 2;
}

.services-section .row {
    display: flex;
    flex-wrap: wrap;
    visibility: visible;
    opacity: 1;
}

.services-section .col-lg-4,
.services-section .col-md-6 {
    display: block;
    visibility: visible;
    opacity: 1;
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 576px) {
    .services-section .col-md-6 {
        width: 50% !important;
    }
}

@media (min-width: 992px) {
    .services-section .col-lg-4 {
        width: 33.333333% !important;
    }
}

/* Bootstrap grid fallback */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.g-4 > * {
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 1.5rem;
}

.col-lg-4, .col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    min-height: 1px;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--cyber-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: var(--cyber-blue);
    font-size: 1rem;
    font-weight: 600;
    animation: glow-badge 2s ease-in-out infinite alternate;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    visibility: visible;
    opacity: 1;
    z-index: 10;
}

.tech-badge i {
    margin-right: 0.5rem;
    animation: brain-pulse 1.5s ease-in-out infinite;
}

@keyframes glow-badge {
    from {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    }
}

@keyframes brain-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Cyber Cards */
.cyber-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
    margin-bottom: 2rem;
    display: block;
    visibility: visible;
    opacity: 1;
    min-height: 400px;
    height: auto;
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

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

.cyber-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyber-blue);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.cyber-card.featured {
    border-color: var(--cyber-green);
    background: rgba(0, 255, 136, 0.05);
}

.cyber-card.featured:hover {
    border-color: var(--cyber-green);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

.service-icon-cyber {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-core {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--cyber-blue), var(--cyber-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    animation: icon-float 3s ease-in-out infinite;
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--cyber-blue);
    border-radius: 50%;
    animation: icon-pulse 2s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes icon-pulse {
    0% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% { 
        transform: scale(1.4);
        opacity: 0;
    }
}

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

.cyber-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.cyber-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tech-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tech-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyber-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: var(--transition);
}

.tech-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* Services CTA Section */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cyber-dark) 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.services-cta-section .cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-cta-section .cta-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(45deg, var(--cyber-blue), var(--cyber-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    animation: cta-icon-float 4s ease-in-out infinite;
    position: relative;
}

@keyframes cta-icon-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.services-cta-section .cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.services-cta-section .cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-stats .stat-item {
    text-align: center;
}

.cta-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cyber-blue);
    text-shadow: 0 0 20px var(--cyber-blue);
    margin-bottom: 0.5rem;
}

.cta-stats .stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer */
.footer {
    background: var(--cyber-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.footer h5, .footer h6 {
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer h5 i, .footer h6 i {
    margin-right: 0.5rem;
    color: var(--cyber-blue);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--cyber-blue);
    transform: translateX(5px);
    text-shadow: 0 0 10px var(--cyber-blue);
}

.footer-links a i {
    width: 20px;
    margin-right: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    color: var(--cyber-blue);
    text-decoration: none;
    margin-right: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--cyber-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

/* Newsletter Form Styling */
.newsletter-form .form-control {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--cyber-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
    color: var(--white);
    outline: none;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--cyber-blue);
    text-shadow: 0 0 10px var(--cyber-blue);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--cyber-blue), var(--cyber-purple));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.5);
}

/* Text Cyber Class */
.text-cyber {
    color: var(--cyber-blue);
    text-shadow: 0 0 10px var(--cyber-blue);
}

/* Floating emoji animation removed for cleaner UI */

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 15px;
    }
    
    /* Hide desktop dropdown on mobile */
    .nav-dropdown {
        display: none;
    }
    
    /* Show mobile dropdown */
    .mobile-dropdown {
        display: block;
    }
    
    /* Optimize dropdown for mobile */
    .dropdown-menu {
        right: -10px;
        min-width: 250px;
        max-width: 280px;
    }
}

/* Desktop dropdown optimization */
@media (min-width: 1024px) {
    .dropdown-menu {
        min-width: 300px;
        max-width: 350px;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
}

/* Dropdown position fixes */
@media (max-width: 1024px) {
    .dropdown-menu {
        right: -10px;
        left: auto;
        transform-origin: top right;
    }
    
    .nav-dropdown:last-child .dropdown-menu {
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-title,
    .glitch {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-cyber, .btn-outline-cyber {
        width: 100%;
        max-width: 300px;
    }
    
    .chat-preview {
        max-width: 350px;
        min-height: 350px;
        padding: 20px;
    }
    
    .services-section {
        padding: 100px 0 60px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cyber-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
        min-height: 350px;
    }
    
    .services-cta-section .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-stats {
        gap: 2rem;
    }
    
    .cta-stats .stat-number {
        font-size: 2rem;
    }
    
    .services-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 50px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
    
    .hero-section {
        padding: 70px 0 30px;
    }
    
    .hero-title,
    .glitch {
        font-size: 2rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .chat-preview {
        max-width: 300px;
        min-height: 300px;
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
        .services-section {
        padding: 90px 0 50px;
    }

    .cyber-card {
        padding: 1rem;
        min-height: 300px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .tech-badge {
        display: inline-flex;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .services-cta-section .cta-title {
        font-size: 1.8rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ===== POLICY PAGES STYLES ===== */
/* Only for policy pages to avoid conflicts with main site */

/* Main content for policy pages */
.main-content {
    padding: 100px 0 60px;
    min-height: auto;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Page header for policy pages */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.page-description {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #764ba2;
}

/* Policy Company info */
.policy-company-info {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 4px solid var(--cyber-blue);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.policy-company-info h2 {
    color: var(--cyber-blue);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.policy-company-info .company-details p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.policy-company-info .company-details strong {
    color: var(--cyber-blue);
    font-weight: 600;
}

.policy-company-info a {
    color: var(--cyber-green);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.policy-company-info a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyber-green);
    transition: width 0.3s ease;
}

.policy-company-info a:hover {
    color: var(--white);
    text-shadow: 0 0 8px var(--cyber-green);
}

.policy-company-info a:hover::after {
    width: 100%;
}

/* Policy content */
.policy-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.policy-content h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 600;
}

.policy-content h3 {
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 15px;
    color: #6c757d;
}

.policy-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 8px;
    color: #6c757d;
}

/* Info boxes */
.info-box {
    background: rgba(232, 245, 253, 0.95);
    border: 1px solid #bee5eb;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #17a2b8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-box.warning-card {
    background: rgba(255, 243, 243, 0.95);
    border: 1px solid #f8d7da;
    border-left: 4px solid #dc3545;
}

.info-box h3 {
    color: #17a2b8;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-box.warning-card h3 {
    color: #dc3545;
}

.info-box p {
    margin-bottom: 10px;
    color: #495057;
}

/* Navigation buttons */
.navigation {
    margin: 40px 0;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 45%;
}

.nav-button:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.nav-button.prev {
    justify-content: flex-start;
}

.nav-button.next {
    justify-content: flex-end;
    text-align: right;
}

.nav-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-label {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 500;
}

.nav-title {
    font-size: 1rem;
    font-weight: 600;
}

/* Quick links */
.quick-links {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quick-links h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.quick-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.link-icon {
    font-size: 1.2rem;
}

.link-text {
    font-weight: 500;
}

/* Version info */
.version-info {
    background: rgba(248, 249, 250, 0.95);
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #6c757d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.version-content p {
    margin-bottom: 8px;
    color: #6c757d;
    font-size: 0.9rem;
}

.version-content strong {
    color: #495057;
}

.version-info a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
}

.version-info a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Responsive design for policy pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-button {
        max-width: 100%;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-company-info, .policy-content, .quick-links {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 70px 0 30px;
    }
    
    .policy-company-info, .policy-content, .quick-links {
        padding: 15px;
    }
    
    .nav-button {
        padding: 15px;
        gap: 10px;
    }
}

/* ===== FOOTER IMPROVEMENTS FOR POLICY PAGES ===== */

/* Ensure footer positioning is correct */
.main-content + .footer {
    margin-top: 0;
}

/* Better footer layout for all pages */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer .footer-section.footer-company-info {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .main-content {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer .footer-section.footer-company-info {
        grid-column: auto;
        margin-bottom: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-top: 20px;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Blog Section Enhancements */
.blog {
    background: #f8f9fa;
    padding: 4rem 0;
    position: relative;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
    z-index: 1;
}

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

.blog .section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 700;
}

.blog .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.2rem;
}

.featured-post {
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-post-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 400px;
}

.featured-post-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.featured-post-info {
    padding: 2.5rem;
}

.featured-post-info .post-meta {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.featured-post-info .category {
    background: #667eea;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.featured-post-info .read-time {
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-post-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-post-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.post-date {
    color: #666;
    font-size: 0.85rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-content .post-meta {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.blog-card-content .category {
    background: #667eea;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-card-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-content h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-content h4 a:hover {
    color: #667eea;
}

.blog-card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card .post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.blog-card .author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-card .author-avatar {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
}

.blog-card .author-name {
    font-size: 0.85rem;
}

.blog-card .post-date {
    font-size: 0.8rem;
}

.blog-action {
    text-align: center;
    margin-top: 2rem;
}

.blog-more-section {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: white;
    margin-top: 1rem;
}

.blog-more-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.blog-more-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: white;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #667eea;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2.5rem;
    }
    
    .filter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        min-width: auto;
        max-width: none;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-numbers {
        order: -1;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-filters {
        padding: 1rem;
    }
    
    .results-info {
        padding: 1rem;
    }
    
    .blog-card-content {
        padding: 1rem;
    }
    
    .featured-post-info {
        padding: 1.5rem;
    }
}

/* Blog List Page Specific Styles */
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.blog-filters {
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.filter-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    position: relative;
    min-width: 300px;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: #5a67d8;
}

.topic-filter select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.topic-filter select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.results-info {
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.filter-tag {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-left: 0.5rem;
    text-decoration: none;
}

.filter-tag a {
    color: white;
    text-decoration: none;
    margin-left: 0.5rem;
    font-weight: bold;
}

.clear-filters {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    margin-left: 1rem;
}

.clear-filters:hover {
    text-decoration: underline;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-results-icon {
    font-size: 4rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

.no-results h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-results p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Pagination Styles */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-numbers a, .pagination-current {
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-numbers a {
    color: #667eea;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
}

.pagination-numbers a:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.pagination-current {
    background: #667eea;
    color: white;
    border: 1px solid #667eea;
}

.pagination-dots {
    color: #999;
    padding: 8px 12px;
}

/* Admin Integration Styles */
.admin-blog-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-blog-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Loading and Animation States */
.blog-loading {
    text-align: center;
    padding: 3rem 0;
}

.blog-loading::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Blog Card Hover Effects */
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.blog-card-content {
    position: relative;
    z-index: 2;
}

/* Enhanced Visual Effects */
.blog-section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    margin: 0 auto 2rem;
}

.blog-category-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.5rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #5a67d8;
    transform: translateX(5px);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2.5rem;
    }
    
    .filter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        min-width: auto;
        max-width: none;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-numbers {
        order: -1;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-filters {
        padding: 1rem;
    }
    
    .results-info {
        padding: 1rem;
    }
    
    .blog-card-content {
        padding: 1rem;
    }
    
    .featured-post-info {
        padding: 1.5rem;
    }
}

/* ===== CYBER THEME ADDITIONS ===== */

/* Bank Account Styles */
.bank-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bank-account-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bank-account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-purple));
}

.bank-account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.4);
}

.bank-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bank-logo-img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.bank-account-card:hover .bank-logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--cyber-blue));
}

.bank-logo-placeholder {
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.bank-name {
    text-align: center;
    color: var(--cyber-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.account-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.detail-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.detail-label {
    font-weight: 600;
    color: var(--cyber-green);
    min-width: 120px;
    font-size: 0.9rem;
}

.detail-value {
    color: var(--white);
    font-weight: 500;
    flex: 1;
}

.iban-number {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--cyber-blue) !important;
    letter-spacing: 1px;
}

.copy-btn {
    background: var(--cyber-blue);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: var(--cyber-purple);
    transform: scale(1.05);
}

/* Bank Account Responsive */
@media (max-width: 768px) {
    .bank-accounts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bank-account-card {
        padding: 1.5rem;
    }
    
    .bank-name {
        font-size: 1.3rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-label {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .bank-account-card {
        padding: 1rem;
    }
    
    .bank-name {
        font-size: 1.2rem;
    }
    
    .detail-item {
        padding: 0.5rem;
    }
}

/* Ajanslarımız Section */
.agencies-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.agencies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.agency-card {
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.agency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.agency-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    border-color: var(--cyber-blue);
}

.agency-logo {
    margin-bottom: 1.5rem;
    position: relative;
}

.agency-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    transition: var(--transition);
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 16px rgba(0, 212, 255, 0.2);
}

.agency-card:hover .agency-image {
    transform: scale(1.15);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
    border-color: var(--cyber-blue);
    background: rgba(255, 255, 255, 0.2);
}

.agency-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    color: var(--white);
    transition: var(--transition);
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 16px rgba(0, 212, 255, 0.2);
}

.agency-card:hover .agency-placeholder {
    transform: scale(1.15);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
    border-color: var(--cyber-blue);
}

.agency-info {
    flex: 1;
}

.agency-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.agency-card:hover .agency-name {
    color: var(--cyber-blue);
}

.agency-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .agencies-section {
        padding: 60px 0;
    }
    
    .agency-card {
        padding: 1.5rem;
    }
    
    .agency-image,
    .agency-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .agency-name {
        font-size: 1.1rem;
    }
    
    .agency-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .agencies-section {
        padding: 40px 0;
    }
    
    .agency-card {
        padding: 1rem;
    }
    
    .agency-image,
    .agency-placeholder {
        width: 50px;
        height: 50px;
    }
    
    .agency-name {
        font-size: 1rem;
    }
} 