/* ==========================================================================
   AGENCY SİGORTA - ANA STİL DOSYASI (STYLE.CSS)
   Renk Paleti: Start Sigorta Kırmızısı (#c40b11) & Prestij Laciverti (#1f2a66)
   ========================================================================== */

:root {
    --primary: #f59e0b;
    --primary-hover: #d97706;
    --primary-light: #fffbeb;
    --primary-glow: rgba(245, 158, 11, 0.35);
    
    --secondary: #0b0f19;
    --secondary-hover: #1e293b;
    --secondary-light: #f8fafc;
    
    --accent: #ffd200;
    --accent-glow: rgba(255, 210, 0, 0.35);
    
    --success: #10b981;
    --info: #0288d1;
    --warning: #f59e0b;
    
    --dark: #070a12;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --bg-page: #f8fafc;
    --bg-card: #ffffff;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 5px 10px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 35px rgba(0,0,0,0.12);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;
    
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background-color: var(--bg-page);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* ==========================================================================
   CONTAINER & LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section {
    padding: 80px 0;
}

.section-bg {
    background-color: #f1f5f9;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd200 0%, #f59e0b 100%);
    color: #0b0f19;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffe033 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.5);
    color: #0b0f19;
}

.btn-secondary {
    background-color: var(--secondary);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    color: #ffd200;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--primary-light);
}

.btn-white {
    background-color: #ffffff;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background-color: #f8fafc;
    color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.825rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-item i {
    color: var(--primary);
}

.topbar-dashboard-link {
    background: rgba(255, 255, 255, 0.12);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.topbar-dashboard-link:hover {
    background: var(--primary);
    color: #ffffff;
}

/* ==========================================================================
   NAVBAR (STICKY HEADER)
   ========================================================================== */
.header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

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

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

.logo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img-wrap {
    width: 42px;
    height: 42px;
    background: #0b0f19;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1.5px solid rgba(255, 210, 0, 0.35);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    flex-shrink: 0;
}

.logo-brand:hover .logo-img-wrap {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 6px 20px rgba(255, 210, 0, 0.4);
    border-color: #ffd200;
}

.brand-triangle-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #e62225);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-title span {
    color: var(--primary);
}

.logo-subtitle {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    padding: 6px 2px;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-actions .btn {
    padding: 9px 18px;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
}

.header-phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.84rem;
    color: var(--secondary);
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.header-phone-btn i {
    color: var(--primary);
    font-size: 0.95rem;
}

.header-phone-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fffef7 45%, #f8fafc 100%);
    padding: 60px 0 90px 0;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255, 210, 0, 0.22) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 15, 25, 0.08) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.hero-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 40px auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.12);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: #b45309;
    margin-bottom: 20px;
}

.hero-tag i {
    color: #f59e0b;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.hero-title span.highlight {
    color: #d97706;
    background: linear-gradient(135deg, #b45309 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

/* Hero 7 Branch Quick Cards */
.hero-branches-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
    margin-top: 35px;
}

.hero-branch-card {
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.hero-branch-card:hover {
    border-color: #ffd200;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.2), 0 4px 10px rgba(0,0,0,0.04);
}

.hero-branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border);
    transition: var(--transition);
}

.hero-branch-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px var(--primary-glow);
}

.hero-branch-card:hover::before {
    background: var(--primary);
}

.hero-branch-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 14px;
    transition: var(--transition);
}

.hero-branch-card:hover .hero-branch-icon {
    background: var(--primary-light);
    color: var(--primary);
    transform: scale(1.1);
}

.hero-branch-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.hero-branch-action {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Teklif Balonu (Start Sigorta Özelliği) */
.offer-balloon {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff4757, var(--primary));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    text-align: center;
    padding: 12px;
    box-shadow: 0 8px 25px var(--primary-glow);
    transition: var(--transition);
    z-index: 990;
    cursor: pointer;
    animation: morph 8s ease-in-out infinite, pulse-red 2s infinite;
}

.offer-balloon i {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.offer-balloon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(196, 11, 17, 0.5);
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(196, 11, 17, 0.7); }
    70% { box-shadow: 0 0 0 16px rgba(196, 11, 17, 0); }
    100% { box-shadow: 0 0 0 0 rgba(196, 11, 17, 0); }
}

/* ==========================================================================
   PARTNER COMPANIES (ANLAŞMALI ŞİRKETLER)
   ========================================================================== */
.partners-section {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partners-title {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 24px;
}

.partner-badge {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
    transition: var(--transition);
}

.partner-badge:hover {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.partner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* ==========================================================================
   PRODUCT SERVICES SECTION
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: #f1f5f9;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--primary);
    color: white;
}

.service-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 0.88rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.service-features li i {
    color: var(--success);
}

/* ==========================================================================
   WHY US (NEDEN AGENCY SİGORTA)
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-item {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.why-icon {
    width: 68px;
    height: 68px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 18px auto;
}

.why-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.why-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   STATISTICS BAR
   ========================================================================== */
.stats-bar {
    background: linear-gradient(135deg, var(--secondary) 0%, #11183c 100%);
    color: white;
    padding: 60px 0;
}

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

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    color: var(--primary);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   CALCULATORS SECTION (HESAPLAMALAR)
   ========================================================================== */
.calc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.calc-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.calc-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.calc-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.calc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.calc-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* ==========================================================================
   FAQ ACCORDION (SIKÇA SORULAN SORULAR)
   ========================================================================== */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 18px 24px;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.faq-question i {
    transition: transform 0.25s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 18px;
    max-height: 250px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.contact-info-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
}

.contact-map-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.map-placeholder {
    width: 100%;
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: none;
    min-height: 300px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 30px 0;
}

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

.footer-brand .logo-title {
    color: #ffffff;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

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

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   MODAL - QUOTE WIZARD (DİNAMİK BRANŞ FORMU)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(15px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
}

.modal-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-branch-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
}

.modal-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
}

.modal-close:hover {
    color: var(--primary);
}

/* Modal Branch Switcher Tabs */
.modal-branch-tabs {
    display: flex;
    overflow-x: auto;
    padding: 12px 20px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    gap: 8px;
    scrollbar-width: thin;
}

.modal-tab-btn {
    padding: 6px 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.modal-tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.modal-body {
    padding: 28px;
}

/* Form Styles */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group.col-span-2 {
    grid-column: span 2;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-label .req {
    color: var(--primary);
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--text);
    transition: var(--transition);
    background: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

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

.form-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
}

.modal-footer {
    padding: 18px 28px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #ffffff;
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease;
    min-width: 300px;
    max-width: 420px;
}

.toast.toast-success {
    border-left-color: var(--success);
}

.toast-icon {
    font-size: 1.4rem;
    color: var(--primary);
}

.toast.toast-success .toast-icon {
    color: var(--success);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
}

.toast-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION BAR
   ========================================================================== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.06);
    z-index: 1000;
    padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
}

.mobile-bottom-bar .bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    text-align: center;
}

.mobile-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    gap: 4px;
    padding: 6px 2px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-bar-btn i {
    font-size: 1.25rem;
}

.mobile-bar-btn.active, .mobile-bar-btn:hover {
    color: var(--primary);
}

.mobile-bar-btn.is-primary {
    color: #ffffff;
    background: var(--primary);
    border-radius: var(--radius-md);
}

.mobile-bar-btn.is-primary i {
    color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1199px) {
    .nav-menu {
        gap: 12px;
    }
    .nav-link {
        font-size: 0.82rem;
    }
    .header-phone-btn {
        padding: 7px 10px;
        font-size: 0.8rem;
    }
    .header-actions .btn {
        padding: 8px 14px;
        font-size: 0.84rem;
    }
    .hero-branches-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .calc-grid, .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .topbar {
        display: none;
    }
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 70px;
    }
    .mobile-bottom-bar {
        display: block;
    }
    .offer-balloon {
        display: none;
    }
    .hero {
        padding: 40px 0 60px 0;
    }
    .hero-title {
        font-size: 1.95rem;
    }
    .hero-branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid, .calc-grid, .why-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.col-span-2 {
        grid-column: span 1;
    }
    .whatsapp-float {
        bottom: 80px;
        right: 18px;
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
}

/* ==========================================================================
   ÇEREZ BİLDİRİM BANNER'I (COOKIE CONSENT BAR)
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0b0f19;
    color: #f8fafc;
    border-top: 2px solid #ffd200;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    padding: 16px 0;
    font-size: 0.88rem;
    animation: slideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text-group {
    display: flex;
    align-items: center;
    gap: 14px;
    line-height: 1.5;
}

.cookie-text-group p {
    color: #cbd5e1;
    margin: 0;
}

.cookie-text-group a {
    color: #ffd200;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-icon-pulse {
    font-size: 1.8rem;
    color: #ffd200;
    flex-shrink: 0;
}

.cookie-btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 14px 0 70px 0; /* Mobil alt bar payı */
    }
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .cookie-btn-group {
        width: 100%;
        justify-content: stretch;
    }
    .cookie-btn-group button {
        flex: 1;
        text-align: center;
    }
}
