/* ============================================
   Sigorta Eskişehir - Modern CSS
   Sigorta sektörüne uygun renkler ve tasarım
   ============================================ */

/* Color Palette - Sigorta Sektörüne Uygun */
:root {
    --primary-blue: #1e3a8a;      /* Güven veren koyu mavi */
    --secondary-blue: #3b82f6;    /* Açık mavi */
    --accent-orange: #f97316;     /* CTA butonları için turuncu */
    --success-green: #10b981;     /* Başarı mesajları */
    --text-dark: #1f2937;         /* Ana metin */
    --text-light: #6b7280;        /* İkincil metin */
    --bg-light: #f9fafb;          /* Açık arka plan */
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    /* Premium UI tokens */
    --bg: #f6f8fc;
    --surface: #ffffff;
    --surface-2: rgba(255, 255, 255, 0.8);
    --ring: rgba(59, 130, 246, 0.35);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --shadow-xl: 0 24px 50px -22px rgba(15, 23, 42, 0.35);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: radial-gradient(1200px 600px at 15% 0%, rgba(59,130,246,0.12), transparent 55%),
                radial-gradient(1000px 500px at 85% 10%, rgba(249,115,22,0.10), transparent 55%),
                var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility */
.muted { color: var(--text-light); }
.dot { margin: 0 0.5rem; color: var(--text-light); }
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.10);
    border: 1px solid rgba(59, 130, 246, 0.20);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    text-decoration: none;
}
.tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-dark);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    text-decoration: none;
}
.tag:hover { border-color: rgba(30, 58, 138, 0.35); }
.tag:focus-visible,
.pill:focus-visible,
.btn:focus-visible,
.main-nav a:focus-visible,
.post-card a:focus-visible,
.ad-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--ring);
    border-radius: 10px;
}

.page {
    padding: 2.5rem 0 4rem;
}
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}
.breadcrumbs a { color: var(--primary-blue); text-decoration: none; }

.section-head {
    text-align: center;
    margin-bottom: 2rem;
}
.section-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog */
.blog-hero {
    padding: 3.5rem 0;
    background:
        radial-gradient(900px 420px at 15% 0%, rgba(255,255,255,0.18), transparent 55%),
        radial-gradient(900px 420px at 85% 20%, rgba(255,255,255,0.12), transparent 60%),
        linear-gradient(135deg, #0b2a6f 0%, #1d4ed8 55%, #2563eb 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.blog-hero::after{
    content:"";
    position:absolute;
    inset:-2px;
    background:
      linear-gradient(transparent 0 0),
      radial-gradient(circle at 20% 30%, rgba(255,255,255,0.10), transparent 35%),
      radial-gradient(circle at 80% 10%, rgba(249,115,22,0.15), transparent 40%);
    pointer-events:none;
    opacity:0.85;
}
.blog-hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.blog-hero-title { font-size: 2.6rem; margin-bottom: 0.6rem; letter-spacing: -0.02em; }
.blog-hero-subtitle { opacity: 0.95; max-width: 62ch; font-size: 1.05rem; }
.blog-hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.blog-layout { padding: 3rem 0; background: transparent; }
.blog-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr;
    gap: 2rem;
    align-items: start;
}
.blog-main { min-width: 0; }
.blog-sidebar { position: sticky; top: 90px; }
.sidebar-card {
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
}
.sidebar-card h3 { margin-bottom: 1rem; color: var(--primary-blue); }
.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-list li { display: flex; justify-content: space-between; gap: 1rem; }
.sidebar-list a { text-decoration: none; color: var(--text-dark); }
.sidebar-list a:hover { color: var(--primary-blue); }
.count { color: var(--text-light); font-variant-numeric: tabular-nums; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.post-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.post-card {
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: 0 10px 18px -14px rgba(15,23,42,0.45);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.35);
}
.post-card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem; color: rgba(100,116,139,1); font-size: 0.9rem; }
.post-card-title { margin-top: 0.75rem; margin-bottom: 0.5rem; font-size: 1.18rem; line-height: 1.35; color: #0b2a6f; letter-spacing: -0.01em; }
.post-card-title a { text-decoration: none; color: inherit; }
.post-card-desc { color: var(--text-light); }
.post-card-actions { margin-top: 0.9rem; display: flex; gap: 0.75rem; align-items: center; }
.btn-small { padding: 0.55rem 1.1rem; font-size: 0.95rem; }
.post-card-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }

/* Media cards (image + body) */
.post-card--media {
    padding: 0;
    overflow: hidden;
}
.post-card-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.06);
}
.post-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.25s ease;
}
.post-card--media:hover .post-card-img { transform: scale(1.06); }
.post-card-body { padding: 1.15rem 1.25rem 1.25rem; }
.post-card--featured .post-card-media { aspect-ratio: 16 / 8.5; }
.post-card--featured .post-card-body { padding: 1.35rem 1.35rem 1.4rem; }

/* Post detail */
.post-page { padding: 1.75rem 0 4rem; }
.post-layout {
    display: grid;
    grid-template-columns: 1.65fr 0.85fr;
    gap: 1.25rem;
    align-items: start;
}
.post-article {
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    overflow: hidden;
}
.post-cover { aspect-ratio: 16 / 9; background: rgba(15, 23, 42, 0.08); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-article .post-header { padding: 1.6rem 1.6rem 0.5rem; margin-bottom: 0; }
.post-article .post-content { padding: 0 1.6rem 1.3rem; }
.post-article .post-footer { padding: 0 1.6rem 1.6rem; border-top: 0; margin-top: 0; }
.post-aside { position: sticky; top: 90px; }
.related { padding: 0 1.6rem 1.6rem; }
.related h2 { margin-top: 0.25rem; color: #0b2a6f; }

.empty-state {
    background: var(--white);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

/* Post */
.post { background: var(--white); border: 1px solid var(--border-color); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow); }
.post-header { margin-bottom: 1.5rem; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem; color: var(--text-light); font-size: 0.95rem; margin-bottom: 0.75rem; }
.post-title { color: var(--primary-blue); font-size: 2rem; line-height: 1.2; margin-bottom: 0.75rem; }
.post-desc { color: var(--text-light); font-size: 1.1rem; }
.post-footer { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border-color); }
.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.prose h2, .prose h3, .prose h4 { color: var(--primary-blue); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.prose p { margin: 0.75rem 0; }
.prose ul { margin: 0.75rem 0 0.75rem 1.25rem; }
.prose li { margin: 0.35rem 0; }
.prose a { color: var(--secondary-blue); }
.prose .code { background: #0b1220; color: #e5e7eb; padding: 1rem; border-radius: 12px; overflow: auto; }

.post-cta { margin-top: 1.5rem; }
.post-cta-inner {
    background: linear-gradient(135deg, rgba(30,58,138,0.08) 0%, rgba(59,130,246,0.10) 100%);
    border: 1px solid rgba(30,58,138,0.15);
    border-radius: 16px;
    padding: 1.5rem;
}
.post-cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }

/* Home (vitrin) */
.home-hero {
    padding: 3.25rem 0 2.25rem;
}
.home-top {
    display: grid;
    grid-template-columns: 1.7fr 0.8fr;
    gap: 1.25rem;
    align-items: start;
    margin-top: 1rem;
}
.home-top-main { display: grid; gap: 1rem; }
.home-top-ads { position: sticky; top: 90px; }

.home-banner {
    margin-bottom: 1.25rem;
}
.home-banner-desktop {
    display: block;
}
.home-banner-mobile {
    display: none;
}

.home-masthead {
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.7rem 1.7rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}
.home-masthead-title { font-size: 2.2rem; letter-spacing: -0.02em; color: #0b2a6f; margin-bottom: 0.35rem; }
.home-masthead-subtitle { color: var(--text-light); max-width: 70ch; }

.home-search {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
}
.search-input{
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255,255,255,0.85);
    font-size: 1rem;
}
.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 4px var(--ring);
    border-color: rgba(59,130,246,0.35);
}
.search-button{
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(30,58,138,0.25);
    background: rgba(30,58,138,0.08);
    color: #0b2a6f;
    font-weight: 900;
    cursor: pointer;
}
.search-button:hover { background: rgba(30,58,138,0.12); }

.home-chips { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.home-chips .pill { background: rgba(59,130,246,0.10); border-color: rgba(59,130,246,0.18); color: #0b2a6f; }
.home-chips .pill:hover { background: rgba(59,130,246,0.14); }

/* KPI cards removed from homepage (kept intentionally blank) */

.home-section { padding: 1.5rem 0 2.25rem; }
.home-section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.home-section-head h2 { font-size: 1.55rem; letter-spacing: -0.01em; color: #0b2a6f; margin: 0; }
.home-section-head p { margin: 0; }

.top-read-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
}
.top-read-grid--inline{
    margin-top: 0;
    grid-template-columns: repeat(2, 1fr);
}
.top-read-card {
    display: grid;
    grid-template-columns: 28px 1fr;
    grid-template-areas:
        "rank title"
        "rank meta";
    gap: 0.08rem 0.7rem;
    text-decoration: none;
    padding: 0.8rem 0.9rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 18px -16px rgba(15,23,42,0.40);
    transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.top-read-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: var(--shadow);
}
.top-read-rank { grid-area: rank; font-weight: 900; color: rgba(30,58,138,0.8); font-variant-numeric: tabular-nums; }
.top-read-title { grid-area: title; color: #0b2a6f; font-weight: 900; line-height: 1.18; font-size: 0.96rem; }
.top-read-meta { grid-area: meta; color: var(--text-light); font-size: 0.9rem; }

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.25rem;
}
.post-card--featured {
    padding: 1.6rem;
}
.post-card--featured .post-card-title { font-size: 1.35rem; }

.home-split {
    display: grid;
    grid-template-columns: 1.55fr 0.8fr;
    gap: 1.25rem;
    align-items: start;
}
.home-side { position: sticky; top: 90px; }

.ranked-list { display: flex; flex-direction: column; gap: 0.6rem; }
.ranked-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    grid-template-areas:
        "rank title"
        "rank meta";
    gap: 0.1rem 0.75rem;
    text-decoration: none;
    padding: 0.75rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.ranked-item:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: var(--shadow);
}
.rank { grid-area: rank; font-weight: 900; color: rgba(30,58,138,0.8); font-variant-numeric: tabular-nums; }
.rank-title { grid-area: title; color: #0b2a6f; font-weight: 800; line-height: 1.2; }
.rank-meta { grid-area: meta; color: var(--text-light); font-size: 0.9rem; }

/* Anchors spacing */
section[id] { scroll-margin-top: 110px; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.contact-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: var(--shadow);
}
.contact-card h2 { color: var(--primary-blue); margin-bottom: 0.5rem; font-size: 1.1rem; }
.contact-link { color: var(--secondary-blue); text-decoration: none; font-weight: 700; }
.contact-cta {
    margin-top: 2rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
}

/* Sponsors */
/* Ads */
.ad-stack { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-top: 0.75rem; }
.ad {
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255,255,255,0.80);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 18px -16px rgba(15,23,42,0.45);
    overflow: hidden;
}
.ad-link { display: block; text-decoration: none; color: inherit; position: relative; }
.ad-body { padding: 0.9rem 1rem; display: grid; gap: 0.35rem; }
.ad-badge {
    display: inline-flex;
    width: fit-content;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(30,58,138,0.95);
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.18);
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
}
.ad-title { font-weight: 900; line-height: 1.25; }
.ad-cta { margin-top: 0.25rem; color: var(--secondary-blue); font-weight: 800; text-decoration: none; }
.ad-cta:hover { text-decoration: underline; }
.ad-image { width: 100%; height: 100%; display: block; object-fit: cover; }
.ad--slot { aspect-ratio: 4 / 3; }
.ad--slot .ad-link { height: 100%; }
.ad--slot .ad-badge,
.ad--slot .ad-title,
.ad--banner .ad-badge,
.ad--banner .ad-title {
    position: absolute;
    left: 14px;
    z-index: 2;
}
.ad--slot .ad-badge,
.ad--banner .ad-badge {
    top: 14px;
}
.ad--slot .ad-title,
.ad--banner .ad-title {
    bottom: 12px;
    right: 12px;
    left: 12px;
    color: #ffffff;
    font-size: 1.02rem;
    text-shadow: 0 6px 16px rgba(0,0,0,0.45);
}
.ad--slot .ad-link::after,
.ad--banner .ad-link::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.03) 0%, rgba(34, 197, 94, 0.00) 35%, rgba(22, 163, 74, 0.08) 100%);
    z-index:1;
}
.ad--placeholder { border-style: dashed; }
.ad--banner {
    aspect-ratio: 1200 / 260;
    border-radius: var(--radius-lg);
    width: 100%;
}
.ad--banner .ad-link { height: 100%; }

/* Header Styles */
.main-header {
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 30px -22px rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.site-logo{
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex: 0 0 auto;
}

.site-logo--header{
    width: clamp(120px, 9vw, 210px);
    height: clamp(120px, 9vw, 210px);
}

.site-logo--footer{
    width: clamp(100px, 8vw, 180px);
    height: clamp(100px, 8vw, 180px);
}

.site-name{
    margin: 0;
    line-height: 1;
}

.footer-brand{
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
}

.main-nav a:hover {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.10);
}
.main-nav a.active {
    color: #0b2a6f;
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(59, 130, 246, 0.20);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 10px 18px -16px rgba(15,23,42,0.55);
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 1px solid rgba(30, 58, 138, 0.25);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: #22c55e;
    color: #ffffff;
    border: 1px solid rgba(22, 163, 74, 0.95);
}
.btn-whatsapp:hover {
    background: #16a34a;
    color: #ffffff;
    box-shadow: 0 14px 28px -18px rgba(22, 163, 74, 0.9);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon .icon {
    width: 48px;
    height: 48px;
    color: var(--primary-blue);
    stroke-width: 2;
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
}

.form-header-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.3);
}

.form-header-icon .icon {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2.5;
}

.section-title {
    font-size: 2.25rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.insurance-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
}

/* Multi-Step Progress Bar */
.step-progress-container {
    margin-bottom: 3rem;
}

.step-progress-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.step-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 10px;
    width: 33.33%;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.step-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 1rem;
}

.step-indicator {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.4;
    transition: all 0.3s;
}

.step-indicator.active {
    opacity: 1;
}

.step-indicator.completed {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.step-indicator.active .step-number {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.3);
    transform: scale(1.1);
}

.step-indicator.completed .step-number {
    background: var(--success-green);
    border-color: var(--success-green);
    color: white;
}

.step-indicator.completed .step-number::after {
    content: '✓';
    font-size: 1.2rem;
}

.step-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
}

.step-indicator.active .step-label {
    color: var(--primary-blue);
    font-weight: 600;
}

.step-indicator.completed .step-label {
    color: var(--success-green);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInSlide 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-header {
    margin-bottom: 2rem;
    text-align: center;
}

.step-title {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.step-title-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.3);
}

.step-description {
    color: var(--text-light);
    font-size: 1rem;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
}

.form-navigation .btn {
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-navigation .btn-icon {
    display: inline-flex;
    align-items: center;
    font-size: 1.2rem;
}

.form-navigation .btn-icon .icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.form-section-group {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.form-section-group:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.1);
}

.form-section-title {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.section-title-icon {
    display: inline-flex;
    align-items: center;
}

.section-title-icon .icon {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    stroke-width: 2.5;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.required {
    color: var(--accent-orange);
    font-weight: 700;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .input-icon {
    position: absolute;
    left: 1rem;
    display: flex;
    align-items: center;
    color: var(--text-light);
    pointer-events: none;
    z-index: 1;
}

.input-wrapper .input-icon .icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    padding-left: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
    color: var(--text-dark);
}

.input-wrapper .input-icon + input {
    padding-left: 2.75rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231f2937' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    background: transparent;
    padding: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
    position: relative;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.checkbox-label:hover {
    border-color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.02);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    position: relative;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: var(--white);
    transition: all 0.3s;
    margin-top: 0.125rem;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    flex: 1;
    line-height: 1.6;
    color: var(--text-dark);
}

.form-submit-wrapper {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
}

.form-submit-wrapper .btn {
    position: relative;
    overflow: hidden;
    font-size: 1.125rem;
    padding: 1.125rem 2rem;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.form-submit-wrapper .btn:hover {
    box-shadow: 0 15px 20px -3px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.btn-icon .icon {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2.5;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.service-icon .icon {
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
    stroke-width: 2;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.footer-icon .icon {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.8);
}

.icon-inline {
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.icon-inline .icon {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    padding: 0 1rem 1rem;
    display: none;
}

.cookie-banner__inner {
    max-width: 1160px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.97);
    border-radius: 18px 18px 0 0;
    padding: 1rem 1.25rem;
    box-shadow: 0 -18px 40px -22px rgba(15, 23, 42, 0.9);
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    justify-content: space-between;
    color: rgba(249, 250, 251, 0.95);
}

.cookie-banner__text {
    flex: 1 1 240px;
    font-size: 0.9rem;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.cookie-banner__button {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

.cookie-banner--hidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .form-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .form-header-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .form-header-icon .icon {
        width: 28px;
        height: 28px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .form-section-group {
        padding: 1.5rem;
    }

    .form-section-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .insurance-form {
        gap: 2rem;
    }

    .form-submit-wrapper .btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .step-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .step-indicator {
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
    }

    .step-number {
        margin-right: 1rem;
        margin-bottom: 0;
    }

    .step-label {
        text-align: left;
    }

    .step-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-navigation {
        flex-direction: column;
    }

    .form-navigation .btn {
        width: 100%;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
        top: auto;
    }
    .blog-hero-title { font-size: 2rem; }

    .home-top { grid-template-columns: 1fr; }
    .home-top-ads { position: static; top: auto; }
    .home-side { position: static; top: auto; }
    .featured-grid { grid-template-columns: 1fr; }
    .home-split { grid-template-columns: 1fr; }
    .home-masthead-title { font-size: 1.85rem; }
    .home-search { grid-template-columns: 1fr; }
    .search-button { width: 100%; }

    .top-read-grid { grid-template-columns: 1fr; }

    .post-layout { grid-template-columns: 1fr; }
    .post-aside { position: static; top: auto; }

    /* Banner & sidebar reklam davranışı (mobil) */
    .home-banner-desktop {
        display: none !important;
    }
    .home-banner-desktop .ad,
    .home-banner-desktop .ad--banner,
    .home-banner-desktop .ad-link,
    .home-banner-desktop .ad-image {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    .home-banner-mobile {
        display: block !important;
    }

    /* Footer mobil hizalama */
    .footer-content {
        text-align: center;
        justify-items: center;
    }
    .footer-section {
        align-items: center !important;
        text-align: center !important;
    }
    .footer-section h3,
    .footer-section h4 {
        text-align: center !important;
        width: 100%;
    }
    .footer-section ul {
        text-align: center !important;
        align-items: center !important;
        width: 100%;
    }
    .footer-section li {
        text-align: center !important;
        width: 100%;
    }
    .footer-section li a {
        display: inline-block;
        text-align: center;
    }
    .footer-section p {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-ad-text {
        max-width: 26rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .footer-brand {
        align-items: center !important;
        text-align: center !important;
        width: 100%;
    }
    .footer-section .btn {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block;
    }

    /* Cookie banner mobil düzen */
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-banner__actions {
        width: 100%;
        justify-content: flex-start;
    }
    .cookie-banner__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Pulse Animation for Retry */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(30, 58, 138, 0);
    }
}

