﻿/* ==========================================================================
   MENUMXPRESS KURUMSAL STİL DOSYASI (2026)
   ========================================================================== */

/* --- 1. DEĞİŞKENLER & GENEL AYARLAR --- */
:root {
    --primary: #007dc8; /* Ana Mavi */
    --primary-dark: #005080; /* Koyu Mavi (Hover ve Footer) */
    --primary-light: #e0f2fe; /* Açık Mavi (Arkaplanlar) */
    --accent: #f59e0b; /* Turuncu (Aksiyon/Badge) */
    --text-dark: #1e293b; /* Ana Metin Rengi */
    --text-muted: #64748b; /* Yardımcı Metin */
    --white: #ffffff;
    --light: #f8fafc;
    --border-radius: 16px; /* Modern yumuşak köşeler */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* --- 2. PRELOADER (Yükleme Ekranı) --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader-brand {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -1px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.spinner-custom {
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* --- 3. NAVBAR (Menü) --- */
.navbar {
    padding: 15px 0;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1000;
}

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-sm);
        padding: 10px 0;
    }

.navbar-brand img {
    height: 45px;
    transition: 0.3s;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 12px;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--primary);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after, .nav-link.active::after {
        width: 100%;
    }

    .nav-link:hover {
        color: var(--primary) !important;
    }

/* --- 4. HERO SECTION (Vitrin) --- */
.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

    .hero-highlight::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 15px;
        background: rgba(0, 125, 200, 0.1);
        z-index: -1;
        transform: skewX(-15deg);
    }

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

/* Butonlar */
.btn-custom {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px -5px rgba(0, 125, 200, 0.4);
    border: none;
}

    .btn-primary-custom:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        color: #fff;
    }

.btn-outline-custom {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #e2e8f0;
}

    .btn-outline-custom:hover {
        border-color: var(--text-dark);
        background: var(--text-dark);
        color: var(--white);
    }

/* Hero Görsel Efektleri */
.hero-img-box {
    position: relative;
    z-index: 10;
    perspective: 1000px;
}

.phone-mockup {
    border-radius: 40px;
    border: 12px solid #1e293b;
    background: #000;
    box-shadow: var(--shadow-lg);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
}

.hero-img-box:hover .phone-mockup {
    transform: rotateY(0) rotateX(0);
}

/* Arkaplan Şekilleri */
.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 1;
    border-radius: 50%;
}

.blob-1 {
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(0, 125, 200, 0.15);
}

.blob-2 {
    bottom: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(245, 158, 11, 0.1);
}

/* --- 5. BÖLÜM BAŞLIKLARI --- */
.section-padding {
    padding: 100px 0;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
}

/* --- 6. KARTLAR (Özellikler & Adımlar) --- */
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-light);
    }

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: 0.3s;
}

.feature-card:hover .icon-box {
    background: var(--primary);
    color: var(--white);
}

/* --- 7. ADIMLAR (Nasıl Çalışır) --- */
.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 125, 200, 0.3);
}

/* --- 8. FOOTER --- */
.footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding-top: 80px;
    font-size: 0.95rem;
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem;
}
/* --- FOOTER CONTACT (BİZE ULAŞIN) ÖZEL STİLİ --- */
.footer-contact-list {
    margin-top: 20px;
    padding: 0;
}

    .footer-contact-list li {
        display: flex;
        align-items: flex-start; /* İkon ile metni üstten hizala */
        margin-bottom: 20px;
        color: #94a3b8; /* Muted Text Rengi */
    }

/* İkon Kutusu */
.contact-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: rgba(0, 125, 200, 0.1); /* --primary renginin şeffaf hali */
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
    transition: 0.3s ease;
}

/* Satır üzerine gelince ikon parlasın */
.footer-contact-list li:hover .contact-icon {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 125, 200, 0.4);
}

/* Linkler ve Metinler */
.contact-text {
    align-self: center;
}

.contact-link {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    align-self: center;
    font-weight: 500;
}

    .contact-link:hover {
        color: #ffffff; /* Hover olunca beyaz yap */
        padding-left: 5px; /* Hafif sağa kayma efekti */
    }

.footer-link {
    color: #94a3b8;
    display: block;
    margin-bottom: 12px;
    transition: 0.3s;
}

    .footer-link:hover {
        color: var(--white);
        padding-left: 5px;
    }

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

    .social-link:hover {
        background: var(--primary);
        transform: translateY(-3px);
    }

.footer-bottom {
    
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* --- 9. MOBİL UYUMLULUK --- */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        margin-top: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        text-align: center;
        padding-top: 100px;
    }

    .hero-img-box {
        margin-top: 50px;
    }

    .phone-mockup {
        max-width: 250px;
        transform: none !important;
    }
}
/* --- YÖNETİM PANELİ PRELOADER --- */
.ts-admin-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* Arkaplan beyaz */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Marka Yazısı */
.loader-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937; /* Koyu gri yazı */
    letter-spacing: -1px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

/* X Animasyon Kapsayıcısı */
.x-anim-wrapper {
    position: relative;
    width: 30px; /* X harfinin genişliği */
    height: 40px;
    margin: 0 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* X'in Parçaları (Çubuklar) */
.x-bar {
    position: absolute;
    width: 6px;
    height: 35px;
    background-color: #f59e0b; /* X Rengi: Turuncu */
    border-radius: 4px;
}

/* X'in Sol Bacağı (\) - Sağa Gidecek */
.x-left {
    transform: rotate(-35deg);
    animation: moveRight 1.2s infinite alternate ease-in-out;
}

/* X'in Sağ Bacağı (/) - Sola Gidecek */
.x-right {
    transform: rotate(35deg);
    animation: moveLeft 1.2s infinite alternate ease-in-out;
}

/* Yuvarlak Dönme Efekti (Spinner) */
.spinner-custom {
    width: 40px;
    height: 40px;
    border: 4px solid #e0f2fe; /* Açık Mavi */
    border-top-color: #007dc8; /* Ana Mavi */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

/* "Yükleniyor" Yazısı */
.ts-loader-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulse 1.5s infinite;
}

/* --- ANİMASYON KEYFRAME'LERİ --- */

/* Sağa Gitme Hareketi */
@keyframes moveRight {
    0% {
        transform: translateX(0) rotate(-35deg);
        opacity: 1;
    }

    100% {
        transform: translateX(12px) rotate(-35deg); /* 12px sağa kay */
        opacity: 0.4;
    }
}

/* Sola Gitme Hareketi */
@keyframes moveLeft {
    0% {
        transform: translateX(0) rotate(35deg);
        opacity: 1;
    }

    100% {
        transform: translateX(-12px) rotate(35deg); /* 12px sola kay */
        opacity: 0.4;
    }
}

/* Dönme Hareketi */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Yanıp Sönme Hareketi */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}