@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit-bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('../fonts/outfit-medium.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}

/* =========================================
   2. TEMEL DEĞİŞKENLER
   ========================================= */
:root {
    --brand-primary: #1647a2;
    --brand-dark: #0d2e6b;
    --brand-light: #2b65d9;
    --brand-accent: #ffb700;
    --text-dark: #1e293b;
    --text-grey: #64748b;
    --text-white: #ffffff;
    --bg-body: #f8fafc;
}

/* =========================================
   3. GENEL SIFIRLAMA
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-body);
    padding-top: 80px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6, .btn, .navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

/* =========================================
   4. HEADER
   ========================================= */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    
    /* GÜNCELLENMİŞ STATİK GRADYAN (Daha derin ve zengin renkler) */
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 50%, #0d2e6b 100%);
    
    padding: 5px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.site-header.scrolled {
    /* Scroll yapınca şeffaflık ayarı aynı kalır */
    padding: 5px 0;
    background: rgba(22, 71, 162, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* ... geri kalan header kodları aynı ... */

.navbar-brand .site-logo { height: 62px; width: auto; transition: all 0.3s ease; }
.navbar-brand:hover .site-logo { transform: scale(1.05); filter: drop-shadow(0 0 5px rgba(255,255,255,0.5)); }

.nav-link {
    color: rgba(255,255,255, 0.9) !important;
    font-weight: 500; font-size: 0.95rem; margin: 0 12px; position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--text-white) !important; }
.nav-link::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -4px; left: 50%; background-color: var(--brand-accent);
    transition: all 0.3s ease; transform: translateX(-50%);
}
.nav-link:hover::after { width: 80%; }

.btn-header-cta {
    background: var(--brand-accent); color: var(--brand-dark);
    font-weight: 700; padding: 10px 24px; border-radius: 50px;
    font-size: 0.85rem; box-shadow: 0 4px 15px rgba(255, 183, 0, 0.3);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-header-cta:hover { background: white; color: var(--brand-primary); transform: translateY(-2px); }

.dropdown-toggle::after { display: none !important; }
.nav-link.dropdown-toggle { display: flex; align-items: center; }

/* =========================================
   5. HERO SECTION & BUTONLAR
   ========================================= */
.hero-section {
    position: relative; width: 100%; min-height: 85vh;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover; background-position: center;
    background-attachment: scroll;
    display: flex; align-items: center; overflow: hidden;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, rgba(22, 71, 162, 0.92) 0%, rgba(5, 20, 50, 0.96) 100%);
    z-index: 1;
}
.hero-section h1 { font-size: 3rem; line-height: 1.2; letter-spacing: -1px; }
.text-accent { color: var(--brand-accent) !important; }

.badge-luxury {
    display: inline-flex; align-items: center;
    background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--brand-accent); padding: 8px 18px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; backdrop-filter: blur(5px);
}

/* --- KRİTİK BUTON DÜZENLEMESİ (SİMETRİK) --- */
.hero-buttons {
    display: flex; gap: 20px; flex-wrap: wrap;
}

.btn-primary-custom, .btn-glass-light {
    display: flex; 
    align-items: center; 
    justify-content: center; /* İçeriği ortala */
    gap: 15px; /* İkon ve Yazı arası boşluk */
    padding: 12px 25px; 
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 65px; /* İkisi de aynı yükseklikte */
}

.btn-primary-custom {
    background: linear-gradient(135deg, #ffb700 0%, #ffca28 100%);
    color: #0d2e6b; border: 2px solid transparent;
    box-shadow: 0 10px 20px rgba(255, 183, 0, 0.3);
}
.btn-primary-custom:hover { transform: translateY(-3px); color: #0d2e6b; }

.btn-glass-light {
    background: rgba(255, 255, 255, 0.1); border: 2px solid rgba(255, 255, 255, 0.2);
    color: white; backdrop-filter: blur(10px);
}
.btn-glass-light:hover { background: rgba(255, 255, 255, 0.2); color: white; transform: translateY(-3px); }

/* İkon Kutularının Boyutları */
.icon-box, .icon-box-glass {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
    flex-shrink: 0; /* İkonun sıkışmasını engeller */
}
.icon-box { background: rgba(255,255,255,0.3); }
.icon-box-glass { background: rgba(255,255,255,0.1); }

/* Güven Sinyalleri */
.signal-badge {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px; border-radius: 12px; backdrop-filter: blur(5px);
}
.signal-icon {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 16px;
}

/* Canlı Takip Kartı */
.glass-card-wrapper { position: relative; padding: 20px; }
.glow-circle {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 300px; height: 300px; background: var(--brand-primary);
    filter: blur(80px); opacity: 0.4; z-index: -1;
}
.glass-card {
    background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px; padding: 25px; box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.pulse-dot {
    width: 10px; height: 10px; background-color: #25d366; border-radius: 50%;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.7); animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.floating-animation { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-15px); } }
.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; transform: translateY(20px); }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* =========================================
   6. HİZMETLER BÖLÜMÜ
   ========================================= */
.services-section {
    padding: 100px 0; background-color: #f8fafc; position: relative; overflow: hidden;
}
.title-decor-icon {
    position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
    font-size: 8rem; color: rgba(22, 71, 162, 0.04); z-index: 0; pointer-events: none;
}
.line-decor {
    width: 40px; height: 3px; background: var(--brand-accent); border-radius: 2px;
}
.highlight-text {
    color: var(--brand-primary); position: relative; z-index: 1; font-weight: 800;
}
.highlight-text::after {
    content: ''; position: absolute; bottom: 5px; left: 0; width: 100%;
    height: 10px; background-color: rgba(255, 183, 0, 0.15); z-index: -1; border-radius: 4px;
}

.service-card-modern {
    display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
    background: #ffffff; border: 1px solid #1647a2;
    box-shadow: 0 0 15px rgba(22, 71, 162, 0.08); border-radius: 16px;
    padding: 25px; height: 100%; text-decoration: none; position: relative;
    overflow: hidden; z-index: 1; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card-icon {
    width: 50px; height: 50px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 20px; transition: 0.3s;
}
.card-title { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; transition: 0.3s; }
.card-text { font-size: 0.9rem; color: var(--text-grey); line-height: 1.5; margin-bottom: 20px; transition: 0.3s; }
.card-arrow {
    position: absolute; bottom: 20px; right: 20px; opacity: 0.5;
    color: var(--brand-primary); font-size: 1.1rem; transition: 0.3s;
}

.service-card-modern:hover {
    background: var(--brand-primary); transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(22, 71, 162, 0.3); border-color: var(--brand-primary);
}
.service-card-modern:hover .card-icon {
    background: rgba(255, 255, 255, 0.15) !important; color: var(--brand-accent) !important;
}
.service-card-modern:hover .card-title, .service-card-modern:hover .card-text { color: white; }
.service-card-modern:hover .card-text { opacity: 0.85; }
.service-card-modern:hover .card-arrow { opacity: 1; color: var(--brand-accent); transform: translateX(5px); }

.bg-primary-subtle { background-color: rgba(13, 110, 253, 0.1) !important; }
.bg-success-subtle { background-color: rgba(25, 135, 84, 0.1) !important; }
.bg-danger-subtle { background-color: rgba(220, 53, 69, 0.1) !important; }
.bg-info-subtle { background-color: rgba(13, 202, 240, 0.1) !important; }
.bg-warning-subtle { background-color: rgba(255, 193, 7, 0.1) !important; }
.bg-dark-subtle { background-color: rgba(33, 37, 41, 0.1) !important; }

/* =========================================
   7. GÜVEN & HAKKIMIZDA & FOOTER
   ========================================= */
.trust-animated-section { position: relative; padding: 80px 0; overflow: hidden; background-color: #051b45; }
.animated-bg {
    position: absolute; top: 0; left: 0; width: 200%; height: 100%;
    background: linear-gradient(270deg, #0d2e6b, #1647a2, #051b45, #0d2e6b);
    background-size: 400% 400%; animation: gradientMove 15s ease infinite; z-index: 1;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; }
}
.trust-card-glass {
    position: relative; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 30px 25px;
    height: 100%; transition: all 0.4s ease; overflow: hidden;
    display: flex; flex-direction: column; align-items: center; text-align: center; z-index: 2;
}
.card-glow {
    position: absolute; width: 100px; height: 100px; background: var(--brand-accent);
    filter: blur(40px); opacity: 0; border-radius: 50%; top: -20px; right: -20px; transition: 0.5s; z-index: -1;
}
.icon-box-floating {
    width: 70px; height: 70px; background: rgba(22, 71, 162, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 28px;
    color: var(--brand-accent); margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); transition: 0.4s;
}
.trust-card-glass:hover {
    transform: translateY(-10px); border-color: rgba(255, 183, 0, 0.5);
    background: rgba(255, 255, 255, 0.1); box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.trust-card-glass:hover .card-glow { opacity: 0.4; }
.trust-card-glass:hover .icon-box-floating {
    background: var(--brand-accent); color: #0d2e6b; transform: rotateY(180deg);
}

/* Hakkımızda */
.about-section { background-color: white; padding: 100px 0; overflow: hidden; }
.image-frame { position: relative; padding: 20px; }
.decor-box-yellow { display: none !important; }
.experience-card {
    position: absolute; bottom: 40px; right: -20px; background: white; padding: 20px;
    border-radius: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 15px; z-index: 3;
    border-left: 5px solid var(--brand-primary);
}
.exp-icon {
    width: 50px; height: 50px; background: #f0f4fa; color: var(--brand-primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.line-decor-short { width: 30px; height: 3px; background-color: var(--brand-primary); border-radius: 2px; }

/* Footer */
.site-footer {
    background-color: #0b2452; color: #e2e8f0; padding-top: 80px;
    padding-bottom: 30px; position: relative; font-size: 0.95rem;
}
.footer-logo { height: 60px; width: auto; opacity: 0.9; transition: all 0.3s ease; }
.footer-logo:hover { opacity: 1; transform: scale(1.05); }
.footer-title {
    color: var(--text-white); font-family: 'Outfit', sans-serif;
    font-weight: 600; margin-bottom: 25px; position: relative; padding-bottom: 10px;
}
.footer-title::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 40px; height: 3px; background-color: var(--brand-accent);
}
.footer-links li, .footer-contact li { margin-bottom: 15px; }
.footer-links a { color: #cbd5e1; transition: 0.3s; display: inline-block; }
.footer-links a:hover { color: var(--brand-accent); transform: translateX(5px); }
.footer-contact li { display: flex; gap: 15px; color: #cbd5e1; }
.footer-contact i { color: var(--brand-accent); margin-top: 5px; }
.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; background: rgba(255,255,255,0.05);
    color: white; border-radius: 50%; margin-right: 10px; transition: 0.3s;
}
.social-links a:hover { background: var(--brand-accent); color: #0b2452; transform: translateY(-3px); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 40px 0 30px 0; }
.copyright-section { font-size: 0.9rem; color: #94a3b8; }

/* =========================================
   8. EKLENTİLER (MODAL & COOKIE)
   ========================================= */
.bg-primary-dark { background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 100%); color: white; }
.modal-content { border-radius: 15px; overflow: hidden; }
.nav-pills .nav-link.active { background-color: var(--brand-primary); box-shadow: 0 4px 10px rgba(22, 71, 162, 0.3); }
.form-control:focus, .input-group:focus-within .input-group-text { border-color: var(--brand-primary); box-shadow: none; }

.cookie-consent {
    position: fixed; bottom: -100%; left: 0; width: 100%;
    background: rgba(13, 46, 107, 0.95); color: white; padding: 20px 0;
    z-index: 99999; backdrop-filter: blur(10px); transition: bottom 0.5s ease-in-out;
}
.cookie-consent.show { bottom: 0; }
.cookie-btn {
    background: var(--brand-accent); color: #0d2e6b; border: none;
    padding: 8px 25px; border-radius: 50px; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.cookie-btn:hover { background: white; transform: scale(1.05); }

/* --- FLOATING ACTIONS SİLİNDİ / GİZLENDİ --- */
.floating-actions, .fab-btn, .fab-whatsapp, .fab-phone {
    display: none !important;
}

/* =========================================
   9. MOBİL VE TABLET ÖZEL AYARLAR (%100 UYUM)
   ========================================= */
@media (max-width: 991px) {
    /* Header ve Boşluklar */
    body { padding-top: 60px !important; } 
    .navbar-collapse {
        background: var(--brand-dark); padding: 20px;
        border-radius: 12px; margin-top: 15px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }
    .nav-link { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .btn-header-cta { width: 100%; margin-top: 15px; justify-content: center; }
    .navbar-toggler { border: none; padding: 0; font-size: 1.5rem; color: white; }
    .navbar-toggler:focus { box-shadow: none; }
    .site-logo { height: 35px; } 
    .footer-logo { height: 45px; }

    /* Hero Alanı (Daraltılmış Boşluklar) */
    .hero-section {
        padding-top: 80px !important; 
        padding-bottom: 40px !important;
        min-height: auto !important;
    }
    .hero-section .container { padding-top: 20px !important; }
    .hero-section h1 { font-size: 2.2rem; }
    
    /* --- HERO BUTONLARI (MOBİLDE SİMETRİK) --- */
    .hero-buttons { 
        flex-direction: column; width: 100%; gap: 15px !important; 
    }
    
    .btn-primary-custom, .btn-glass-light {
        width: 100%; 
        /* İkon ve Yazıyı ortala, yan yana koy */
        justify-content: center !important; 
        gap: 15px; /* İkon ve yazı arası boşluk */
        min-height: 60px; /* Eşit yükseklik */
    }

    /* Hero Kart & Yazı */
    .glass-card-wrapper {
        margin-top: 40px; transform: scale(1); width: 100%; padding: 0;
    }
    .glow-circle { width: 200px; height: 200px; }
    .text-nowrap { white-space: normal !important; }

    /* Hizmetler */
    .services-section { padding: 60px 0; }
    .title-decor-icon { font-size: 5rem; top: -20px; }
    .lead-sm { width: 100% !important; font-size: 0.95rem; }
    
    .service-card-modern { padding: 15px; min-height: 200px; border-radius: 12px; }
    .card-icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 12px; }
    .card-title { font-size: 0.95rem; margin-bottom: 5px; }
    .card-text {
        font-size: 0.75rem;
        display: -webkit-box; -webkit-line-clamp: 3;
        -webkit-box-orient: vertical; overflow: hidden;
    }
    .card-arrow { bottom: 10px; right: 10px; font-size: 12px; }
    
    /* Hakkımızda Bölümü */
    .about-section { padding: 60px 0; }
    .experience-card { right: 0; bottom: 0; padding: 15px; }
    .image-frame { padding: 0; margin-bottom: 30px; }
    
    /* Güven Bölümü */
    .trust-card-glass {
        flex-direction: row; text-align: left; padding: 20px; align-items: center; gap: 20px;
    }
    .icon-box-floating {
        margin-bottom: 0; width: 60px; height: 60px; font-size: 24px; flex-shrink: 0;
    }
}

/* --- MOBİL ARKA PLAN ÖZEL --- */
@media (max-width: 768px) {
    .hero-section {
        background-image: url('../img/hero-bg-mobile.jpg') !important;
        background-position: center top !important;
        background-size: cover !important;
        background-attachment: scroll !important;
        min-height: 100vh !important;
        padding-top: 100px !important;
    }
}