/* =============================================
   LK SİGORTA - Ana CSS
   ============================================= */

:root {
    --primary: #1a56db;
    --primary-dark: #1e429f;
    --secondary: #0e9f6e;
    --accent: #ff6b35;
    --dark: #111827;
    --gray: #6b7280;
    --light: #f9fafb;
    --border: #e5e7eb;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: #fff;
}

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--primary-dark);
    color: #cbd5e1;
    font-size: .82rem;
    padding: 6px 0;
}
.top-bar a { color: #94a3b8; text-decoration: none; transition: color .2s; }
.top-bar a:hover { color: #fff; }

/* ---- NAVBAR ---- */
.navbar { padding: 12px 0; }
.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.3rem;
}
.logo-lk {
    font-size: 1.4rem; font-weight: 800;
    color: var(--primary); letter-spacing: -1px;
    display: block; line-height: 1;
}
.logo-sigorta {
    font-size: .65rem; font-weight: 600;
    color: var(--gray); letter-spacing: 3px;
    display: block;
}
.navbar .nav-link {
    font-weight: 500; color: var(--dark) !important;
    padding: 8px 14px !important;
    transition: color .2s;
}
.navbar .nav-link:hover { color: var(--primary) !important; }
.dropdown-menu { border: none; box-shadow: 0 10px 40px rgba(0,0,0,.12); border-radius: 12px; padding: 8px; }
.dropdown-item { border-radius: 8px; padding: 8px 14px; font-size: .9rem; transition: background .15s; }
.dropdown-item:hover { background: #eff6ff; color: var(--primary); }

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1a56db 50%, #0e9f6e 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.hero h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: #fbbf24; }
.hero p { font-size: 1.1rem; opacity: .85; margin-bottom: 32px; }
.hero-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(20px);
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2rem; font-weight: 800; color: #fbbf24; }
.hero-stat .lbl { font-size: .78rem; opacity: .8; }
.hero-shield {
    font-size: 12rem;
    color: rgba(255,255,255,.08);
    position: absolute;
    right: -2rem; top: 50%;
    transform: translateY(-50%);
}

/* ---- SECTION ---- */
.section-title { font-size: 2rem; font-weight: 800; color: var(--dark); }
.section-subtitle { color: var(--gray); font-size: 1rem; }
.section-badge {
    display: inline-block;
    background: #eff6ff;
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* ---- PRODUCT CARDS ---- */
.product-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all .3s;
    height: 100%;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(26,86,219,.12); border-color: transparent; }
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 20px;
}
.product-card h5 { font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.product-card p { color: var(--gray); font-size: .9rem; line-height: 1.6; }
.product-card .btn-link { font-weight: 600; font-size: .9rem; text-decoration: none; }

/* ---- WHY US ---- */
.why-card {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    transition: background .2s;
}
.why-card:hover { background: var(--light); }
.why-icon {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    background: #eff6ff; color: var(--primary);
}
.why-card h6 { font-weight: 700; margin-bottom: 4px; }
.why-card p { font-size: .88rem; color: var(--gray); margin: 0; }

/* ---- STATS ---- */
.stats-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; padding: 60px 0; }
.stat-item { text-align: center; }
.stat-item .num { font-size: 2.8rem; font-weight: 800; color: #fbbf24; }
.stat-item .lbl { font-size: .9rem; opacity: .8; margin-top: 4px; }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
    background: var(--light);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
}
.stars { color: #fbbf24; font-size: .9rem; margin-bottom: 12px; }
.testimonial-card p { color: var(--dark); font-style: italic; font-size: .95rem; line-height: 1.7; margin-bottom: 20px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1rem;
}

/* ---- CTA ---- */
.cta-section {
    background: linear-gradient(135deg, #111827, #1e3a8a);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 { font-size: 2.2rem; font-weight: 800; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1a56db 100%);
    color: #fff;
    padding: 70px 0 60px;
}
.page-hero h1 { font-size: 2.5rem; font-weight: 800; }
.breadcrumb-item a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb-item.active { color: #fff; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ---- INNER PAGE ---- */
.detail-icon {
    width: 80px; height: 80px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
}
.coverage-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
    transition: all .2s;
}
.coverage-item:hover { border-color: var(--primary); background: #f0f7ff; }
.coverage-item i { color: var(--secondary); font-size: 1.1rem; margin-top: 2px; }
.coverage-item strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.coverage-item span { font-size: .85rem; color: var(--gray); }

.price-card {
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all .3s;
    height: 100%;
}
.price-card.featured { border-color: var(--primary); background: #f0f7ff; position: relative; }
.price-card.featured::before {
    content: 'En Popüler';
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #fff;
    padding: 4px 20px; border-radius: 50px; font-size: .78rem; font-weight: 700;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.price-card .price { font-size: 2.4rem; font-weight: 800; color: var(--primary); }
.price-card .period { font-size: .85rem; color: var(--gray); }
.price-card ul { list-style: none; padding: 0; text-align: left; margin: 20px 0; }
.price-card ul li { padding: 6px 0; font-size: .9rem; border-bottom: 1px solid var(--border); }
.price-card ul li:last-child { border: none; }
.price-card ul li i { width: 20px; }

/* ---- FAQ ---- */
.accordion-button { font-weight: 600; font-size: .95rem; }
.accordion-button:not(.collapsed) { color: var(--primary); background: #f0f7ff; }
.accordion-button:focus { box-shadow: none; }

/* ---- FORM ---- */
.form-label { font-weight: 600; font-size: .9rem; color: var(--dark); }
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: .95rem;
    transition: border-color .2s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.form-section {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

/* ---- ABOUT PAGE ---- */
.team-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .3s;
    text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.team-avatar {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: #fff;
    margin: 24px auto 16px;
}
.team-card h6 { font-weight: 700; margin-bottom: 4px; }
.team-card span { font-size: .85rem; color: var(--primary); }
.team-card p { font-size: .85rem; color: var(--gray); padding: 0 16px 24px; }

.value-item {
    background: var(--light);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border);
    transition: all .3s;
}
.value-item:hover { background: #eff6ff; border-color: var(--primary); }
.value-item i { font-size: 2rem; color: var(--primary); margin-bottom: 12px; }
.value-item h6 { font-weight: 700; margin-bottom: 8px; }

/* ---- CONTACT ---- */
.contact-info-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 16px;
    padding: 32px;
    color: #fff;
    height: 100%;
}
.contact-info-item {
    display: flex; gap: 14px; align-items: flex-start;
    margin-bottom: 24px;
}
.contact-info-item .ci-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(255,255,255,.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* ---- FOOTER ---- */
.footer { background: #0f172a; }
.footer-top { padding: 60px 0 40px; }
.footer-heading { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: 16px; letter-spacing: .5px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { color: #94a3b8; font-size: .88rem; display: flex; gap: 10px; margin-bottom: 12px; line-height: 1.5; }
.footer-contact li i { color: var(--primary); width: 16px; margin-top: 2px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8; text-decoration: none;
    transition: all .2s;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 20px 0;
    font-size: .85rem;
    color: #64748b;
}
.footer-bottom a { color: #64748b; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ---- UTILITIES ---- */
.text-muted { color: var(--gray) !important; }
.bg-light { background: var(--light) !important; }
.btn-primary { background: var(--primary); border-color: var(--primary); font-weight: 600; }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline-primary { border-color: var(--primary); color: var(--primary); font-weight: 600; }
.btn-outline-primary:hover { background: var(--primary); }

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .hero { padding: 60px 0 50px; }
}
