:root {
    /* Color Palette - Industrial Dark Theme */
    --color-bg: #121418;
    /* Deep Charcoal (Antrasit) */
    --color-surface: #1e2229;
    /* Layar 2 */
    --color-text: #ffffff;
    --color-text-muted: #b0b3b8;

    /* Single Accent Color - TURUNCU */
    --accent-cyan: #ff6b00;
    /* Yapımontaj Turuncu */
    --accent-blue: #e05500;
    /* Gradient Secondary */

    /* Neon Colors - TURUNCU TEMA */
    --neon-cyan: #ff6b00;
    --neon-orange: #ff8c00;

    /* Glassmorphism Token */
    --glass-bg: rgba(30, 34, 41, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    /* 1px solid */
    --glass-blur: blur(12px);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-primary: 'Inter', system-ui, sans-serif;
    --font-display: 'Outfit', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 5rem;

    /* Transitions */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ===== 2. RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Carbon Mesh Overlay Pattern */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dot Grid Pattern */
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: -1;
    pointer-events: none;
}

/* ===== 3. TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 800;
    /* Extra Bold */
    line-height: 1.1;
    /* Aggressive Letter Spacing */
    letter-spacing: -1px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #ffffff;
    /* Clean, solid white for maximum industrial impact, or slight gradient */
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--neon-cyan);
}

/* ===== 4. GLASSMORPHISM COMPONENTS ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: var(--space-md);
    box-shadow: 0 8px 32px var(--glass-shadow);
    transition: all var(--transition-base);
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 8px 32px var(--glass-shadow), 0 0 30px rgba(255, 107, 0, 0.3);
}

/* ===== 5. VIDEO BACKGROUND & PARALLAX ===== */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease;
}

.bg-video.active {
    opacity: 0.15;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.8) 0%, rgba(10, 10, 15, 0.95) 100%);
}

/* ==============================================
   🌟 NEW: COMMAND CENTER HEADER (Smart Sticky)
   ============================================== */
.command-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.command-header.shrink {
    padding: 0.75rem 2rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.brand-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1002;
}

.brand-logo span {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.6);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

/* Navigation Formatting */
.nav-link {
    font-family: var(--font-display);
    /* Unified Typography */
    font-size: 0.95rem;
    font-weight: 500;
    /* Lighter weight for balance */
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s var(--ease-out);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-cyan);
}

.btn-quote {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--neon-cyan);
    background: rgba(255, 107, 0, 0.1);
    color: var(--neon-cyan);
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-quote:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 1002;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.1);
}

/* ===== MOBILE SLIDE-IN PANEL ===== */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(12, 14, 20, 0.97);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-left: 1px solid rgba(255, 107, 0, 0.15);
    display: flex;
    flex-direction: column;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0);
    overflow-y: auto;
    padding: 0;
}

.mobile-overlay.active {
    transform: translateX(0);
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.8);
}

/* Dark backdrop when menu is open */
.mobile-overlay::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.mobile-overlay.active::before {
    opacity: 1;
}

/* Close button area */
.mobile-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.mobile-close-btn:hover {
    background: rgba(255, 107, 0, 0.15);
    border-color: var(--neon-cyan);
    transform: rotate(90deg);
}

/* Mobile navigation links */
.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0;
    flex: 1;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 1.1rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
}

.mobile-overlay.active .mobile-link {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation for links */
.mobile-overlay.active .mobile-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-overlay.active .mobile-link:nth-child(2) {
    transition-delay: 0.17s;
}

.mobile-overlay.active .mobile-link:nth-child(3) {
    transition-delay: 0.24s;
}

.mobile-overlay.active .mobile-link:nth-child(4) {
    transition-delay: 0.31s;
}

.mobile-overlay.active .mobile-link:nth-child(5) {
    transition-delay: 0.38s;
}

.mobile-link::before {
    content: '';
    width: 4px;
    height: 0;
    background: var(--neon-cyan);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.mobile-link:hover,
.mobile-link:active {
    color: #fff;
    background: rgba(255, 107, 0, 0.06);
    padding-left: 1rem;
}

.mobile-link:hover::before {
    height: 20px;
}

/* Special "Teklif Al" link */
.mobile-link[style*="neon-orange"],
.mobile-link.mobile-cta {
    color: var(--neon-orange) !important;
    margin-top: 1rem;
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 8px;
    justify-content: center;
    background: rgba(255, 107, 0, 0.08);
    font-weight: 700;
}

.mobile-link[style*="neon-orange"]:hover,
.mobile-link.mobile-cta:hover {
    background: rgba(255, 107, 0, 0.15);
    border-color: var(--neon-orange);
}

/* Mobile menu footer */
.mobile-menu-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.mobile-menu-footer .brand-logo-mini {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.mobile-menu-footer .brand-logo-mini span {
    color: rgba(255, 107, 0, 0.4);
}

/* ===== RESPONSIVE: Show mobile toggle, hide desktop nav ===== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .btn-quote {
        display: none !important;
    }

    /* Mobilde panelleri göste ve yönü dikey (column) yap */
    .main-wrapper {
        padding: 100px 1rem 2rem;
        justify-content: flex-start;
        flex-direction: column;
        gap: 3rem;
    }

    /* Sıralamayı Ayarla: Mobilde ana ekran en üstte, sonra hizmetler, sonra kurumsal */
    .center-showcase {
        max-width: 100%;
        order: 1;
    }

    .side-panel.left-panel {
        width: 100%;
        order: 2;
    }

    .side-panel.right-panel {
        width: 100%;
        order: 3;
    }

    .pro-card.right-aligned {
        flex-direction: row;
        text-align: left;
    }

    .pro-card.right-aligned .arrow {
        transform: none;
        margin-left: auto;
    }

    .pro-card.right-aligned:hover .arrow {
        transform: translateX(5px);
    }

    h1 {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }

    .trust-counters {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .counter-number {
        font-size: 1.8rem;
    }
}


/* =======================================================
   RESTORING MISSING MAIN CONTENT STYLES (Fixes Layout)
   ======================================================= */

.main-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 100vh;
    padding: 120px 2rem 2rem;
    gap: 2rem;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.center-showcase {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--neon-orange);
    margin-bottom: var(--space-md);
    padding: 0.5rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 2rem;
}

.hero-text h1 {
    margin-bottom: var(--space-md);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Typing Animation */
.txt-rotate>.wrap {
    border-right: 0.08em solid var(--neon-cyan);
    padding-right: 0.3rem;
    animation: blinkCursor 1s infinite;
}

@keyframes blinkCursor {
    50% {
        border-color: transparent;
    }
}

.hero-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Hero Button */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    color: #ffffff;
    /* Cyan to Blue Gradient */
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
    border: none;
    border-radius: 4px;
    /* Slightly sharper corners for industrial look */
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;

    /* Breathing Glow Animation */
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
    animation: btnBreathe 3s infinite ease-in-out;
}

@keyframes btnBreathe {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 35px rgba(255, 107, 0, 0.7);
    }
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.6);
}

/* Side Panels (Restored) */
.side-panel {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.panel-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

/* Pro Card (Restored) */
/* Modern Pro Card */
.pro-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;

    /* True Glassmorphism */
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);

    border-radius: 0.75rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

/* Modern Pro Card Hover Effects */
.pro-card:hover {
    /* Subtle Lift (Improved) */
    transform: translateY(-3px);
    border-color: var(--accent-cyan);
    background: rgba(255, 107, 0, 0.08);
    /* Cyan Glow */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 107, 0, 0.2);
}

.pro-card.right-aligned:hover {
    transform: translateX(-10px);
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-size: 1.4rem;
    color: #ffffff;
    /* Start white */
    transition: all 0.4s var(--ease-out);
    position: relative;
    z-index: 10;
}

.pro-card:hover .icon-box {
    background: var(--accent-cyan);
    color: #000;
    /* High contrast on hover */
    box-shadow: 0 0 15px var(--accent-cyan);
    transform: scale(1.1);
}

.pro-card .text {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
    transition: color 0.3s ease;
}

.pro-card:hover .text {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.pro-card .arrow {
    font-size: 0.875rem;
    opacity: 0.5;
    transition: all var(--transition-base);
}

.pro-card:hover .arrow {
    opacity: 1;
    transform: translateX(5px);
}

.pro-card.right-aligned {
    flex-direction: row-reverse;
    text-align: right;
}

.pro-card.right-aligned:hover .arrow {
    transform: translateX(-5px);
}

/* Whatsapp Button (Restored) */
.float-whatsapp {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: whatsappPulse 2s infinite;
    transition: all var(--transition-base);
    z-index: 99999 !important;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.float-whatsapp:hover {
    transform: scale(1.15) rotate(15deg);
}

/* ==============================================
   🌟 NEW: SIGNATURE FOOTER (Fixed Layout)
   ============================================== */
.signature-footer {
    position: relative;
    background: rgba(10, 10, 10, 0.95);
    color: #fff;
    padding: 6rem 2rem 2rem;
    overflow: hidden;
    border-top: 2px solid var(--neon-cyan);
    box-shadow: 0 -10px 50px rgba(255, 107, 0, 0.1);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    align-items: start;
}

.signature-footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-column {
    position: relative;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: inline-block;
    color: #fff !important;
    /* YAPI part is white */
    text-decoration: none !important;
}

.footer-logo span {
    color: var(--neon-cyan);
    /* MONTAJ part is orange */
    text-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--neon-orange);
    margin-top: 5px;
}

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

.signature-footer a {
    text-decoration: none !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #ff6b00 !important;
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
}

.footer-links a i {
    color: var(--neon-cyan);
    transition: color 0.3s;
}

.footer-links a:hover i {
    color: #fff;
}

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

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn i {
    z-index: 2;
    transition: transform 0.3s;
}

.social-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--neon-cyan);
    top: 100%;
    left: 0;
    transition: top 0.3s;
    z-index: 1;
}

.social-btn:hover::after {
    top: 0;
}

.social-btn:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

.social-btn:hover i {
    color: #000 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.yasal-linkler a {
    color: rgba(255, 255, 255, 0.4) !important;
    margin: 0 5px;
    transition: color 0.3s;
}

.yasal-linkler a:hover {
    color: var(--neon-cyan) !important;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .main-wrapper {
        flex-direction: column;
        padding: 4rem 1.5rem 2rem;
    }

    .side-panel {
        width: 100%;
        order: 2;
    }

    .center-showcase {
        order: 1;
        margin-bottom: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .btn-quote {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-text h1 {
        min-height: 120px;
        font-size: 2.5rem;
    }

    .signature-footer {
        padding: 4rem 1.5rem 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .pro-card {
        padding: 1rem;
    }
}

/* ===== 6. TRUST COUNTERS & PRELOADER ===== */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    animation: loaderPulse 1.5s infinite;
}

.loader-logo span {
    color: var(--accent-cyan);
}

.loader-line {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent-cyan);
    animation: loaderLine 2s ease-in-out forwards;
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.98);
    }
}

@keyframes loaderLine {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Trust Counters */
.trust-counters {
    display: flex;
    justify-content: center;
    /* Centering fix */
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    /* For animation */
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

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

.counter-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    /* Minimal/Thin */
    color: var(--accent-cyan);
    line-height: 1;
}

.counter-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    display: block;
}

/* Scroll Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
    /* Corrected from 3845 */
}

/* ==============================================
   📱 MOBILE PERFORMANCE OPTIMIZATION
   Masaüstü deneyimi AYNEN korunur.
   Sadece mobilde ağır efektler devre dışı.
   ============================================== */
@media (max-width: 1024px) {

    /* 1. body::before dot-grid pattern — her scroll'da repaint yapıyordu */
    body::before {
        display: none !important;
    }

    /* 2. backdrop-filter: blur() — mobil GPU'yu çökertiyor */
    .glass-card,
    .pro-card,
    .command-header.shrink,
    .mobile-overlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* 3. Sonsuz box-shadow animasyonlarını durdur */
    .hero-btn {
        animation: none !important;
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.4) !important;
    }

    .float-whatsapp {
        animation: none !important;
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4) !important;
    }

    /* 4. Video background — mobilde gizle, statik arka plan koy */
    .bg-video {
        display: none !important;
    }

    .video-background {
        background: var(--color-bg) !important;
    }

    .video-overlay {
        background: rgba(10, 10, 15, 0.95) !important;
    }

    /* 5. Hover transform efektlerini kaldır (touch cihazlarda takılma yapıyor) */
    .pro-card:hover {
        transform: none !important;
    }

    .glass-card:hover {
        transform: none !important;
    }

    .float-whatsapp:hover {
        transform: scale(1.05) !important;
    }
}