/* ===== Ada Sigorta — Design System CSS ===== */

:root {
    --navy-900: #0A1628;
    --navy-800: #0F2B4C;
    --navy-700: #152238;
    --navy-600: #1B4F72;
    --blue-500: #2980B9;
    --blue-400: #3498DB;
    --blue-300: #5DADE2;
    --sky-200: #AED6F1;
    --sky-100: #D6EAF8;
    --sky-50: #EBF5FB;
    --gold-500: #C8A951;
    --gold-400: #D4B96A;
    --gold-300: #E0CA83;
    --warm-white: #F8F9FA;
    --gray-700: #2D3748;
    --gray-500: #5D6D7E;
    --gray-300: #B0BEC5;
    --gray-100: #ECEFF1;
    --white: #FFFFFF;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--navy-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--blue-500); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--blue-400); }

img { max-width: 100%; height: auto; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0 40px;
}

.nav-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
}

.nav-logo img { width: 32px; height: 32px; }

.nav-logo span {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 16px; color: var(--white); letter-spacing: -0.3px;
}

.nav-logo span em { font-style: normal; font-weight: 400; opacity: 0.8; }

.nav-links {
    display: flex; gap: 32px; list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.65); text-decoration: none;
    font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
    text-transform: uppercase; transition: color 0.3s;
}

.nav-links a:hover { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.lang-switch {
    color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 600;
    letter-spacing: 0.5px; padding: 6px 12px; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px; transition: all 0.3s;
}

.lang-switch:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

.nav-hamburger {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px;
}

.nav-hamburger span {
    display: block; width: 24px; height: 2px; background: var(--white);
    transition: all 0.3s;
}

/* ===== TURKEY NOTICE ===== */
.turkey-notice {
    background: var(--gold-500); color: var(--white);
    padding: 8px 40px; margin-top: 64px; font-size: 13px; text-align: center;
}

.turkey-notice-inner { display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 40%, var(--navy-600) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 80px 40px; margin-top: 64px;
}

.hero-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; opacity: 0.8;
}

.hero-content { position: relative; z-index: 2; }

.hero-logo { margin-bottom: 48px; animation: fadeInUp 1s ease-out; }
.hero-logo img { width: 140px; height: 140px; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3)); }

.hero-heading {
    font-family: 'Montserrat', sans-serif; font-size: clamp(28px, 5vw + 1rem, 48px); font-weight: 800;
    color: var(--white); letter-spacing: -2px; margin-bottom: 8px;
    line-height: 1.1; max-width: 700px; margin-left: auto; margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-brand {
    font-family: 'Montserrat', sans-serif; font-size: 64px; font-weight: 800;
    color: var(--white); letter-spacing: -2px; margin-bottom: 8px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-brand em { font-style: normal; font-weight: 400; }

.hero-divider {
    width: 60px; height: 2px; background: var(--gold-500);
    margin: 32px auto; animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif; font-size: clamp(14px, 2vw + 0.5rem, 20px); font-weight: 300;
    color: var(--gold-400); letter-spacing: 4px; text-transform: uppercase;
    margin-bottom: 16px; animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 16px; color: rgba(255,255,255,0.5); font-weight: 400;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 48px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-actions {
    display: flex; gap: 16px; justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 2; animation: fadeInUp 1s ease-out 1s both;
}

.hero-scroll-indicator {
    width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px; position: relative;
}

.hero-scroll-dot {
    width: 4px; height: 8px; background: var(--gold-500); border-radius: 2px;
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 22px; opacity: 0.3; }
}

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

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--navy-900); padding: 0 40px; margin-top: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.breadcrumb-inner {
    max-width: 1400px; margin: 0 auto; padding: 14px 0;
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,0.4);
}

.breadcrumb-inner a { color: rgba(255,255,255,0.6); }
.breadcrumb-inner a:hover { color: var(--white); }
.breadcrumb-inner span { color: var(--gold-400); }
.breadcrumb-inner svg { opacity: 0.4; flex-shrink: 0; }

.breadcrumb + .page-header { margin-top: 0; }

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    padding: 140px 40px 80px; text-align: center; margin-top: 64px;
}

.page-header-inner { max-width: 800px; margin: 0 auto; }

.page-header h1 {
    font-family: 'Montserrat', sans-serif; font-size: clamp(26px, 4vw + 1rem, 42px); font-weight: 700;
    color: var(--white); margin-bottom: 16px; letter-spacing: -1px;
}

.page-header p { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===== SECTIONS ===== */
.section { padding: 80px 40px; max-width: 1400px; margin: 0 auto; }

.section-dark {
    background: var(--navy-900); max-width: 100%; padding: 80px 40px;
}

.section-dark .section-inner { max-width: 1400px; margin: 0 auto; }

.section-light {
    background: var(--sky-50); max-width: 100%; padding: 80px 40px;
}

.section-light .section-inner { max-width: 1400px; margin: 0 auto; }

.section-label {
    font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; color: var(--blue-500); margin-bottom: 16px;
}

.section-dark .section-label { color: var(--gold-500); }

.section-title {
    font-family: 'Montserrat', sans-serif; font-size: clamp(24px, 3.5vw + 0.75rem, 36px); font-weight: 700;
    letter-spacing: -1px; color: var(--navy-900); margin-bottom: 24px; line-height: 1.2;
}

.section-dark .section-title { color: var(--white); }

.section-desc {
    font-size: 18px; color: var(--gray-500); max-width: 680px; line-height: 1.8; margin-bottom: 48px;
}

.section-dark .section-desc { color: rgba(255,255,255,0.55); }

.section-cta { text-align: center; margin-top: 48px; }

.cta-section { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: 8px; font-size: 14px;
    font-family: 'Montserrat', sans-serif; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer; transition: all 0.3s;
}

.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--white); box-shadow: 0 4px 15px rgba(200, 169, 81, 0.3);
}

.btn-gold:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200, 169, 81, 0.4); }

.btn-gold-sm {
    display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 6px;
    font-size: 13px; font-family: 'Montserrat', sans-serif; font-weight: 600;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--white); text-decoration: none; transition: all 0.3s;
}

.btn-gold-sm:hover { color: var(--white); transform: translateY(-1px); }

.btn-outline {
    background: transparent; border: 2px solid var(--navy-800);
    color: var(--navy-800);
}

.btn-outline:hover { background: var(--navy-800); color: var(--white); }

.btn-outline-white {
    background: transparent; border: 2px solid rgba(255,255,255,0.3); color: var(--white);
}

.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.btn-outline-sm {
    display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 6px;
    font-size: 13px; font-family: 'Montserrat', sans-serif; font-weight: 500;
    background: transparent; border: 1px solid var(--gray-300); color: var(--gray-700);
    text-decoration: none; transition: all 0.3s;
}

.btn-outline-sm:hover { border-color: var(--blue-500); color: var(--blue-500); }

/* ===== INSURANCE GRID ===== */
.insurance-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}

.insurance-card {
    background: var(--white); border-radius: 16px; padding: 32px 24px;
    border: 1px solid var(--gray-100); transition: all 0.3s;
    text-align: center; border-left: 4px solid transparent;
}

.insurance-card:hover {
    transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,22,40,0.08);
    border-left-color: var(--gold-500);
}

.insurance-card-icon {
    width: 64px; height: 64px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}

.insurance-icon-car { background: #EBF5FB; color: var(--blue-500); }
.insurance-icon-shield { background: #E8F5E9; color: #2E7D32; }
.insurance-icon-home { background: #FFF3E0; color: #E65100; }
.insurance-icon-heart { background: #FCE4EC; color: #C62828; }
.insurance-icon-plane { background: #F3E5F5; color: #7B1FA2; }
.insurance-icon-building { background: #E0F2F1; color: #00695C; }

.insurance-card-title {
    font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700;
    color: var(--navy-800); margin-bottom: 12px;
}

.insurance-card-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; }

.insurance-card-actions { display: flex; gap: 8px; justify-content: center; }

/* ===== INSURANCE LIST (Index Page) ===== */
.insurance-list { display: flex; flex-direction: column; gap: 24px; }

.insurance-list-item {
    display: flex; gap: 32px; padding: 32px; background: var(--white);
    border-radius: 16px; border: 1px solid var(--gray-100);
    border-left: 4px solid transparent;
    transition: all 0.3s;
}

.insurance-list-item:hover {
    box-shadow: 0 12px 40px rgba(10,22,40,0.08);
    border-left-color: var(--gold-500);
}

.insurance-list-icon {
    width: 72px; height: 72px; border-radius: 16px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}

.insurance-list-content { flex: 1; }

.insurance-list-content h3 {
    font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700;
    color: var(--navy-800); margin-bottom: 12px;
}

.insurance-list-content h3 a { color: var(--navy-800); }
.insurance-list-content h3 a:hover { color: var(--blue-500); }

.insurance-list-content p {
    font-size: 15px; color: var(--gray-500); line-height: 1.8; margin-bottom: 20px;
}

.insurance-list-actions { display: flex; gap: 12px; }

/* ===== INSURANCE DETAIL PAGE ===== */
.insurance-detail-layout {
    display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start;
}

.insurance-detail-main { min-width: 0; }

.insurance-detail-description {
    margin-bottom: 48px;
}

.insurance-detail-description h2,
.insurance-detail-section h2 {
    font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 700;
    color: var(--navy-800); margin-bottom: 16px;
}

.insurance-detail-description p {
    font-size: 16px; color: var(--gray-700); line-height: 1.9;
}

.insurance-detail-sidebar {
    position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px;
}

/* ===== SIDE CTA CARD ===== */
.side-cta-card {
    background: var(--white); border-radius: 16px; padding: 32px;
    border: 1px solid var(--gray-100); text-align: center;
}

.side-cta-icon { margin-bottom: 16px; }

.side-cta-card h3 {
    font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700;
    color: var(--navy-800); margin-bottom: 12px;
}

.side-cta-card h4 {
    font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 600;
    color: var(--navy-800); margin-bottom: 8px;
}

.side-cta-card p {
    font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px;
}

.side-cta-contact { text-align: left; }

.side-cta-phone, .side-cta-whatsapp {
    display: flex; align-items: center; gap: 10px; padding: 12px 16px;
    border-radius: 8px; font-size: 14px; font-weight: 600;
    transition: all 0.3s; margin-bottom: 8px;
}

.side-cta-phone {
    background: var(--sky-50); color: var(--blue-500);
}

.side-cta-phone:hover { background: var(--sky-100); color: var(--blue-500); }

.side-cta-whatsapp {
    background: #E8F5E9; color: #2E7D32;
}

.side-cta-whatsapp:hover { background: #C8E6C9; color: #2E7D32; }

/* ===== ACCORDION ===== */
.accordion { display: flex; flex-direction: column; gap: 8px; }

.accordion-item {
    border: 1px solid var(--gray-100); border-radius: 12px; overflow: hidden;
    transition: border-color 0.3s;
}

.accordion-item.active { border-color: var(--blue-300); }

.accordion-header {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 18px 20px; background: var(--white); border: none; cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600;
    color: var(--navy-800); text-align: left; transition: background 0.3s;
}

.accordion-header:hover { background: var(--sky-50); }

.accordion-chevron { transition: transform 0.3s; flex-shrink: 0; }

.accordion-item.active .accordion-chevron { transform: rotate(180deg); }

.accordion-body {
    display: none; padding: 0 20px 20px;
}

.accordion-body p {
    font-size: 15px; color: var(--gray-500); line-height: 1.8;
}

/* ===== TRUST PILLARS ===== */
.trust-pillars {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px;
}

.trust-pillar {
    text-align: center; padding: 32px 20px; background: var(--white);
    border-radius: 16px; border: 1px solid var(--gray-100);
    transition: transform 0.3s, box-shadow 0.3s;
}

.trust-pillar:hover {
    transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,22,40,0.08);
}

.trust-pillar-icon {
    width: 64px; height: 64px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}

.trust-pillar h3 {
    font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700;
    color: var(--navy-800); margin-bottom: 8px;
}

.trust-pillar p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ===== MISSION/VISION GRID ===== */
.mission-vision-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}

.mv-card {
    background: var(--white); padding: 40px 32px; border-radius: 16px;
    border: 1px solid var(--gray-100);
}

.mv-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700;
    color: var(--navy-800); margin-bottom: 12px;
}

.mv-card p { font-size: 15px; color: var(--gray-500); line-height: 1.8; }

/* ===== TEAM ===== */
.team-grid {
    display: flex; justify-content: center; gap: 32px; margin-top: 48px;
}

.team-card {
    text-align: center; padding: 40px 32px; background: var(--white);
    border-radius: 16px; border: 1px solid var(--gray-100);
    max-width: 360px; width: 100%;
}

.team-avatar {
    width: 100px; height: 100px; border-radius: 50%;
    background: var(--sky-50); display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px;
}

.team-card h3 {
    font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700;
    color: var(--navy-800); margin-bottom: 4px;
}

.team-role {
    display: block; font-size: 14px; color: var(--gold-500); font-weight: 500;
    margin-bottom: 12px;
}

.team-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }

.team-contact {
    display: flex; justify-content: center; gap: 12px;
}

.team-contact a {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: var(--sky-50); color: var(--blue-500);
    transition: all 0.3s;
}

.team-contact a:hover { background: var(--blue-500); color: var(--white); }

/* ===== BRAND VALUES ===== */
.brand-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }

.brand-value {
    text-align: center; padding: 32px 24px; background: var(--white);
    border-radius: 16px; border: 1px solid var(--gray-100);
    transition: transform 0.3s, box-shadow 0.3s;
}

.brand-value:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,22,40,0.08); }

.brand-value-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}

.brand-value h4 {
    font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700;
    color: var(--navy-800); margin-bottom: 8px;
}

.brand-value p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ===== BLOG GRID ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.blog-card {
    background: var(--white); border-radius: 16px; overflow: hidden;
    border: 1px solid var(--gray-100); transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,22,40,0.08); }

.blog-card-image { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-content { padding: 24px; }

.blog-card-content h3 {
    font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 600;
    margin-bottom: 8px; line-height: 1.4;
}

.blog-card-content h3 a { color: var(--navy-800); }
.blog-card-content h3 a:hover { color: var(--blue-500); }

.blog-card-content h4 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.blog-card-content h4 a { color: var(--navy-800); }

.blog-card-content p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 12px; }

.blog-card-meta { display: flex; gap: 16px; font-size: 13px; color: var(--gray-300); margin-bottom: 12px; }

.blog-read-more { font-size: 14px; font-weight: 600; color: var(--blue-500); }
.blog-read-more:hover { color: var(--blue-400); }

/* Blog Card Placeholder (no image) */
.blog-card-placeholder {
    aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.2);
}

/* Blog AI Badge */
.blog-ai-badge {
    display: inline-block; padding: 2px 8px; border-radius: 4px;
    background: #F3E5F5; color: #7B1FA2; font-size: 11px; font-weight: 700;
    letter-spacing: 0.5px;
}

.blog-ai-badge-lg {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 8px;
    background: rgba(123, 31, 162, 0.15); color: #CE93D8;
    font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* Blog Hero Image */
.blog-hero-image {
    margin-top: 64px; max-height: 400px; overflow: hidden;
    background: var(--navy-900);
}

.blog-hero-image img {
    width: 100%; height: 400px; object-fit: cover; display: block;
}

.page-header-no-top { margin-top: 0; padding-top: 48px; }

/* Blog Post Meta (show page) */
.blog-post-meta {
    display: flex; gap: 20px; font-size: 14px; color: rgba(255,255,255,0.5);
    margin-top: 16px; justify-content: center; flex-wrap: wrap;
}

.blog-post-meta span {
    display: inline-flex; align-items: center; gap: 6px;
}

/* Share Buttons */
.blog-post-share {
    display: flex; align-items: center; gap: 12px; margin-top: 48px;
    padding-top: 24px; border-top: 1px solid var(--gray-100);
    flex-wrap: wrap;
}

.blog-post-share > span { font-size: 14px; font-weight: 600; color: var(--gray-500); }

.share-btn {
    width: 40px; height: 40px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.3s; border: none; cursor: pointer;
    background: var(--gray-100); color: var(--gray-500);
}

.share-btn:hover { transform: translateY(-2px); }

.share-whatsapp:hover { background: #E8F5E9; color: #2E7D32; }
.share-twitter:hover { background: #E3F2FD; color: #1565C0; }
.share-linkedin:hover { background: #E3F2FD; color: #0077B5; }
.share-copy:hover { background: var(--sky-50); color: var(--blue-500); }
.share-copied { background: #E8F5E9 !important; color: #2E7D32 !important; }

/* ===== BLOG POST ===== */
.blog-post { max-width: 800px; margin: 0 auto; }

.blog-post-meta { display: flex; gap: 16px; font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 12px; justify-content: center; }

.blog-post-image { margin-bottom: 32px; border-radius: 16px; overflow: hidden; }
.blog-post-image img { width: 100%; }

.blog-post-content { font-size: 17px; line-height: 1.9; color: var(--gray-700); }
.blog-post-content h2 { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 700; color: var(--navy-800); margin: 32px 0 16px; }
.blog-post-content h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 600; color: var(--navy-800); margin: 24px 0 12px; }
.blog-post-content p { margin-bottom: 16px; }
.blog-post-content ul, .blog-post-content ol { margin: 16px 0; padding-left: 24px; }
.blog-post-content li { margin-bottom: 8px; }

.blog-post-share {
    display: flex; align-items: center; gap: 16px; margin-top: 48px;
    padding-top: 24px; border-top: 1px solid var(--gray-100);
}

.blog-post-share span { font-size: 14px; font-weight: 500; color: var(--gray-500); }
.blog-post-share a { color: var(--gray-500); transition: color 0.3s; }
.blog-post-share a:hover { color: var(--blue-500); }

.related-posts { margin-top: 64px; }
.related-posts h3 { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 24px; }

/* ===== STORY GRID ===== */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.story-visual {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    border-radius: 24px; padding: 60px; display: flex; align-items: center;
    justify-content: center; aspect-ratio: 1;
}

.story-visual img { width: 200px; height: 200px; }

.story-content h2 {
    font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 700;
    color: var(--navy-800); margin-bottom: 16px;
}

.story-content h3 {
    font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 700;
    color: var(--navy-800); margin-bottom: 16px;
}

.story-content p { font-size: 16px; color: var(--gray-500); line-height: 1.9; margin-bottom: 16px; }

/* ===== CONTACT BANNER (Homepage) ===== */
.contact-banner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}

.contact-banner-info { }

.contact-banner-items { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }

.contact-banner-item {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 14px; color: var(--gray-700); line-height: 1.6;
}

.contact-banner-item strong { display: block; margin-bottom: 2px; color: var(--navy-800); }
.contact-banner-item a { color: var(--blue-500); }

.contact-banner-map { border-radius: 16px; overflow: hidden; min-height: 320px; }

/* ===== FORMS ===== */
.form-input {
    width: 100%; padding: 12px 16px; border: 1px solid var(--gray-100);
    border-radius: 8px; font-size: 15px; font-family: 'Inter', sans-serif;
    transition: border-color 0.3s; background: var(--white);
}

.form-input:focus { border-color: var(--blue-500); outline: none; box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.1); }

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block; font-size: 14px; font-weight: 500;
    color: var(--gray-700); margin-bottom: 6px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

select.form-input { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235D6D7E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

textarea.form-input { min-height: 120px; resize: vertical; }

/* ===== FORM MESSAGES ===== */
.form-message {
    display: flex; align-items: center; gap: 10px; padding: 14px 18px;
    border-radius: 10px; margin-bottom: 16px; font-size: 14px; font-weight: 500;
}

.form-message-success { background: #E8F5E9; color: #2E7D32; }
.form-message-error { background: #FFEBEE; color: #C62828; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; }

.contact-form-wrap h3 {
    font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 700;
    color: var(--navy-800); margin-bottom: 24px;
}

.contact-sidebar h3 {
    font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700;
    color: var(--navy-800); margin-bottom: 24px;
}

.contact-sidebar-card {
    background: var(--white); padding: 32px; border-radius: 16px;
    border: 1px solid var(--gray-100); margin-bottom: 20px;
}

.contact-info-item {
    display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px;
    font-size: 15px; color: var(--gray-700); line-height: 1.6;
}

.contact-info-item svg { flex-shrink: 0; margin-top: 2px; }

.contact-info-item strong { display: block; margin-bottom: 4px; color: var(--navy-800); }
.contact-info-item a { color: var(--blue-500); }

.contact-info-grid { display: flex; gap: 48px; flex-wrap: wrap; }

.contact-map { margin-top: 0; }

/* ===== OFFER WIZARD ===== */
.offer-wizard-container { max-width: 800px; margin: 0 auto; }

.wizard-steps {
    display: flex; gap: 8px; margin-bottom: 48px; justify-content: center;
}

.wizard-step {
    display: flex; align-items: center; gap: 8px; padding: 12px 20px;
    border-radius: 999px; font-size: 14px; font-weight: 500;
    color: var(--gray-300); background: var(--gray-100);
    transition: all 0.3s;
}

.wizard-step.active { background: var(--blue-500); color: var(--white); }
.wizard-step.completed { background: #E8F5E9; color: #2E7D32; }

.wizard-step-num {
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
    background: rgba(255,255,255,0.2);
}

.wizard-panel { display: none; }
.wizard-panel.active { display: block; }

.wizard-panel h3 {
    font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 700;
    color: var(--navy-800); margin-bottom: 24px;
}

.wizard-actions {
    display: flex; gap: 12px; justify-content: space-between; margin-top: 32px;
}

.insurance-select-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.insurance-select-card { cursor: pointer; }

.insurance-select-card input[type="radio"] { display: none; }

.insurance-select-inner {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 24px 16px; border: 2px solid var(--gray-100);
    border-radius: 16px; transition: all 0.3s; text-align: center;
}

.insurance-select-card input[type="radio"]:checked + .insurance-select-inner {
    border-color: var(--blue-500); background: var(--sky-50);
}

.insurance-select-inner:hover { border-color: var(--blue-300); }

.insurance-select-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}

.insurance-select-inner span {
    font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600;
    color: var(--navy-800);
}

/* ===== REVIEW CARD (Wizard Step 4) ===== */
.review-card {
    background: var(--sky-50); border-radius: 16px; padding: 32px;
    border: 1px solid var(--sky-100);
}

.review-section {
    padding-bottom: 20px; margin-bottom: 20px;
    border-bottom: 1px solid var(--sky-100);
}

.review-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.review-section h4 {
    font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600;
    color: var(--blue-500); text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 12px;
}

.review-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; font-size: 15px;
}

.review-label { color: var(--gray-500); }
.review-value { color: var(--navy-800); font-weight: 600; }

/* ===== WIZARD SUCCESS ===== */
.wizard-success {
    text-align: center; padding: 60px 20px;
}

.wizard-success .success-icon { margin-bottom: 24px; }

.wizard-success h2 {
    font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 700;
    color: var(--navy-800); margin-bottom: 12px;
}

.wizard-success p {
    font-size: 16px; color: var(--gray-500); margin-bottom: 32px;
}

/* ===== SPINNER ===== */
.btn-spinner {
    display: inline-flex; align-items: center; gap: 8px;
}

.spinner-icon { animation: spin 0.8s linear infinite; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== INSURANCE DETAIL (legacy) ===== */
.insurance-detail { max-width: 800px; margin: 0 auto; }

.insurance-detail-desc {
    font-size: 17px; line-height: 1.9; color: var(--gray-700); margin-bottom: 32px;
}

.insurance-detail-cta { display: flex; gap: 16px; }

/* ===== ALERTS ===== */
.alert {
    max-width: 1400px; margin: 16px auto; padding: 16px 24px;
    border-radius: 12px; display: flex; justify-content: space-between;
    align-items: center; font-size: 15px;
}

.alert-success { background: #E8F5E9; color: #2E7D32; }
.alert-error { background: #FFEBEE; color: #C62828; }
.alert-error ul { list-style: none; }

.alert-close {
    background: none; border: none; font-size: 20px;
    cursor: pointer; color: inherit; opacity: 0.7;
}

.alert-close:hover { opacity: 1; }

/* ===== PAGINATION ===== */
.pagination-wrap { margin-top: 48px; display: flex; justify-content: center; }

.pagination-wrap nav { display: flex; gap: 8px; }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 64px 24px; color: var(--gray-500); font-size: 16px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-900); padding: 80px 40px 32px; }

.footer-inner { max-width: 1400px; margin: 0 auto; }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 64px; margin-bottom: 64px; }

.footer-logo {
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}

.footer-logo img { width: 40px; height: 40px; }

.footer-logo span {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 18px; color: var(--white);
}

.footer-logo span em { font-style: normal; font-weight: 400; opacity: 0.8; }

.footer-tagline { color: var(--gold-400); font-size: 14px; margin-bottom: 12px; }

.footer-desc { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }

.footer-col h4 {
    font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600;
    color: var(--white); text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
    color: rgba(255,255,255,0.5); font-size: 14px; transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-contact li {
    display: flex; gap: 12px; align-items: flex-start;
    color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6;
}

.footer-contact li svg { flex-shrink: 0; margin-top: 3px; color: var(--blue-400); }

.footer-contact li a { color: rgba(255,255,255,0.5); }
.footer-contact li a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px; text-align: center;
}

.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; margin: 0; }
.footer-kvkk { color: rgba(255,255,255,0.3); font-size: 13px; text-decoration: underline; transition: color 0.2s; }
.footer-kvkk:hover { color: rgba(255,255,255,0.6); }
.footer-credit {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; color: rgba(255,255,255,0.25);
}
.footer-credit svg { opacity: 0.4; }
.footer-credit a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-credit a:hover { color: #C8A951; }

/* ===== SKIP-TO-CONTENT ===== */
.skip-to-content {
    position: absolute; top: -100%; left: 16px; z-index: 10000;
    padding: 12px 24px; border-radius: 0 0 8px 8px;
    background: var(--gold-500); color: var(--white);
    font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600;
    text-decoration: none; transition: top 0.2s;
}

.skip-to-content:focus { top: 0; color: var(--white); }

/* ===== FOCUS-VISIBLE ===== */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
    outline: 2px solid var(--blue-500); outline-offset: 2px;
}

.navbar a:focus-visible, .navbar button:focus-visible,
.footer a:focus-visible, .footer button:focus-visible {
    outline-color: var(--gold-400);
}

/* ===== ADMIN TABLE RESPONSIVE ===== */
.admin-table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .insurance-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-values { grid-template-columns: repeat(2, 1fr); }
    .trust-pillars { grid-template-columns: repeat(2, 1fr); }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .insurance-select-grid { grid-template-columns: repeat(2, 1fr); }
    .insurance-detail-layout { grid-template-columns: 1fr; }
    .insurance-detail-sidebar { position: static; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .contact-banner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute;
        top: 64px; left: 0; right: 0; background: var(--navy-900);
        padding: 20px; gap: 16px;
    }
    .nav-hamburger { display: flex; }

    .hero { padding: 60px 20px; min-height: auto; }
    .hero-brand { font-size: 40px; }
    .hero-tagline { letter-spacing: 2px; }
    .hero-actions { flex-direction: column; align-items: center; }

    .breadcrumb { padding: 0 20px; }

    .page-header { padding: 100px 20px 60px; }
    .section { padding: 60px 20px; }
    .section-dark, .section-light { padding: 60px 20px; }

    .insurance-grid { grid-template-columns: 1fr; }
    .insurance-list-item { flex-direction: column; gap: 16px; }
    .blog-grid { grid-template-columns: 1fr; }
    .brand-values { grid-template-columns: 1fr; }
    .trust-pillars { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .insurance-select-grid { grid-template-columns: 1fr 1fr; }
    .wizard-steps { flex-wrap: wrap; }
    .wizard-step-label { display: none; }
    .review-row { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
    .insurance-select-grid { grid-template-columns: 1fr; }
    .insurance-list-actions { flex-direction: column; }
}

/* ===== FAQ PAGE ===== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-category { margin-bottom: 40px; }
.faq-category-title {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700;
    color: #0A1628; margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 2px solid #F0F2F5;
}
.faq-category-title svg { color: #2980B9; flex-shrink: 0; }

.faq-container .accordion-item {
    border: 1px solid #ECEFF1; border-radius: 10px; margin-bottom: 8px;
    overflow: hidden; transition: box-shadow 0.2s;
}
.faq-container .accordion-item:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.faq-container .accordion-header {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; background: #fff; border: none; cursor: pointer;
    font-size: 15px; font-weight: 500; color: #0A1628; text-align: left;
    font-family: 'Inter', sans-serif; gap: 12px;
}
.faq-container .accordion-header:hover { background: #FAFBFC; }
.faq-container .accordion-item.active .accordion-header { color: #2980B9; background: #F8FBFF; }
.accordion-chevron { flex-shrink: 0; transition: transform 0.3s; color: #B0BEC5; }
.faq-container .accordion-item.active .accordion-chevron { transform: rotate(180deg); color: #2980B9; }
.faq-container .accordion-body {
    padding: 0 20px 16px; font-size: 15px; line-height: 1.7; color: #5D6D7E;
}
.faq-container .accordion-body p { margin: 0; }

.faq-cta {
    text-align: center; background: linear-gradient(135deg, #F8FBFF 0%, #EBF5FB 100%);
    border-radius: 16px; padding: 40px; margin-top: 20px;
    border: 1px solid #D4E6F1;
}
.faq-cta h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; color: #0A1628; margin-bottom: 8px; }
.faq-cta p { color: #5D6D7E; font-size: 15px; margin-bottom: 20px; }
.faq-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.faq-cta-actions .btn { display: inline-flex; align-items: center; gap: 8px; }

/* ===== KVKK PAGE ===== */
.kvkk-container { max-width: 800px; margin: 0 auto; }
.kvkk-section { margin-bottom: 32px; }
.kvkk-section h2 {
    font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700;
    color: #0A1628; margin-bottom: 12px; padding-bottom: 8px;
    border-bottom: 2px solid #F0F2F5;
}
.kvkk-section p { font-size: 15px; line-height: 1.8; color: #2D3748; margin-bottom: 12px; }
.kvkk-section ul { padding-left: 20px; margin-bottom: 12px; }
.kvkk-section li { font-size: 15px; line-height: 1.8; color: #2D3748; margin-bottom: 6px; }
.kvkk-section a { color: #2980B9; text-decoration: underline; }
.kvkk-section a:hover { color: #1B4F72; }
.kvkk-info-box {
    background: #F8FBFF; border: 1px solid #D4E6F1; border-radius: 10px;
    padding: 16px 20px; font-size: 14px; line-height: 1.8; color: #2D3748; margin-top: 12px;
}
.kvkk-date { color: #B0BEC5; font-size: 13px; margin-top: 24px; }

/* ===== DOCUMENT UPLOAD ===== */
.file-upload-area {
    border: 2px dashed #D4E6F1; border-radius: 12px; padding: 24px;
    text-align: center; cursor: pointer; transition: all 0.2s;
    background: #FAFBFC;
}
.file-upload-area:hover { border-color: #2980B9; background: #F8FBFF; }
.file-upload-area.has-files { border-color: #2E7D32; background: #F1F8F1; }
.file-upload-icon { color: #B0BEC5; margin-bottom: 8px; }
.file-upload-text { font-size: 14px; color: #5D6D7E; }
.file-upload-text strong { color: #2980B9; }
.file-upload-hint { font-size: 12px; color: #B0BEC5; margin-top: 4px; }
.file-upload-list { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.file-upload-item {
    display: flex; align-items: center; justify-content: space-between;
    background: #fff; border: 1px solid #ECEFF1; border-radius: 8px;
    padding: 8px 12px; font-size: 13px; color: #2D3748;
}
.file-upload-item button {
    background: none; border: none; color: #C62828; cursor: pointer;
    font-size: 16px; padding: 0 4px; line-height: 1;
}
.file-upload-item button:hover { color: #8E0000; }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: rgba(10, 22, 40, 0.95); backdrop-filter: blur(8px);
    padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.1);
}
.cookie-consent-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    flex-wrap: wrap;
}
.cookie-consent p {
    color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.5; margin: 0; flex: 1;
}
.cookie-consent-btn {
    background: #C8A951; color: #0A1628; border: none; padding: 10px 24px;
    border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer;
    white-space: nowrap; transition: background 0.2s;
    font-family: 'Inter', sans-serif;
}
.cookie-consent-btn:hover { background: #D4B96A; }
@media (max-width: 600px) {
    .cookie-consent-inner { flex-direction: column; text-align: center; }
    .whatsapp-float { bottom: 16px; right: 16px; width: 48px; height: 48px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}