/* ==========================================================================
   ERSFAN Sistemleri - Premium Dark/Neon Cyber Theme
   ========================================================================== */

:root {
    /* Core Colors */
    --bg-hero-overlay: rgba(8, 12, 28, 0.75);
    --bg-dark: #090e1f;
    --bg-card: #121933;
    --neon-cyan: #00f0ff;
    --neon-blue: #2a75ff;
    --neon-pink: #ff2a6d;
    --neon-purple: #b537f2;
    --text-main: #f0f4f8;
    --text-muted: #8892b0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    --gradient-glow: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    --glass-bg: rgba(18, 25, 51, 0.65);
    --glass-border: rgba(255, 255, 255, 0.12);
    
    /* Transitions & Shadows */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glow-shadow: 0 8px 32px rgba(0, 240, 255, 0.2), 0 0 20px rgba(0, 102, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #ffffff;
}

/* Typography & Accents */
.text-neon {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
    box-shadow: var(--glow-shadow);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background: radial-gradient(circle at center, #090e1f 0%, #030408 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
    .loader-wrapper {
        position: relative;
        width: 140px;
        height: 140px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 35px;
    }
    .loader-logo {
        width: 75px;
        position: absolute;
        z-index: 2;
        animation: pulseLogo 1.5s infinite alternate;
        filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.5));
    }
    @keyframes pulseLogo {
        0% { transform: scale(0.9); opacity: 0.7; filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.2)); }
        100% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.8)); }
    }
.loader-circle {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 3px solid transparent;
        border-top-color: var(--neon-cyan);
        border-bottom-color: var(--neon-blue);
    border-radius: 50%;
        animation: spin 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), inset 0 0 20px rgba(0, 102, 255, 0.2);
    }
    .loader-circle-inner {
        position: absolute;
        width: 70%;
        height: 70%;
        border: 3px solid transparent;
        border-left-color: var(--neon-pink);
        border-right-color: var(--neon-purple);
        border-radius: 50%;
        animation: spin-reverse 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
        box-shadow: 0 0 15px rgba(255, 0, 85, 0.2), inset 0 0 15px rgba(181, 55, 242, 0.2);
}
@keyframes spin { 100% { transform: rotate(360deg); } }
    @keyframes spin-reverse { 100% { transform: rotate(-360deg); } }
.loader-text {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 4px;
        animation: pulseText 1.5s infinite alternate;
}
    @keyframes pulseText {
        0% { opacity: 0.5; text-shadow: 0 0 5px rgba(0, 240, 255, 0.2); }
        100% { opacity: 1; text-shadow: 0 0 20px rgba(0, 240, 255, 0.8); }
    }

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10000;
    width: 0%;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-fast);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(5, 5, 7, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 3%;
    border-bottom: 1px solid var(--glass-border);
    top: 15px;
    width: 94%;
    left: 3%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.nav-left { flex: 1; display: flex; justify-content: flex-start; align-items: center; }
.nav-center { flex: 2; display: flex; justify-content: center; align-items: center; }
.nav-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 1.5rem; }
.nav-cta-btn { 
    padding: 8px 24px !important; 
    font-size: 0.9rem !important; 
    border-radius: 8px !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2) !important;
}
.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-logo-img {
    height: 55px; /* Logonun daha belirgin olması için hafif büyütüldü */
    filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.5));
    transition: var(--transition-fast);
    /* PNG olduğu için border-radius ve object-fit kaldırıldı, doğal haliyle daha iyi duracak */
}
.brand-logo-img:hover {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8));
}
.footer .brand-logo-img {
    height: 65px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}
.footer .brand-logo-img:hover {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
    transform: scale(1.05);
}

.logo-ers {
    color: #ff003c;
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.6);
    font-weight: 900;
}
.logo-fan {
    color: #0066ff;
    text-shadow: 0 0 15px rgba(0, 102, 255, 0.6);
    font-weight: 900;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition-fast);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--neon-cyan);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: var(--transition-fast);
    box-shadow: 0 0 8px var(--neon-cyan);
}
.nav-links > li > a:hover::after, .nav-links > li > a.active::after {
    width: 80%;
}

/* =========================================================
   MEGA MENÜ & AÇILIR MENÜ (DROPDOWN) SİSTEMİ
   ========================================================= */
.nav-item-dropdown {
    position: relative;
    padding: 10px 0;
}
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(9, 14, 31, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    min-width: 600px;
    display: flex;
    gap: 3rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(0, 240, 255, 0.1);
    z-index: 1001;
}
.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mega-menu-column {
    flex: 1;
}
.mega-menu-title {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}
.mega-menu-title i { color: var(--neon-cyan); }
.mega-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    color: var(--text-muted) !important;
    transition: 0.3s ease !important;
}
.mega-menu-link::after { display: none !important; }
.mega-menu-link i { font-size: 1.2rem; color: rgba(255, 255, 255, 0.2); transition: 0.3s; }
.mega-menu-link:hover {
    background: rgba(0, 240, 255, 0.05);
    color: var(--neon-cyan) !important;
    transform: translateX(5px);
}
.mega-menu-link:hover i { color: var(--neon-cyan); }

/* =========================================================
   HERO HUD (HEADS UP DISPLAY) & PARTICLE CANVAS
   ========================================================= */
#hero-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}
.hero-hud {
    position: absolute;
    background: rgba(9, 14, 31, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 3;
    animation: hud-float 6s infinite ease-in-out;
}
.hud-value { font-size: 1.4rem; font-weight: bold; color: var(--neon-cyan); }
.hud-label { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.hud-1 { top: 20%; left: 10%; }
.hud-2 { bottom: 25%; right: 10%; animation-delay: -3s; border-color: rgba(255, 0, 85, 0.2); }
.hud-2 .hud-value { color: var(--neon-pink); }
@keyframes hud-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.mobile-menu-btn {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}
.btn-glow {
    background: transparent;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    box-shadow: inset 0 0 0 rgba(0, 240, 255, 0), 0 0 10px rgba(0, 240, 255, 0.2);
}
.btn-glow:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.5);
}
.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    box-shadow: var(--glow-shadow);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.7);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/mekanik.jpg');
    background-size: cover;
    background-position: center;
    animation: kenburns-effect 30s ease-in-out infinite alternate;
    z-index: -1;
}
.hero::after { /* Resim üzerine karanlık ve renkli katman */
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(9, 14, 31, 0.5) 0%, var(--bg-dark) 95%);
    z-index: -1;
}
@keyframes kenburns-effect {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}
.hero-glass-panel {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.3);
    animation: glass-pulse 4s infinite alternate;
}
@keyframes glass-pulse {
    from { box-shadow: 0 0 20px rgba(0, 240, 255, 0.1), inset 0 0 10px rgba(0, 240, 255, 0.05); }
    to { box-shadow: 0 0 40px rgba(0, 240, 255, 0.3), inset 0 0 20px rgba(0, 240, 255, 0.1); }
}
.hero-glass-panel::before { /* Cam panele siber desen ekleme */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(circle at center, white, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, white, transparent 80%);
    animation: grid-pan 10s linear infinite;
    opacity: 0.5;
}
@keyframes grid-pan { from { background-position: 0 0; } to { background-position: 30px 30px; } }

.background-orbs {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 10s infinite alternate ease-in-out;
}
.orb-1 { width: 300px; height: 300px; background: var(--neon-cyan); top: 10%; left: 15%; }
.orb-2 { width: 400px; height: 400px; background: var(--neon-purple); bottom: 10%; right: 10%; animation-delay: -3s; }
.orb-3 { width: 250px; height: 250px; background: var(--neon-pink); top: 40%; left: 60%; animation-delay: -6s; }

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.2); }
}
.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    position: relative;
}
.text-gradient {
    background: linear-gradient(to right, #00f0ff, #0066ff, #ff0055, #00f0ff);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    animation: shine-text 3s linear infinite;
}
@keyframes shine-text {
    to { background-position: 200% center; }
}
.floating-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: floatBadge 4s infinite ease-in-out;
}
.floating-badge i { color: var(--neon-cyan); font-size: 1.2rem; }
.badge-1 { top: -25px; left: -35px; }
.badge-2 { bottom: -25px; right: -35px; animation-delay: -2s; }
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Global Sections */
.section {
    padding: 100px 5%;
    position: relative;
    background: linear-gradient(to bottom, transparent, rgba(42, 117, 255, 0.02));
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 1rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}
.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
}
.stat-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--gradient-primary);
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
}
.stat-number span:not(.counter) {
    color: var(--neon-cyan);
}
.stat-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
    opacity: 0.8;
}
.about-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    box-shadow: inset 0 0 30px var(--neon-cyan);
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    pointer-events: none;
}

/* Services & Features */
.services-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.service-card::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; bottom: -2px; right: -2px;
    background: linear-gradient(45deg, var(--neon-cyan), transparent, var(--neon-pink), transparent, var(--neon-blue));
    background-size: 300% 300%;
    z-index: -1;
    border-radius: 15px;
    opacity: 0;
    transition: 0.5s ease;
}
@keyframes glow-bg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.1);
}
.service-card:hover::before {
    opacity: 1;
    animation: glow-bg 4s linear infinite;
}
.service-icon {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.service-card p {
    color: var(--text-muted);
}

/* Products Grid (Neon Cards) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}
.neon-card {
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    /* overflow: hidden; Removed for 3D Tilt */
    position: relative;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d; /* For Tilt Effect */
}
.neon-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), inset 0 0 15px rgba(0, 240, 255, 0.1);
    transform: translateY(-8px);
}
.neon-card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center, #1a254d 0%, #050812 100%);
    transform: translateZ(30px); /* 3D Pop out effect */
    border-radius: 15px 15px 0 0;
}
.neon-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.6s ease;
}
.neon-card:hover .neon-card-img img {
    transform: scale(1.1);
    opacity: 1;
}
.neon-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    transform: translateZ(20px);
}
.neon-card-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.neon-card-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-info-item i {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-right: 1.5rem;
}
.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-fast);
}
.form-control:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition-fast);
}
.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Footer */
.footer {
    background: #030305;
    padding: 4rem 5% 2rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}
.footer p {
    color: var(--text-muted);
}

/* =========================================================
   RESPONSIVE BREAKPOINTS & MOBILE OPTIMIZATION
   ========================================================= */

/* Mobile Touch Target Optimization */
@media (hover: none) and (pointer: coarse) {
    /* Touch devices - increase touch target sizes */
    button, a, input[type="button"], input[type="submit"] {
        min-height: 44px;
        min-width: 44px;
    }
    
    .btn {
        min-height: 44px;
        padding: 12px 28px !important;
    }
    
    .carousel-btn {
        width: 50px !important;
        height: 50px !important;
    }
    
    /* Disable hover effects on touch devices */
    .product-card:hover {
        transform: translateY(0) scale(1);
    }
    
    .service-card:hover {
        transform: translateY(0);
    }

    /* Optimize neon cards for mobile to prevent layout shifts and lag */
    .neon-card {
        transform-style: flat !important;
        transform: none !important;
        overflow: hidden !important;
    }
    .neon-card:hover {
        transform: translateY(0) !important;
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), inset 0 0 15px rgba(0, 240, 255, 0.1) !important;
    }
    .neon-card-img {
        transform: none !important;
    }
    .neon-card-img img {
        transform: none !important;
    }
    .neon-card-content {
        transform: none !important;
    }
}
@media (max-width: 1200px) {
    .section { padding: 80px 5%; }
    .v3-split-grid { gap: 60px; }
    .mega-menu { min-width: 500px; }
}

/* Large Tablets (992px) */
@media (max-width: 992px) {
    /* Navigation */
    .hero-title { font-size: 3.2rem; }
    .floating-badge { display: none; }
    .hero-hud { display: none !important; }
    .nav-right .nav-cta-btn { display: none; }
    .nav-center { flex: 0; }
    .mobile-menu-btn { 
        display: block; 
        z-index: 1000; 
        position: relative;
        padding: 8px 12px;
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1.5rem;
    }
    .navbar.scrolled { top: 10px; width: 96%; left: 2%; padding: 1rem 5%; }
    
    /* Navigation Menu */
    .nav-links {
        position: fixed;
        top: 0; left: 0; width: 100vw; height: 100vh;
        background: rgba(9, 14, 31, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        padding: 100px 30px 40px 30px;
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links li { 
        margin: 15px 0; 
        width: 100%; 
        border-bottom: 1px solid rgba(255,255,255,0.05); 
        padding-bottom: 15px; 
    }
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .mobile-only-cta {
        display: block !important;
        margin-top: 20px;
        padding-top: 20px;
        padding-bottom: 0;
        border-top: 2px solid rgba(0, 240, 255, 0.3) !important;
        border-bottom: none !important;
    }
    .mobile-only-cta a {
        display: block !important;
        width: 100% !important;
        padding: 14px 24px !important;
        background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue)) !important;
        color: #fff !important;
        text-align: center;
        border-radius: 30px !important;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 1rem !important;
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.3) !important;
        transition: all 0.3s ease !important;
        border: none !important;
    }
    .mobile-only-cta a:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 30px rgba(0, 240, 255, 0.5) !important;
    }
    
    /* Mega Menu Mobile Overrides */
    .nav-item-dropdown:hover .mega-menu {
        transform: none !important;
    }
    .nav-item-dropdown .mega-menu {
        position: static !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transform: none !important;
        left: 0 !important;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 0;
        min-width: 100%;
        padding: 0 15px;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
        flex-direction: column;
        gap: 15px;
        border-radius: 12px;
        pointer-events: none;
    }
    .nav-item-dropdown.mobile-open .mega-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding: 25px 20px;
        margin-top: 15px;
        border-left: 3px solid var(--neon-cyan);
        pointer-events: auto !important;
        display: flex !important;
        transform: none !important;
    }
    .mega-menu-column { width: 100%; padding: 0; border: none; margin-bottom: 20px; }
    .mega-menu-column:last-child { margin-bottom: 0; }
    .mega-menu-title { font-size: 1rem; color: var(--neon-cyan); margin-bottom: 10px; border-bottom: none; }
    .mega-menu-link { 
        padding: 12px 15px; 
        font-size: 0.95rem !important; 
        background: rgba(255, 255, 255, 0.03); 
        margin-bottom: 8px; 
        border-radius: 8px; 
        border: 1px solid rgba(255,255,255,0.05);
    }
    .nav-item-dropdown > a { display: flex; justify-content: space-between; align-items: center; width: 100%; font-weight: 600; }
    .nav-item-dropdown > a i { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); background: rgba(0, 240, 255, 0.1); padding: 8px; border-radius: 50%; color: var(--neon-cyan); }
    .nav-item-dropdown.mobile-open > a i { background: var(--neon-cyan); color: #000; transform: rotate(180deg); }
    .nav-links a { font-size: 1.1rem; }
    
    /* Grids */
    .about-grid, .contact-container { grid-template-columns: 1fr; }
    .timeline::after { left: 30px; }
    .timeline-item { width: 100%; padding-left: 80px; padding-right: 20px; }
    .timeline-item.right { left: 0; }
    .timeline-item::after { left: 18px !important; }
    
    /* Content */
    .v3-split-grid { grid-template-columns: 1fr; gap: 60px; }
    .v3-core-grid { grid-template-columns: 1fr; }
    .v3-float-box { bottom: 10px; left: 10px; padding: 20px; }
    .v3-float-box h3 { font-size: 2.5rem; }
    .v3-title { font-size: 12vw; }
    
    /* Sections */
    .section { padding: 60px 5%; }
    .amiral-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem; }
    .sector-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    
    /* Footer */
    .footer {
        padding: 2.5rem 5% 1.5rem 5% !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center;
    }
    .footer-col {
        text-align: center !important;
    }
    .footer-col h3 {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .footer-col ul li {
        margin-bottom: 0.6rem !important;
    }
    .footer-col ul li a {
        justify-content: center;
        font-size: 0.95rem !important;
    }
    .footer p {
        font-size: 0.9rem !important;
    }
}

/* Medium Tablets & Large Phones (768px) */
@media (max-width: 768px) {
    :root {
        /* Adjustments for medium screens */
    }
    
    /* Typography */
    .section-title { font-size: 2rem !important; text-align: center !important; }
    .section-subtitle { font-size: 1rem !important; text-align: center !important; margin-bottom: 2.5rem !important; }
    .hero-title { font-size: 2.5rem !important; line-height: 1.15 !important; }
    .v3-title { font-size: 10vw; }
    
    /* Navigation */
    .navbar { padding: 1rem 4%; }
    .nav-logo { font-size: 1.5rem; }
    .brand-logo-img { height: 45px; }
    .nav-links { gap: 1.5rem; }
    
    /* Hero */
    .hero-glass-panel { padding: 2rem 1.5rem !important; }
    .hero-buttons { flex-direction: column; gap: 1rem; }
    .hero-buttons .btn { width: 100%; }
    
    /* Stats */
    .stat-number { font-size: 2.2rem !important; }
    .stat-text { font-size: 0.85rem !important; }
    .stat-box { padding: 1.5rem 1rem !important; }
    
    /* Grids */
    .about-grid, .contact-container, .product-grid { grid-template-columns: 1fr !important; }
    .services-grid, .features-grid { grid-template-columns: 1fr !important; }
    .testimonial-grid { grid-template-columns: 1fr !important; }
    .sector-grid { grid-template-columns: 1fr; }
    .v3-split-grid { gap: 40px; }
    
    /* Content */
    .mega-cta { padding: 40px 5% !important; margin: 30px 5% !important; border-radius: 20px !important; }
    .mega-cta h2 { font-size: 2rem !important; }
    .mega-cta p { font-size: 0.95rem !important; }
    .about-content { text-align: center; }
    .about-content ul { text-align: left; }
    
    /* Forms */
    .contact-form { padding: 2rem 1.5rem; }
    .form-group { margin-bottom: 1.2rem; }
    .form-control { padding: 12px; font-size: 16px; }
    
    /* Footer */
    .footer { padding: 2rem 4% 1rem 4% !important; }
    .footer-grid { 
        grid-template-columns: 1fr !important; 
        gap: 1.5rem !important;
        text-align: center;
    }
    .footer-col {
        text-align: center !important;
    }
    .footer-col h2, .footer-col .nav-logo {
        justify-content: center !important;
    }
    .footer-col h3 { 
        font-size: 1.05rem !important;
        margin-bottom: 1rem !important;
    }
    .footer-col ul li { margin-bottom: 0.6rem !important; }
    .footer-col ul li a { 
        font-size: 0.95rem !important;
        justify-content: center;
    }
    .footer-col ul li a::before { 
        margin-right: 5px;
    }
    .footer-col ul li[style*="display: flex"] {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    .footer-col div[style*="display: flex"] {
        justify-content: center !important;
    }
    .footer p { font-size: 0.9rem !important; }
    
    /* Navbar Mobile */
    .navbar { 
        padding: 0.75rem 3% !important;
        gap: 0.3rem;
    }
    .nav-left { min-width: auto; }
    .nav-logo { font-size: 1.2rem; gap: 6px; }
    .brand-logo-img { height: 38px; }
    .nav-links li { padding-bottom: 12px; margin: 12px 0; }
    
    /* Sections */
    .section { padding: 50px 4%; }
    
    /* Floating WhatsApp */
    .floating-wa { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 28px; }
    
    /* Marquee */
    .marquee-content span { font-size: 1.2rem; margin: 0 20px; }
    
    /* Calculator */
    .calc-label { font-size: 0.95rem; }
    
    /* Timeline */
    .timeline { padding: 20px 0; }
    .timeline-item { padding-left: 70px; margin-bottom: 20px; }
    .timeline-item::after { width: 20px; height: 20px; right: -10px; }
    .timeline-item.right::after { left: -10px; }
    .timeline-content { padding: 20px; }
    
    /* Cards */
    .service-card, .neon-card, .testi-card { padding: 1.5rem; }
    .neon-card-img { height: 200px; }
    
    /* Images & Blocks */
    .image-block { border-radius: 15px; }
    .v3-image-wrapper { border-radius: 20px; }
    .v3-float-box { padding: 15px; }
    .v3-float-box h3 { font-size: 2rem; }
    
    /* Certifications */
    .cert-card { width: 120px; height: 120px; gap: 1rem; }
    
    /* Extras */
    .v3-split-text h2 { font-size: 2.5rem; }
    .v3-split-text p { font-size: 1rem; }
}

/* Small Phones (576px) */
@media (max-width: 576px) {
    * { scrollbar-width: thin; }
    
    /* Root Adjustments */
    :root {
        --transition-fast: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    /* Body & Base */
    body { font-size: 14px; }
    
    /* Typography */
    h1, h2, h3, h4, h5, h6 { margin-bottom: 0.5rem; }
    .section-title { font-size: 1.6rem !important; margin-bottom: 0.8rem !important; letter-spacing: 1px !important; }
    .section-subtitle { font-size: 0.9rem !important; margin-bottom: 2rem !important; }
    .hero-title { font-size: 2rem !important; }
    .text-gradient { background-size: 300% auto; }
    
    /* Navigation & Header */
    .navbar { padding: 1rem 3%; gap: 0.5rem; }
    .nav-left, .nav-center, .nav-right { gap: 0.5rem; }
    .nav-logo { font-size: 1.2rem; gap: 8px; }
    .brand-logo-img { height: 40px; }
    .nav-links { padding: 0 5%; }
    .mobile-menu-btn { font-size: 1.3rem; color: #fff; background: none; border: none; cursor: pointer; }
    .nav-links li { padding-bottom: 15px; margin: 10px 0; }
    
    /* Mobile Menu CTA Button */
    .nav-links::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to top, rgba(9, 14, 31, 0.5), transparent);
    }
    
    /* Hero Section */
    .background-orbs {
        display: none !important;
    }
    .hero { height: auto; min-height: 60vh; padding: 30px 0; }
    .hero-content { padding: 0 15px; }
    .hero-glass-panel { 
        padding: 1.5rem 1.2rem !important; 
        border-radius: 15px !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4) !important;
    }
    .hero-desc { font-size: 1rem !important; margin-bottom: 1.5rem !important; }
    .hero-buttons { 
        flex-direction: column; 
        gap: 0.8rem;
        width: 100%;
    }
    .hero-buttons .btn { 
        width: 100%; 
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
    
    /* Stats */
    .stats-grid { grid-template-columns: 1fr !important; gap: 0.8rem !important; }
    .stat-box { padding: 1.2rem 0.8rem !important; }
    .stat-number { font-size: 1.8rem !important; }
    .stat-text { font-size: 0.75rem !important; }
    
    /* About Section */
    .about-grid { gap: 1.5rem !important; }
    .about-image { border-radius: 15px; }
    
    /* Services/Features Grid */
    .services-grid, .features-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
    .service-card { 
        padding: 1.2rem !important; 
        border-radius: 12px !important;
        margin-bottom: 0.8rem;
    }
    .service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
    .service-card h3 { font-size: 1.2rem; }
    .service-card p { font-size: 0.9rem; }
    
    /* Products */
    .product-grid { gap: 1.5rem !important; }
    .neon-card { border-radius: 12px; }
    .neon-card-img { height: 180px; border-radius: 12px 12px 0 0; }
    .neon-card-content { padding: 1rem !important; }
    .neon-card-title { font-size: 1.1rem; }
    .neon-card-desc { font-size: 0.85rem; margin-bottom: 1rem; }
    
    /* Forms */
    .contact-form { 
        padding: 1.5rem 1.2rem !important; 
        border-radius: 12px !important;
    }
    .form-control { 
        padding: 10px !important; 
        font-size: 14px !important; 
        border-radius: 6px !important;
    }
    .form-group { margin-bottom: 1rem !important; }
    
    /* Buttons */
    .btn { 
        padding: 10px 20px !important; 
        font-size: 0.85rem !important;
        border-radius: 25px !important;
    }
    .btn-glow { padding: 8px 18px !important; }
    
    /* Contact */
    .contact-container { gap: 2rem !important; }
    .contact-info-item { 
        padding: 1rem !important; 
        flex-direction: column;
        text-align: center;
    }
    .contact-info-item i { margin-right: 0; margin-bottom: 0.8rem; }
    
    /* Floating WhatsApp */
    .floating-wa { 
        bottom: 15px; 
        right: 15px; 
        width: 50px; 
        height: 50px; 
        font-size: 24px; 
        box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    }
    
    /* Testimonials */
    .testimonial-grid { grid-template-columns: 1fr !important; gap: 1.2rem !important; }
    .testi-card { 
        padding: 1.5rem 1.2rem !important; 
        border-radius: 12px !important;
    }
    .testi-card::before { font-size: 50px; right: 15px; top: 10px; }
    .testi-text { font-size: 0.95rem; margin-bottom: 1rem; }
    .testi-avatar { width: 40px; height: 40px; font-size: 1rem; }
    
    /* FAQ */
    .faq-container { max-width: 100%; }
    .faq-item { margin-bottom: 0.8rem; border-radius: 8px; }
    .faq-header { 
        padding: 15px; 
        font-size: 1rem;
    }
    .faq-body { padding: 0 15px; font-size: 0.9rem; }
    
    /* Sections */
    .section { 
        padding: 40px 4% !important;
        background: linear-gradient(to bottom, transparent, rgba(42, 117, 255, 0.01));
    }
    
    /* Marquee */
    .marquee-content { display: flex; }
    .marquee-content span { 
        font-size: 1rem; 
        margin: 0 15px; 
        letter-spacing: 1px;
    }
    
    /* Timeline */
    .timeline { padding: 20px 0; }
    .timeline-item { 
        width: 100% !important; 
        padding-left: 60px; 
        margin-bottom: 15px;
    }
    .timeline-item::after { width: 18px; height: 18px; right: -9px; top: 12px; }
    .timeline-content { 
        padding: 15px; 
        border-radius: 10px;
    }
    
    /* Calculator */
    .calculator-wrapper { 
        grid-template-columns: 1fr !important; 
        gap: 1.5rem !important; 
        padding: 1.5rem !important;
        border-radius: 12px !important;
    }
    .calc-label { font-size: 0.9rem; }
    .calc-slider { height: 6px; }
    .calc-slider::-webkit-slider-thumb { width: 20px; height: 20px; }
    .result-value { font-size: 2.2rem; }
    .result-currency { font-size: 1.2rem; }
    
    /* Certifications */
    .cert-grid { gap: 1.5rem; margin-top: 2rem; }
    .cert-card { 
        width: 100px; 
        height: 100px; 
        border-radius: 50%;
    }
    .cert-card img { max-width: 50%; }
    
    /* Footer */
    .footer { padding: 3rem 4% 1rem 4%; }
    .footer-grid { 
        grid-template-columns: 1fr !important; 
        gap: 1.5rem !important; 
        text-align: center;
    }
    .footer-col h3 { 
        font-size: 1rem; 
        margin-bottom: 1rem;
    }
    .footer-col h3::after { width: 30px; }
    .footer-col ul li { margin-bottom: 0.8rem; }
    .footer-col ul li a { justify-content: center; }
    
    /* Video/Images */
    .image-block { border-radius: 12px; }
    .v3-image-wrapper { 
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }
    
    /* Sector/Specialty Grid */
    .sector-grid { 
        grid-template-columns: 1fr !important; 
        gap: 1rem !important;
    }
    .sector-card { 
        padding: 25px 15px !important;
        border-radius: 12px !important;
    }
    .sector-icon { font-size: 2.5rem; }
    
    /* Mega CTA */
    .mega-cta { 
        padding: 30px 4% !important; 
        margin: 20px 4% !important; 
        border-radius: 15px !important;
        box-shadow: 0 15px 35px rgba(0, 240, 255, 0.2);
    }
    .mega-cta h2 { font-size: 1.6rem !important; margin-bottom: 0.8rem !important; }
    .mega-cta p { font-size: 0.9rem !important; }
    
    /* V3 (About) Page */
    .v3-hero { height: 70vh; }
    .v3-hero-content { padding: 0 15px; }
    .v3-title { font-size: 8vw; line-height: 1.1; }
    .v3-subtitle { font-size: 1rem; }
    .v3-marquee-wrapper { transform: rotate(-1deg) scale(1.02); padding: 10px 0; }
    .v3-marquee span { font-size: 1.1rem; margin: 0 20px; }
    
    .v3-split-section { padding: 60px 4%; }
    .v3-split-grid { gap: 30px; }
    .v3-split-text h2 { font-size: 2rem; margin-bottom: 1.5rem; }
    .v3-split-text p { font-size: 0.95rem; margin-bottom: 1rem; }
    .v3-float-box { 
        position: relative; 
        bottom: auto; 
        left: auto;
        margin-top: 1.5rem;
        padding: 12px;
        border-radius: 12px;
    }
    .v3-float-box h3 { font-size: 1.5rem; }
    .v3-float-box p { font-size: 0.9rem; }
    
    .v3-core-grid { grid-template-columns: 1fr !important; }
    .v3-core-card { 
        padding: 30px 20px !important; 
        border-radius: 12px !important;
    }
    .v3-core-icon { font-size: 2.2rem; margin-bottom: 15px; }
    .v3-core-card h4 { font-size: 1.3rem; }
    .v3-core-card p { font-size: 0.9rem; }
}

/* =========================================================
   ULTRA MEGA DESIGN EKLENTİLERİ
   ========================================================= */

#cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease;
}
/* =========================================================
   YENİ EKLENEN DEVASA KOD BLOKLARI (INDEX.HTML GELİŞTİRMELERİ)
   ========================================================= */

/* Marquee (Sonsuz Kayan Yazı) */
.marquee-section {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}
.marquee-content {
    display: flex;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
}
.marquee-content span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    margin: 0 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
@keyframes scrollMarquee { 
    from { transform: translateX(0); } 
    to { transform: translateX(-50%); } 
}

/* Resim Blokları ve Çerçeveler */
.image-block {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.image-block img { width: 100%; height: 100%; object-fit: cover; display: block; transition: 0.7s ease; }
.image-block:hover img { transform: scale(1.05); filter: brightness(1.2); }

/* =========================================================
   AKILLI ENERJİ TASARRUFU HESAPLAYICISI (YENİ MODÜL)
   ========================================================= */
.calculator-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.calc-input-group { margin-bottom: 2rem; }
.calc-label { display: flex; justify-content: space-between; color: #fff; margin-bottom: 10px; font-weight: 600; }
.calc-label span { color: var(--neon-cyan); }
.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--neon-cyan);
    cursor: pointer;
    box-shadow: 0 0 15px var(--neon-cyan);
    transition: 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-result-box {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(0, 102, 255, 0.1));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.result-title { color: var(--text-muted); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.result-value { font-size: 3.5rem; font-weight: 900; color: #fff; font-family: 'Space Grotesk', sans-serif; line-height: 1; margin-bottom: 10px; text-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
.result-currency { font-size: 1.5rem; color: var(--neon-cyan); }
.result-desc { color: var(--neon-pink); font-size: 0.95rem; font-weight: 600; }

@media (max-width: 768px) {
    .calculator-wrapper { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
    .result-value { font-size: 2.8rem; }
}

/* Çalışma Prensibi (Timeline) */
.timeline { position: relative; max-width: 1000px; margin: 0 auto; padding: 40px 0; }
.timeline::after { content: ''; position: absolute; width: 4px; background: var(--gradient-primary); top: 0; bottom: 0; left: 50%; margin-left: -2px; border-radius: 2px; }
.timeline-item { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; box-sizing: border-box; margin-bottom: 30px;}
.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }
.timeline-item::after { content: ''; position: absolute; width: 24px; height: 24px; right: -12px; background: var(--bg-dark); border: 4px solid var(--neon-cyan); top: 15px; border-radius: 50%; z-index: 1; box-shadow: 0 0 15px var(--neon-cyan); }
.timeline-item.right::after { left: -12px; }
.timeline-content { padding: 30px; background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 15px; transition: var(--transition-fast); position: relative; overflow: hidden;}
.timeline-content:hover { border-color: var(--neon-blue); transform: translateY(-5px); box-shadow: var(--glow-shadow); }

/* Testimonials (Müşteri Yorumları) */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.testi-card { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 40px 30px; border-radius: 20px; position: relative; transition: 0.3s; }
.testi-card:hover { transform: translateY(-10px); border-color: var(--neon-pink); box-shadow: 0 10px 30px rgba(255, 0, 85, 0.15); }
.testi-card::before { content: '\201C'; position: absolute; top: 20px; right: 30px; font-size: 80px; color: rgba(255,255,255,0.05); font-family: Georgia, serif; line-height: 1; }
.testi-text { font-style: italic; color: var(--text-main); margin-bottom: 20px; font-size: 1.1rem;}
.testi-author { display: flex; align-items: center; gap: 15px; }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(45deg, #ff003c, #0066ff); display: flex; align-items: center; justify-content: center; font-weight: bold; color: #fff; font-size: 1.2rem;}

/* FAQ (Akordeon) */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 10px; overflow: hidden; transition: 0.3s; }
.faq-header { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: #fff; font-size: 1.1rem;}
.faq-header i { transition: 0.4s ease; color: var(--neon-cyan); }
.faq-item.active { border-color: var(--neon-cyan); box-shadow: 0 0 15px rgba(0,240,255,0.1); }
.faq-item.active .faq-header i { transform: rotate(180deg); color: #ff003c; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; padding: 0 20px; color: var(--text-muted); }
.faq-item.active .faq-body { padding-bottom: 20px; max-height: 500px; }

/* Mega Footer Grid */
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; text-align: left; margin-bottom: 40px; }
.footer-col h3 { color: #fff; margin-bottom: 25px; font-size: 1.3rem; position: relative; display: inline-block; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 3px; background: var(--neon-cyan); border-radius: 2px;}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; transition: 0.3s; display: flex; align-items: center;}
.footer-col ul li a::before { content: '›'; margin-right: 8px; color: var(--neon-cyan); font-weight: bold; opacity: 0; transition: 0.3s transform, 0.3s opacity; transform: translateX(-10px);}
.footer-col ul li a:hover { color: var(--neon-cyan); }
.footer-col ul li a:hover::before { opacity: 1; transform: translateX(0); }

/* =========================================================
   RENK VE CANLILIK GÜNCELLEMELERİ (SEKTÖRLER VE MEGA CTA)
   ========================================================= */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.sector-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.sector-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    opacity: 0;
    transition: 0.4s ease;
    z-index: -1;
}
.sector-card:hover {
    transform: translateY(-15px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
}
.sector-card:hover::before {
    opacity: 1;
}
.sector-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    transition: 0.4s ease;
}
.sector-card:hover .sector-icon, .sector-card:hover h3, .sector-card:hover p {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
}
.mega-cta {
    background: linear-gradient(135deg, #0066ff 0%, #00f0ff 100%);
    padding: 80px 5%;
    border-radius: 30px;
    margin: 50px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.3);
}

/* =========================================================
   SERTİFİKALAR BÖLÜMÜ
   ========================================================= */
.cert-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.cert-card {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
    transition: 0.5s ease;
    position: relative;
}
.cert-card:hover {
    transform: rotate(360deg) scale(1.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4), inset 0 0 20px rgba(0, 240, 255, 0.2);
}
.cert-card img {
    max-width: 60%;
    max-height: 60%;
    filter: brightness(0) invert(1);
}
/* Amiral Ürünler Grid (Masaüstü/Mobil uyumu için eklendi) */
.amiral-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* =========================================================
   HAKKIMIZDA V3 (SİBER-SİNEMATİK TASARIM)
   ========================================================= */

/* Sinematik Hero Bölümü */
.v3-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background: var(--bg-dark);
    overflow: hidden;
}
.v3-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.1) 0%, #030612 80%);
    z-index: 1;
}
.v3-hero .hero-bg-fallback {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%;
    opacity: 0.15;
    z-index: 0;
    object-fit: cover;
}
.v3-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 0 20px;
}
.v3-title {
    font-size: 7vw;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -2px;
}
.v3-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Eğik & Kayan Neon Bant (Marquee) */
.v3-marquee-wrapper {
    background: var(--neon-cyan);
    padding: 15px 0;
    transform: rotate(-2deg) scale(1.05);
    margin-top: -30px;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    overflow: hidden;
}
.v3-marquee {
    display: flex;
    white-space: nowrap;
    animation: v3Marquee 12s linear infinite;
}
.v3-marquee span {
    color: #000;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 30px;
    font-family: 'Space Grotesk', sans-serif;
}
@keyframes v3Marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Hikaye Bölümü */
.v3-split-section {
    padding: 120px 5%;
    background: #030612;
}
.v3-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}
.v3-split-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.1;
}
.v3-split-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.v3-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.v3-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 30px;
    pointer-events: none;
}
.v3-image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.7s ease;
}
.v3-image-wrapper:hover img {
    transform: scale(1.05);
}
.v3-float-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(9, 14, 31, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid var(--neon-cyan);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}
.v3-float-box h3 { font-size: 3.5rem; color: var(--neon-cyan); margin-bottom: 5px; line-height:1; }
.v3-float-box p { color: #fff; font-weight: 600; letter-spacing: 2px; margin:0;}

/* Operasyon Çözüm Noktaları */
.v3-core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 100px auto 0;
}
.v3-core-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    border-top: 1px solid rgba(0, 240, 255, 0.3);
    padding: 50px 40px;
    border-radius: 20px;
    transition: 0.4s ease;
}
.v3-core-card:hover {
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.1) 0%, rgba(255,255,255,0) 100%);
    transform: translateY(-10px);
}
.v3-core-icon {
    font-size: 3rem;
    color: var(--neon-pink);
    margin-bottom: 25px;
}
.v3-core-card h4 { font-size: 1.8rem; margin-bottom: 15px;}
.v3-core-card p { color: var(--text-muted); font-size: 1.1rem;}

@media (max-width: 992px) {
    .v3-split-grid { grid-template-columns: 1fr; gap: 60px; }
    .v3-title { font-size: 12vw; }
    .v3-core-grid { grid-template-columns: 1fr; }
}

/* Extra Small Phones (480px) */
@media (max-width: 480px) {
    /* Navigation */
    .navbar { padding: 0.75rem 3% !important; }
    .nav-logo { font-size: 1rem; gap: 6px; }
    .brand-logo-img { height: 35px; }
    .mobile-menu-btn { font-size: 1.2rem; padding: 6px 10px; }
    .nav-links li { margin: 8px 0; padding-bottom: 12px; font-size: 1rem; }
    .nav-links { padding: 80px 4% 30px 4% !important; }
    
    /* Footer */
    .footer {
        padding: 2rem 4% 1rem 4% !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .footer-col {
        text-align: center !important;
        margin-bottom: 1rem;
    }
    .footer-col h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.8rem !important;
        letter-spacing: 0.5px;
    }
    .footer-col h3::after {
        width: 25px;
        height: 2px;
        margin: 0.5rem auto;
    }
    .footer-col ul li {
        margin-bottom: 0.5rem !important;
        font-size: 0.85rem;
    }
    .footer-col ul li a {
        justify-content: center;
        font-size: 0.85rem !important;
        padding: 3px 0;
    }
    .footer p {
        font-size: 0.85rem !important;
        line-height: 1.4;
    }
    
    /* Typography */
    h1, h2, h3, h4, h5, h6 { margin-bottom: 0.4rem; }
    .section-title { font-size: 1.4rem !important; }
    .section-subtitle { font-size: 0.85rem !important; }
    
    /* Hero */
    .hero-title { font-size: 1.8rem !important; }
    .hero-content { padding: 0 10px; }
    
    /* Buttons & Forms */
    .btn { padding: 8px 16px !important; font-size: 0.8rem !important; }
    .form-control { padding: 8px !important; font-size: 13px !important; }
    
    /* Sections */
    .section { padding: 40px 4%; }
}

/* Ultra Small (360px) */
@media (max-width: 360px) {
    /* Navigation */
    .navbar { padding: 0.6rem 2% !important; gap: 0.2rem; }
    .nav-logo { font-size: 0.9rem; gap: 4px; }
    .brand-logo-img { height: 32px; }
    .mobile-menu-btn { font-size: 1.1rem; }
    
    /* Footer */
    .footer {
        padding: 1.5rem 3% 1rem 3% !important;
    }
    .footer-grid { gap: 0.8rem !important; }
    .footer-col { margin-bottom: 0.8rem; }
    .footer-col h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.6rem !important;
    }
    .footer-col ul li {
        margin-bottom: 0.4rem !important;
        font-size: 0.8rem;
    }
    .footer-col ul li a { font-size: 0.8rem !important; }
    .footer p { font-size: 0.8rem !important; }
    
    /* Typography */
    body { font-size: 13px; }
    .section-title { font-size: 1.2rem !important; }
    .hero-title { font-size: 1.5rem !important; }
    
    /* Sections & Content */
    .section { padding: 35px 3%; }
    .v3-float-box h3 { font-size: 1.5rem; }
}

/* =========================================================
   HİZMETLER V3 PRO MAX (SİNEMATİK UYGULAMA ALANLARI)
   ========================================================= */
.v3-services-hero {
    height: 40vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background: radial-gradient(circle at 50% 100%, rgba(42, 117, 255, 0.15) 0%, var(--bg-dark) 70%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.v3-services-hero .v3-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 15px;
}
.v3-services-hero .v3-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
}
.v3-service-row { 
    display: flex; 
    align-items: center; 
    gap: 80px; 
    margin-bottom: 150px; 
    position: relative; 
}
.v3-service-row:nth-child(even) { flex-direction: row-reverse; }
.v3-service-visual { 
    flex: 1; 
    position: relative; 
    border-radius: 30px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.6); 
}
.v3-service-visual::after { 
    content: ''; position: absolute; inset: 0; border: 2px solid rgba(0, 240, 255, 0.2); 
    border-radius: 30px; pointer-events: none; transition: 0.5s; 
}
.v3-service-visual:hover::after { border-color: var(--neon-cyan); box-shadow: inset 0 0 40px rgba(0, 240, 255, 0.2); }
.v3-service-visual img { width: 100%; border-radius: 30px; display: block; filter: grayscale(40%) contrast(1.1); transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.v3-service-row:hover .v3-service-visual img { filter: grayscale(0) contrast(1); transform: scale(1.03); }
.v3-service-content { flex: 1; }
.v3-service-num { font-size: 10rem; font-family: 'Space Grotesk', sans-serif; font-weight: 900; color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.03); line-height: 0.75; margin-bottom: -50px; position: relative; z-index: 0; }
.v3-service-content h3 { font-size: 3rem; margin-bottom: 25px; position: relative; z-index: 1; text-transform: uppercase; line-height: 1.1; }
.v3-service-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; position: relative; z-index: 1; line-height: 1.8; }
.v3-service-features { list-style: none; position: relative; z-index: 1; }
.v3-service-features li { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; font-size: 1.15rem; color: #fff; font-weight: 500; }
.v3-service-features li i { color: var(--neon-cyan); font-size: 1.4rem; background: rgba(0, 240, 255, 0.1); padding: 12px; border-radius: 50%; box-shadow: 0 0 15px rgba(0,240,255,0.1); transition: 0.3s; }
.v3-service-features li:hover i { background: var(--neon-cyan); color: var(--bg-dark); box-shadow: 0 0 20px rgba(0,240,255,0.5); }

@media (max-width: 992px) {
    .v3-service-row, .v3-service-row:nth-child(even) { flex-direction: column; gap: 50px; margin-bottom: 100px; }
    .v3-service-num { font-size: 7rem; margin-bottom: -35px; }
    .v3-service-content h3 { font-size: 2.3rem; }
        
        /* MOBİL PERFORMANS İYİLEŞTİRMESİ - services.html ağır render yükünü hafifletir */
        .v3-service-visual { box-shadow: 0 10px 20px rgba(0,0,0,0.3) !important; }
        .v3-service-visual::after { display: none !important; }
        .v3-service-visual img { filter: none !important; transition: none !important; transform: none !important; }
        .v3-service-row:hover .v3-service-visual img { transform: none !important; }
}

/* =========================================================
   FOOTER & NAVBAR MOBILE RESPONSIVE OPTIMIZATION
   ========================================================= */

/* Navbar Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 3% !important;
        flex-wrap: wrap;
    }
    
    .nav-left {
        flex: 1 1 auto;
    }
    
    .nav-center {
        /* display: none removed to allow fixed .nav-links to show */
        flex: 0;
    }
    
    .nav-right {
        flex: 1 1 auto;
        justify-content: flex-end;
        gap: 0.5rem;
    }
}

/* Navbar Scrolled Mobile */
@media (max-width: 768px) {
    .navbar.scrolled {
        width: 95% !important;
        left: 2.5% !important;
        padding: 0.8rem 3% !important;
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px !important;
    }
    
    .footer-grid {
        gap: 30px !important;
        grid-template-columns: 1fr !important;
    }
    
    .footer-col {
        text-align: center !important;
    }
    
    .footer-col h3 {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
    }
    
    .footer-col ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .footer-col a {
        font-size: 0.9rem !important;
    }
    
    .footer-col p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    
    .footer-col i {
        margin-right: 8px !important;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 30px 15px 15px !important;
    }
    
    .footer-grid {
        gap: 25px !important;
    }
    
    .footer-col {
        text-align: center !important;
    }
    
    .footer-col h3 {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
    }
    
    .footer-col p {
        font-size: 0.85rem !important;
    }
    
    .footer-col a {
        font-size: 0.8rem !important;
    }
    
    .nav-logo {
        font-size: 1.2rem !important;
        gap: 6px !important;
    }
    
    .brand-logo-img {
        height: 35px !important;
    }
}

@media (max-width: 360px) {
    .footer {
        padding: 25px 12px 12px !important;
    }
    
    .footer-col {
        margin-bottom: 15px !important;
    }
    
    .footer-col h3 {
        font-size: 0.95rem !important;
    }
    
    .footer-col p {
        font-size: 0.75rem !important;
    }
    
    .nav-logo {
        font-size: 1rem !important;
    }
}
