/* ========================================
   SigortaçıPlus - Custom CSS Styles
   ======================================== */

:root {
    --primary-color: #1e3c72;
    --secondary-color: #2a5298;
    --warning-color: #ff9800;
    --dark-color: #0f1e36;
    --light-color: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-color: #e0e0e0;
    --primary: #1e3c72;
    --secondary: #2a5298;
    --accent: #ff9800;
    --accent-orange : #ff9800;
    --light: #f5f7fa;
    --border: #e1e4e8;
    --text: #1f2937;
    --text-light: #6b7280;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --success: #10b981;
    --danger: #ef4444;
}

/* ========================================
   GENERAL STYLES
   ======================================== */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-primary);
    background-color: #ffffff;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   NAVBAR & HEADER
   ======================================== */
.sigorta-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.sigorta-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    box-shadow: 0 2px 10px rgba(30, 60, 114, 0.2);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: white !important;
}

.navbar-brand i {
    color: var(--warning-color);
    font-size: 28px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--warning-color) !important;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--warning-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.search-container {
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    border: none;
    padding: 12px 16px;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
}

.search-input:focus {
    box-shadow: none;
    border-color: var(--warning-color);
}

.btn-search {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    background-color: var(--warning-color) !important;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background-color: #e68900 !important;
    transform: translateY(-2px);
}

.btn-hover {
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    background-color: var(--light-color);
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 2rem;
}

.feature-card {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 2px solid var(--warning-color);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 30px;
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.feature-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.feature-text {
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.6;
}

/* ========================================
   INSURANCE TYPES SECTION
   ======================================== */
.insurance-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.insurance-section {
    background: white;
}

.insurance-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(30, 60, 114, 0.15);
    transition: all 0.3s ease;
}

.insurance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(30, 60, 114, 0.25);
}

.insurance-icon {
    font-size: 30px;
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.insurance-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.insurance-desc {
    font-size: 12px;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.insurance-card .btn-outline-warning {
    color: var(--warning-color);
    border-color: var(--warning-color);
    transition: all 0.3s ease;
}

.insurance-card .btn-outline-warning:hover {
    background-color: var(--warning-color);
    color: white;
    border-color: var(--warning-color);
}
.stat-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--warning-color);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--warning-color);
    margin-bottom: 0.5rem;
}


.section-divider {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, transparent, var(--warning-color), transparent);
    margin: 3rem 0;
}

.tab-nav {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.tab-nav .nav-link {
    color: var(--text-secondary);
    border-bottom: 3px solid transparent;
    font-weight: 600;
    margin-right: 2rem;
    padding-bottom: 1rem;
    transition: all 0.3s ease;
}

.tab-nav .nav-link:hover {
    color: var(--warning-color);
}

.tab-nav .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--warning-color);
}

.listing-item-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
}

.listing-item-card:hover {
    border-color: var(--warning-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.breadcrumb-custom {
    background: white;
    padding: 1rem 0;
    font-size: 13px;
}

.breadcrumb-custom a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    color: var(--warning-color);
}
/* ========================================
   GUIDES & ARTICLES SECTION
   ======================================== */

.guides-section {
    background-color: var(--light-color);
}

.guides-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guide-article {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--warning-color);
    transition: all 0.3s ease;
}

.guide-article:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.article-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.article-title:hover {
    color: var(--warning-color);
}

.article-meta {
    margin-bottom: 1rem;
    font-size: 13px;
}

.article-meta .badge {
    font-weight: 600;
    padding: 0.4rem 0.8rem;
}

.article-content {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.btn-outline-warning {
    color: var(--warning-color);
    border-color: var(--warning-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-warning:hover {
    background-color: var(--warning-color);
    color: white;
    border-color: var(--warning-color);
}

/* ========================================
   SIDEBAR WIDGETS
   ======================================== */

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-top: 3px solid var(--warning-color);
}

.widget-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid var(--warning-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem !important;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.sidebar-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sidebar-list a:hover {
    color: var(--warning-color);
}

.tips-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 8px;
}

.tips-box p {
    font-size: 12px;
    line-height: 1.6;
}

.glossary-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.glossary-item {
    padding: 1rem;
    background-color: var(--light-color);
    border-left: 3px solid var(--warning-color);
    border-radius: 4px;
    font-size: 13px;
}

.glossary-item strong {
    color: var(--primary-color);
}

/* ========================================
   ADSENSE AREAS
   ======================================== */

.adsense-area {
    background-color: #f0f0f0;
    border: 2px dashed #d0d0d0;
    border-radius: 8px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
}

/* ========================================
   STATISTICS SECTION
   ======================================== */

.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.stat-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--warning-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 14px;
    opacity: 0.95;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background-color: var(--light-color);
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    /*text-align: center;*/
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 3px solid var(--warning-color);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    font-size: 42px;
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.contact-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

.contact-info {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    margin: 0.5rem 0;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 12px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}


.contact-form .form-control:focus {
    border-color: var(--warning-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.15);
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.footer-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
}

.footer-title {
    color: var(--warning-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem !important;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--warning-color);
    padding-left: 4px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.footer-copyright a {
    color: var(--warning-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background-color: var(--warning-color);
    color: var(--primary-color);
    transform: translateY(-4px);
    border-color: var(--warning-color);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .navbar-brand {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem !important;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-card,
    .insurance-card,
    .guide-article {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 28px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .navbar-dark .navbar-nav .nav-link {
        margin: 0.25rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .section-title {
        font-size: 20px;
    }

    .feature-icon,
    .insurance-icon,
    .contact-icon {
        font-size: 36px;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 24px;
    }

    .d-flex.gap-2 {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: slideInUp 0.6s ease-out;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-primary {
    color: var(--primary-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.shadow-custom {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* ========================================
   BUTTON CUSTOMIZATION
   ======================================== */

.btn-warning {
    background-color: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
    color: white !important;
    font-weight: 600;
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: #e68900 !important;
    border-color: #e68900 !important;
    color: white !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

/* ========================================
   FORM ALERTS
   ======================================== */

.form-alert {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    animation: slideInUp 0.4s ease-out;
}

.alert-success {
    background-color: #d4edda !important;
    border-color: #c3e6cb !important;
    color: #155724 !important;
}

.alert-danger {
    background-color: #f8d7da !important;
    border-color: #f5c6cb !important;
    color: #721c24 !important;
}

.alert-warning {
    background-color: #fff3cd !important;
    border-color: #ffeeba !important;
    color: #856404 !important;
}

.alert-info {
    background-color: #d1ecf1 !important;
    border-color: #bee5eb !important;
    color: #0c5460 !important;
}

/* ========================================
   LISTINGS PAGE STYLES
   ======================================== */

.listings-section {
    padding: 3rem 1rem;
}

.section-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.15);
}

.section-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.section-header p {
    font-size: 14px;
    opacity: 0.95;
    margin-bottom: 0;
    line-height: 1.6;
}

.section-header .icon {
    font-size: 32px;
    margin-right: 1rem;
    color: var(--warning-color);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.listing-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 125px;
    cursor: pointer;
}

.listing-card:hover {
    border-color: var(--warning-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.listing-card img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 1rem;
    display: inline-block;
}

.listing-card h5 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.listing-card.hidden {
    display: none;
}

.show-all-btn {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.show-all-btn button {
    background-color: var(--warning-color);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.show-all-btn button:hover {
    background-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.show-all-btn button.show-less {
    background-color: var(--primary-color);
}

.show-all-btn button.show-less:hover {
    background-color: var(--secondary-color);
}

.listing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive Grid */
@media (min-width: 1400px) {
    .listings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .listings-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-header {
        padding: 1.5rem;
    }

    .section-header h3 {
        font-size: 20px;
    }

    .listing-card {
        min-height: 150px;
        padding: 1.5rem;
    }

    .listing-card img {
        max-height: 70px;
    }
}

@media (max-width: 576px) {
    .listings-grid {
        gap: 0.75rem;
    }

    .listing-card {
        min-height: 140px;
        padding: 1rem;
    }

    .section-header h3 {
        font-size: 18px;
    }

    .section-header p {
        font-size: 12px;
    }

    .show-all-btn button {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* ========================================
   PAGINATION (SAYFALAMA) STİLLERİ
   ======================================== */

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    text-decoration: none;
}

.pagination .page-link:hover {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    color: white;
    background-color: var(--warning-color);
    border-color: var(--warning-color);
}

.pagination .page-item.disabled .page-link {
    color: #ccc;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.pagination .page-item.disabled .page-link:hover {
    background-color: #f5f5f5;
    border-color: var(--border-color);
}

/* Pagination Info Metin */
.pagination-info {
    font-size: 12px;
    color: var(--text-secondary);
}

.pagination-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Sayfa Boyutu Seçici */
.page-size-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-size-selector .form-select-sm {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    font-size: 12px;
    min-width: 70px;
}

.page-size-selector .form-select-sm:focus {
    border-color: var(--warning-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.15);
}
/* ============ FAQ CATEGORIES ============ */
.faq-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 18px;
    border: 1.5px solid var(--border-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ============ FAQ ACCORDION ============ */
.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 16px rgba(26, 39, 68, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    transition: background 0.2s;
    user-select: none;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #f0e8cc 0%, #fffcf4 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, #f5f5f5 0%, #f0f0f0 100%);
}

.faq-item.active .faq-question:hover {
    background: linear-gradient(135deg, #f0e8cc 0%, #fffcf4 100%);
}

.question-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--warning-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.answer-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

        
               
.cta-button {
background: var(--accent-orange);
color: white;
padding: 0.5rem 1rem;
border-radius: 6px;
font-weight: 600;
font-size: 12px;
border: none;
cursor: pointer;
transition: all 0.3s;
}

.cta-button:hover {
background: #e68900;
transform: translateY(-2px);
}

.stat-item {
text-align: center;
}

.stat-number {
font-size: 28px;
font-weight: 700;
color: var(--accent-orange);
}

.stat-label {
font-size: 13px;
opacity: 0.9;
}

.btn-cta {
background: var(--accent-orange);
color: white;
padding: 12px 30px;
border-radius: 6px;
font-weight: 600;
border: none;
cursor: pointer;
margin-right: 1rem;
transition: all 0.3s;
}

.btn-cta:hover {
background: #e68900;
transform: translateY(-3px);
box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.btn-cta-white {
background: white;
color: var(--primary-blue);
padding: 12px 30px;
border-radius: 6px;
font-weight: 600;
border: none;
cursor: pointer;
transition: all 0.3s;
}

.btn-cta-white:hover {
transform: translateY(-3px);
}

/* ===== CONTACT CARD ===== */
.contact-card {
background: var(--bg-light);
border-radius: 12px;
padding: 2rem;
margin-top: 2rem;
}

.contact-item {
display: grid;
grid-template-columns: 50px 1fr;
gap: 1rem;
margin-bottom: 1.5rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}

.contact-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--accent-orange), #ffc107);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 18px;
}

.contact-text h4 {
font-size: 13px;
font-weight: 600;
color: var(--primary-blue);
margin-bottom: 0.25rem;
}

.contact-text p {
font-size: 13px;
color: var(--text-secondary);
margin: 0;
}

.contact-text a {
color: var(--accent-orange);
text-decoration: none;
font-weight: 600;
}

/* ===== HIZMETLER ===== */
.services {
padding: 50px 0;
}

.section-title {
font-family: 'Playfair Display', serif;
font-size: 32px;
font-weight: 700;
margin-bottom: 0.5rem;
color: var(--primary-blue);
}

.section-subtitle {
color: var(--text-secondary);
font-size: 14px;
margin-bottom: 2rem;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}

.service-card {
background: var(--bg-light);
border-radius: 8px;
padding: 1.5rem;
transition: all 0.3s;
}

.service-card:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
transform: translateY(-4px);
}

.service-icon {
font-size: 28px;
color: var(--accent-orange);
margin-bottom: 0.75rem;
}

.service-title {
font-size: 15px;
font-weight: 600;
color: var(--primary-blue);
margin-bottom: 0.5rem;
}

.service-desc {
font-size: 13px;
color: var(--text-secondary);
line-height: 1.5;
}


/* ===== CTA SECTION ===== */
.cta-section {
background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
color: white;
padding: 40px 0;
text-align: center;
margin: 2rem 0;
border-radius: 8px;
}

.cta-section h2 {
font-family: 'Playfair Display', serif;
font-size: 28px;
margin-bottom: 1rem;
}

.cta-section p {
font-size: 15px;
margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
.hero h1 {
    font-size: 28px;
}

.section-title {
    font-size: 24px;
}

.hero-stats {
    grid-template-columns: 1fr;
}

.contact-item {
    grid-template-columns: 40px 1fr;
}

.contact-card {
    padding: 1.5rem;
}

.services-grid {
    grid-template-columns: 1fr;
}
}

@media (max-width: 576px) {
.hero {
    padding: 40px 0;
}

.hero h1 {
    font-size: 22px;
}

.navbar-brand {
    font-size: 18px;
}

.btn-cta {
    margin-bottom: 0.5rem;
    width: 100%;
}
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}
.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}



.insurance-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.insurance-logo {
    margin: 0 auto 0.75rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.insurance-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
}
.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-orange) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.info-item .label {
    font-weight: 600;
    color: #495057;
    margin-right: 8px;
}

.info-item .value {
    color: #6c757d;
}

.info-item a {
    color: #17a2b8;
    text-decoration: none;
}

.info-item a:hover {
    color: #138496;
    text-decoration: underline;
}

a{text-decoration: none;color: var(--primary-color);}
.sigorta-card {
    background: white;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: 0 1px 1px var(--secondary-color);
    transition: all 0.3s ease;
    /*border-left: 4px solid var(--secondary-color);*/
}

.sigorta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    
}

.sigorta-name {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-decoration: none !important;
}

.sigorta-name:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.sigorta-type {
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.contact-link {
    color: var(--warning-color);
    font-size: 0.9rem;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-link i {
    margin-right: 5px;
}
/* ===== SEARCH FORM ===== */
.search-section {
    max-width: 1200px;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.search-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
}

.search-header {
    margin-bottom: 2rem;
    text-align: center;
}

.search-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.search-header p {
    color: var(--text-light);
    font-size: 14px;
}

/* Form Layout */
.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    align-items: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.btn-reset {
    background: white;
    color: var(--text-light);
    border: 1px solid var(--border);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-reset:hover {
    background: var(--light);
    color: var(--text);
}
.sidebar-header {
    background: linear-gradient(135deg, #264b8b, #ffbe00);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}