/* ==========================================================================
   Enter Sigorta MTZ - Ana Stil Dosyasi
   Renk Paleti (Yapi Kredi Tarzi):
   - Primary: #0067b1 (Mavi - Ana renk)
   - Primary Dark: #004d8c
   - Primary Light: #2196F3
   - Secondary: #4fc3f7 (Acik Mavi - Vurgu)
   - Accent: #d82a2b (Kirmizi - CTA)
   - Dark: #0d1b2a
   - Text: #2c3e50
   - Text Light: #607d8b
   - Light BG: #f0f6fc
   - White: #ffffff
   - Border: #d6e4f0
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Ubuntu', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ---------- UTILITY ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-light {
    background: #f0f6fc;
}

.section-dark {
    background: #0d1b2a;
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    display: inline-block;
    color: #0067b1;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2rem;
    color: #0d1b2a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-header p {
    color: #607d8b;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-dark .section-header h2 {
    color: #fff;
}

.section-dark .section-header p {
    color: #ccc;
}

.text-center { text-align: center; }
.text-primary { color: #0067b1; }
.text-accent { color: #d82a2b; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: #0067b1;
    color: #fff;
}

.btn-primary:hover {
    background: #004d8c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 103, 177, 0.3);
}

.btn-accent {
    background: #d82a2b;
    color: #fff;
}

.btn-accent:hover {
    background: #b52224;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(216, 42, 43, 0.3);
}

.btn-outline {
    background: transparent;
    color: #0067b1;
    border: 2px solid #0067b1;
}

.btn-outline:hover {
    background: #0067b1;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #0067b1;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 36px;
    font-size: 1.05rem;
}

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

/* ---------- TOP BAR ---------- */
.top-bar {
    background: #0d1b2a;
    color: #ccc;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left a {
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover {
    color: #fff;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    color: #ccc;
    font-size: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.top-bar-right a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* ---------- HEADER / NAV ---------- */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0067b1;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.logo-mtz {
    font-size: 1.3rem;
    font-weight: 800;
    color: #d82a2b;
    letter-spacing: 1px;
}

/* Nav Wrapper - desktop */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav > li {
    position: relative;
}

.main-nav > li > a {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 24px 0;
    display: block;
    transition: color 0.3s ease;
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
    color: #0067b1;
}

/* Dropdown */
.main-nav .has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 0 0 8px 8px;
    border-top: 3px solid #0067b1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.main-nav .has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #555;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown li a:hover {
    background: #f0f6fc;
    color: #0067b1;
    border-left-color: #0067b1;
}

/* Nested dropdown */
.dropdown .has-sub {
    position: relative;
}

.dropdown .has-sub > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid currentColor;
    float: right;
    margin-top: 6px;
}

.sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 0 8px 8px 0;
    border-top: 3px solid #4fc3f7;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 101;
}

.dropdown .has-sub:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-dropdown li a {
    padding: 10px 20px;
}

/* Header CTA */
.header-cta .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- HERO ---------- */
.hero {
    background: linear-gradient(135deg, #2196F3 0%, #0067b1 40%, #004d8c 100%);
    color: #fff;
    padding: 60px 0;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79,195,247,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
}

.hero-content h1 .highlight {
    color: #4fc3f7;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Slider */
.hero-slides {
    position: relative;
}

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

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

.hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots .dot.active {
    background: #4fc3f7;
    transform: scale(1.2);
}

/* Hero Form */
.hero-form-wrapper {
    flex: 0 0 420px;
}

.hero-form {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    color: #333;
}

.hero-form h3 {
    font-size: 1.1rem;
    color: #0d1b2a;
    margin-bottom: 12px;
    text-align: center;
}

/* ---------- FORM TABS ---------- */
.form-tabs {
    display: flex;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #0067b1;
}

.form-tab {
    flex: 1;
    padding: 10px 16px;
    background: #fff;
    color: #0067b1;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.form-tab.active {
    background: #0067b1;
    color: #fff;
}

.form-tab:hover:not(.active) {
    background: #e8f4fd;
}

.form-tab-content {
    display: none;
}

.form-tab-content.active {
    display: block;
}

/* Form radio group */
.form-label-sm {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: #607d8b;
    margin-bottom: 6px;
}

.form-radio-group {
    display: flex;
    gap: 16px;
}

.form-radio {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.88rem;
    color: #2c3e50;
    cursor: pointer;
}

.form-radio input[type="radio"] {
    accent-color: #0067b1;
    width: 16px;
    height: 16px;
}

/* Form success message */
.form-success-message {
    text-align: center;
    padding: 30px 20px;
}

.form-success-message .success-icon {
    width: 60px;
    height: 60px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #28a745;
    font-size: 1.5rem;
}

.form-success-message h4 {
    color: #155724;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.form-success-message p {
    color: #607d8b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ---------- FORMS ---------- */
.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #d6e4f0;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: #0067b1;
    box-shadow: 0 0 0 3px rgba(0, 103, 177, 0.1);
}

.form-control::placeholder {
    color: #aaa;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
}

.form-check input[type="checkbox"] {
    margin-top: 2px;
    width: 15px;
    height: 15px;
    accent-color: #0067b1;
    flex-shrink: 0;
}

.form-check label {
    font-size: 0.8rem;
    color: #607d8b;
    line-height: 1.4;
}

.form-check label a {
    color: #0067b1;
    text-decoration: underline;
}

/* Honeypot - gizli alan */
.form-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* ---------- ALERT MESSAGES ---------- */
.alert {
    padding: 14px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ---------- PRODUCT SHORTCUTS ---------- */
.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    text-align: center;
}

.shortcut-item {
    background: #fff;
    padding: 30px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.shortcut-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.shortcut-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #0067b1, #2196F3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.shortcut-item h4 {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

/* ---------- WHY US ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
}

.why-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: #e8f4fd;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0067b1;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.why-card:hover .icon {
    background: #0067b1;
    color: #fff;
    transform: scale(1.1);
}

.why-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #0d1b2a;
}

.why-card p {
    color: #607d8b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---------- PARTNERS ---------- */
.partners-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px 40px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.partner-logo {
    height: 45px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ---------- SOLUTIONS ---------- */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.solution-card .card-img {
    height: 200px;
    background: #d6e4f0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.solution-card .card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.solution-card .card-body {
    padding: 25px;
}

.solution-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0067b1, #2196F3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-top: -50px;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,86,179,0.3);
}

.solution-card h3 {
    font-size: 1.15rem;
    color: #0d1b2a;
    margin-bottom: 10px;
}

.solution-card p {
    color: #607d8b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.solution-card .card-link {
    color: #0067b1;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.solution-card .card-link:hover {
    color: #d82a2b;
}

/* ---------- PROCESS / STEPS ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #d6e4f0;
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    background: #fff;
    border: 3px solid #0067b1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0067b1;
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    background: #0067b1;
    color: #fff;
}

.step-item h4 {
    font-size: 1rem;
    color: #0d1b2a;
    margin-bottom: 8px;
}

.step-item p {
    color: #607d8b;
    font-size: 0.85rem;
    line-height: 1.5;
}

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

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-card .card-img {
    height: 200px;
    background: #d6e4f0;
    background-size: cover;
    background-position: center;
}

.blog-card .card-body {
    padding: 22px;
}

.blog-card .card-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 1.05rem;
    color: #0d1b2a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card h3 a:hover {
    color: #0067b1;
}

.blog-card p {
    color: #607d8b;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card .read-more {
    color: #0067b1;
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card .read-more:hover {
    color: #d82a2b;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: linear-gradient(135deg, #2196F3 0%, #0067b1 50%, #004d8c 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #0d1b2a;
    color: #ccc;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #aaa;
}

.footer-brand .footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand .footer-logo .logo-mtz {
    font-size: 1.2rem;
    font-weight: 800;
    color: #d82a2b;
    letter-spacing: 1px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-contact-item i {
    color: #4fc3f7;
    margin-top: 3px;
}

.footer-contact-item a:hover {
    color: #fff;
}

.footer h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #d82a2b;
}

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

.footer-links li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #0067b1;
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: #aaa;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* ---------- PAGE HERO (Inner Pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, #2196F3 0%, #0067b1 40%, #004d8c 100%);
    padding: 50px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Service Hero with Form */
.page-hero.service-hero {
    text-align: left;
    padding: 50px 0;
    min-height: 380px;
    display: flex;
    align-items: center;
}

.service-hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-hero-content {
    flex: 1;
}

.service-hero-content h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-hero-content .breadcrumb {
    display: flex;
    justify-content: left !important;
    margin-bottom: 18px;
    text-align: left;
}

.service-hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
}

.service-hero-form {
    flex: 0 0 380px;
}

.service-hero-form .hero-form {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    color: #333;
}

.service-hero-form .hero-form h3 {
    font-size: 1.15rem;
    color: #0d1b2a;
    margin-bottom: 5px;
    text-align: center;
}

.service-hero-form .hero-form .form-subtitle {
    text-align: center;
    color: #607d8b;
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79,195,247,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 12px;
    position: relative;
}

.page-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    position: relative;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.page-hero .breadcrumb a:hover {
    color: #fff;
}

.page-hero .breadcrumb .separator {
    color: rgba(255,255,255,0.4);
}

/* ---------- SERVICE PAGE ---------- */
.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-intro-img {
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    background: #d6e4f0;
    background-size: cover;
    background-position: center;
}

.service-intro-text h2 {
    font-size: 1.6rem;
    color: #0d1b2a;
    margin-bottom: 15px;
}

.service-intro-text p {
    color: #607d8b;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Advantages */
.advantages-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.advantage-item .icon {
    width: 46px;
    height: 46px;
    background: #e8f4fd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0067b1;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.advantage-item h4 {
    font-size: 0.95rem;
    color: #0d1b2a;
    margin-bottom: 5px;
}

.advantage-item p {
    font-size: 0.85rem;
    color: #607d8b;
    line-height: 1.5;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #d6e4f0;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.faq-question:hover {
    background: #f0f6fc;
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: #0067b1;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 0 20px 16px;
    max-height: 500px;
}

.faq-answer p {
    color: #607d8b;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---------- INLINE OFFER FORM ---------- */
.inline-form-section {
    background: linear-gradient(135deg, #2196F3, #0067b1, #004d8c);
    padding: 60px 0;
    color: #fff;
}

.inline-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.inline-form-text h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.inline-form-text p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.inline-form-text .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.inline-form-text .feature-list li i {
    color: #4fc3f7;
}

.inline-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    color: #333;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.inline-form-card h3 {
    font-size: 1.15rem;
    color: #0d1b2a;
    margin-bottom: 20px;
    text-align: center;
}

/* ---------- ABOUT PAGE ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    background: #d6e4f0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-img .experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #0067b1;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
}

.about-img .experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.about-img .experience-badge .label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 15px;
}

.stat-item .number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0067b1;
    margin-bottom: 5px;
}

.stat-item .label {
    color: #607d8b;
    font-size: 0.9rem;
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f0f6fc;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-info-card .icon {
    width: 50px;
    height: 50px;
    background: #0067b1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    color: #0d1b2a;
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    color: #607d8b;
    font-size: 0.9rem;
}

.contact-info-card a:hover {
    color: #0067b1;
}

.contact-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
    font-size: 1.2rem;
    color: #0d1b2a;
    margin-bottom: 20px;
}

.map-container {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    background: #d6e4f0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ---------- BLOG PAGE ---------- */
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.blog-detail-content h2,
.blog-detail-content h3 {
    color: #0d1b2a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-detail-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-detail-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.blog-detail-content ul li {
    list-style: disc;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.blog-detail-img {
    width: 100%;
    height: 400px;
    background: #d6e4f0;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

/* ---------- POLICY PAGES ---------- */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.4rem;
    color: #0d1b2a;
    margin-top: 35px;
    margin-bottom: 15px;
}

.policy-content h3 {
    font-size: 1.15rem;
    color: #333;
    margin-top: 25px;
    margin-bottom: 10px;
}

.policy-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-content ul li {
    list-style: disc;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.6;
}

/* ---------- KVKK MODAL ---------- */
.kvkk-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.kvkk-modal-overlay.active {
    display: flex;
}

.kvkk-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.kvkk-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #d6e4f0;
    background: #f0f6fc;
}

.kvkk-modal-header h3 {
    font-size: 1.05rem;
    color: #0d1b2a;
    margin: 0;
}

.kvkk-modal-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #607d8b;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

.kvkk-modal-close:hover {
    color: #d82a2b;
}

.kvkk-modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(80vh - 60px);
    font-size: 0.88rem;
    color: #2c3e50;
    line-height: 1.7;
}

.kvkk-modal-body h4 {
    font-size: 0.95rem;
    color: #0d1b2a;
    margin: 18px 0 8px;
}

.kvkk-modal-body ul {
    padding-left: 18px;
    margin-bottom: 12px;
}

.kvkk-modal-body ul li {
    list-style: disc;
    margin-bottom: 4px;
}

/* ---------- WHATSAPP BUTTON ---------- */
.whatsapp-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-bubble {
    background: #fff;
    color: #2c3e50;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    white-space: nowrap;
    animation: bubblePulse 3s ease-in-out infinite;
}

@keyframes bubblePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.whatsapp-float {
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: #0067b1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #004d8c;
    transform: translateY(-3px);
}

/* ---------- SIGORTALAR PAGE ---------- */
.insurance-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.insurance-category h3 {
    font-size: 1.2rem;
    color: #0d1b2a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0067b1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.insurance-category h3 i {
    color: #0067b1;
}

.insurance-list li {
    margin-bottom: 10px;
}

.insurance-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f0f6fc;
    border-radius: 8px;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.insurance-list li a:hover {
    background: #0067b1;
    color: #fff;
    transform: translateX(5px);
}

.insurance-list li a i {
    color: #0067b1;
    transition: color 0.3s ease;
}

.insurance-list li a:hover i {
    color: #fff;
}
