/* ===== TDG Sigorta - Ana Stil ===== */

:root {
    --primary: #0d6efd;
    --warning: #ffc107;
    --dark: #212529;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

/* ===== Hero ===== */
.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 50%, #073b8a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
}

/* ===== Card Hover ===== */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1) !important;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== Navbar ===== */
.navbar .nav-link {
    padding: 0.75rem 1rem !important;
    transition: color 0.2s;
}

.navbar .nav-link:hover {
    color: var(--primary) !important;
}

.dropdown-menu .dropdown-item {
    padding: 0.6rem 1.2rem;
    transition: background 0.2s;
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(13, 110, 253, 0.08);
}

/* ===== Footer ===== */
.hover-white:hover {
    color: white !important;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* ===== Accordion ===== */
.accordion-button:not(.collapsed) {
    background: rgba(13, 110, 253, 0.05);
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
}

/* ===== Form Stilleri ===== */
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

/* ===== Blog ===== */
.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem !important;
    }
    .hero-section .lead {
        font-size: 1rem !important;
    }
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        bottom: 15px;
        right: 15px;
    }
}

/* ===== Stars ===== */
.text-warning .bi-star-fill {
    color: #ffc107;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
