/* ================================================
   Nuri Kurtarıcı — Ana Stil Dosyası
   ================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Renk Değişkenleri --- */
:root {
    --navy:       #061B33;
    --dark-blue:  #0B2A4A;
    --orange:     #FF6B00;
    --orange-lt:  #FF8A00;
    --white:      #FFFFFF;
    --gray-lt:    #F5F7FA;
    --gray:       #e8ecf0;
    --text:       #2d3748;
    --text-muted: #718096;
    --green-wa:   #25D366;
    --radius:     8px;
    --shadow:     0 4px 20px rgba(0,0,0,.10);
    --shadow-lg:  0 8px 40px rgba(0,0,0,.15);
    --transition: .25s ease;
    --header-bg:  #ffffff;
    --header-text:#1a1a2e;
}

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}
.section-label {
    display: inline-block;
    color: var(--orange);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: .6rem;
    padding: .25rem .75rem;
    background: rgba(255,107,0,.1);
    border-radius: 4px;
}
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,.35); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--dark-blue); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); border: 2px solid #fff; }
.btn-white:hover { background: transparent; color: #fff; }
.btn-wa { background: var(--green-wa); color: #fff; }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-outline-orange { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ================================================
   TOP INFO BAR
   ================================================ */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    padding: .5rem 0;
}
.top-bar .container {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .5rem;
}
.top-bar-left { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: .35rem; }
.top-bar-item i { opacity: .7; font-size: .8rem; }
.top-bar-right a {
    display: flex; align-items: center; gap: .4rem;
    color: var(--orange); font-weight: 700; font-size: .9rem;
    transition: var(--transition);
}
.top-bar-right a:hover { color: var(--orange-lt); }

/* ================================================
   HEADER / NAV
   ================================================ */
.site-header {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    border-bottom: 1px solid var(--gray);
    transition: box-shadow var(--transition);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: .8rem 0; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-text { line-height: 1.2; }
.logo-text .brand { font-size: 1.3rem; font-weight: 800; color: var(--navy); letter-spacing: -.3px; }
.logo-text .tagline { font-size: .72rem; color: var(--orange); letter-spacing: .5px; text-transform: uppercase; font-weight: 600; }
.logo-icon {
    width: 42px; height: 42px;
    background: var(--orange); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon i { color: #fff; font-size: 1.1rem; }
.logo-icon svg { color: #fff; }

.main-nav { display: flex; align-items: center; gap: .15rem; }
.main-nav > a,
.nav-has-dropdown > a {
    color: var(--header-text);
    font-size: .88rem;
    font-weight: 500;
    padding: .5rem .7rem;
    border-radius: 6px;
    transition: var(--transition);
    display: flex; align-items: center; gap: .3rem;
}
.main-nav > a:hover,
.main-nav > a.active,
.nav-has-dropdown:hover > a { color: var(--orange); background: rgba(255,107,0,.07); }

/* Dropdown */
.nav-has-dropdown { position: relative; }
.nav-dropdown {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: #fff;
    border: 1px solid var(--gray);
    border-radius: 10px;
    padding: .4rem 0;
    min-width: 200px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    opacity: 0; visibility: hidden;
    transform: translateY(6px);
    transition: all .2s ease;
    z-index: 100;
}
.nav-has-dropdown:hover .nav-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown li a {
    display: block;
    padding: .5rem 1rem;
    font-size: .85rem;
    color: var(--text);
    transition: var(--transition);
}
.nav-dropdown li a:hover { color: var(--orange); background: var(--gray-lt); }

/* Header CTA */
.header-cta-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--orange); color: #fff;
    padding: .6rem 1.3rem;
    border-radius: 50px;
    font-weight: 700; font-size: .88rem;
    transition: var(--transition);
    white-space: nowrap;
}
.header-cta-btn:hover { background: var(--orange-lt); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,107,0,.3); }

/* Legacy header-cta support */
.header-cta {
    display: flex; flex-direction: column; align-items: flex-end; gap: .15rem;
}

.hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 38px; height: 38px;
    background: var(--gray-lt); border: 1px solid var(--gray);
    border-radius: 6px; cursor: pointer; padding: 7px;
}
.hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--navy); border-radius: 2px; transition: var(--transition);
}
body.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex; align-items: stretch; flex-direction: column; justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-blue) 60%, #0d3460 100%);
    overflow: hidden;
    padding: 5rem 0 0;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--hero-bg, url('../img/hero-bg.jpg')) center/cover no-repeat;
    opacity: .32;
}
/* Gerçek resim yüklendiğinde daha güçlü overlay */
.hero[style*="--hero-bg"]::before { opacity: .45; }
.hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 15% 50%, rgba(255,107,0,.18) 0%, transparent 45%),
                      radial-gradient(circle at 85% 20%, rgba(6,27,51,.6) 0%, transparent 50%);
}
.hero .container { position: relative; width: 100%; }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(255,107,0,.15);
    border: 1px solid rgba(255,107,0,.3);
    color: var(--orange);
    font-size: .78rem; font-weight: 700;
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    letter-spacing: .5px; text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800; color: #fff;
    line-height: 1.15; margin-bottom: 1.2rem; letter-spacing: -.5px;
}
.hero h1 span { color: var(--orange); }
.hero-desc {
    color: rgba(255,255,255,.75); font-size: 1rem;
    max-width: 520px; margin-bottom: 2rem; line-height: 1.7;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }

/* Hero inline stats (screenshot'taki 3 küçük rozet) */
.hero-inline-stats {
    display: flex; flex-wrap: wrap; gap: .75rem;
    margin-bottom: 1.75rem;
}
.hero-stat-badge {
    display: flex; align-items: center; gap: .6rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    padding: .5rem .9rem;
    color: rgba(255,255,255,.9);
    font-size: .8rem; line-height: 1.3;
}
.hero-stat-badge i { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; }
.hero-stat-badge strong { display: block; font-weight: 700; }

/* Hero CTA stacked buttons (screenshot stili) */
.hero-btn-stack {
    flex-direction: row; align-items: center; gap: .75rem;
    line-height: 1.25;
}
.hero-btn-stack small { font-size: .75rem; opacity: .8; font-weight: 400; }
.hero-btn-stack span { text-align: left; }

/* Hero emergency card (right column) */
.hero-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    color: var(--navy);
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.hero-card-title {
    font-size: .72rem; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-muted); margin-bottom: .4rem;
}
.hero-card-phone {
    font-size: 1.4rem; font-weight: 800; color: var(--orange);
    margin-bottom: 1rem; display: block;
}
.hero-card-features { margin-bottom: 1.25rem; }
.hero-card-feature {
    display: flex; align-items: center; gap: .5rem;
    font-size: .85rem; color: var(--text);
    margin-bottom: .5rem;
}
.hero-card-feature i { color: var(--green-wa); flex-shrink: 0; font-size: .9rem; }

/* Hero stats bar at bottom */
.hero .container { flex: 1; padding-bottom: 4rem; }
.hero-stats-bar {
    margin-top: auto;
    background: rgba(0,0,0,.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
}
.hero-stats-bar .container { padding: 0 20px; }
.hero-stats-inner {
    display: flex; align-items: stretch;
}
.hero-stat-item {
    flex: 1; text-align: center;
    padding: .9rem 1rem;
    border-right: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.85); font-size: .82rem;
    display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-item i { color: var(--orange); font-size: 1rem; }

/* ================================================
   SERVICES
   ================================================ */
.services-section { background: #fff; padding: 5rem 0; }
.services-section .text-center { margin-bottom: .25rem; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray);
    display: flex; flex-direction: column;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}
.service-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.1rem;
}
.service-icon i { color: #fff; font-size: 1.4rem; }
.service-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.service-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.6; flex: 1; margin-bottom: 1.2rem; }
.service-card .btn { align-self: flex-start; font-size: .82rem; padding: .45rem .9rem; }

/* ================================================
   WHY US
   ================================================ */
.why-section { padding: 5rem 0; background: var(--navy); }
.why-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 4rem;
    align-items: start;
}
.why-left .section-label { }
.why-left .section-title { color: #fff; margin-bottom: .75rem; }
.why-left p { color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 2rem; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.why-item {
    display: flex; gap: .9rem; align-items: flex-start;
    padding: 1.2rem;
    background: rgba(255,255,255,.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
    transition: var(--transition);
}
.why-item:hover { background: rgba(255,255,255,.08); border-color: rgba(255,107,0,.25); }
.why-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.why-icon i { color: #fff; font-size: 1.1rem; }
.why-item h3 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.why-item p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ================================================
   REGIONS
   ================================================ */
.regions-section { padding: 5rem 0; background: #fff; }
.regions-badges { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.5rem; }
.region-badge {
    display: flex; align-items: center; gap: .35rem;
    background: var(--gray-lt); border: 1px solid var(--gray);
    color: var(--navy); font-size: .88rem; font-weight: 600;
    padding: .5rem 1.1rem; border-radius: 50px;
    transition: var(--transition); cursor: default;
}
.region-badge:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.region-badge i { color: var(--orange); font-size: .8rem; transition: var(--transition); }
.region-badge:hover i { color: #fff; }
.regions-seo {
    background: var(--gray-lt); border-left: 4px solid var(--orange);
    padding: 1rem 1.5rem; border-radius: 0 8px 8px 0;
    color: var(--text-muted); font-size: .85rem; line-height: 1.7;
}

/* ================================================
   PROCESS
   ================================================ */
.process-section { padding: 5rem 0; background: var(--gray-lt); }
.process-steps {
    display: flex; align-items: flex-start; gap: 0;
}
.process-step {
    flex: 1; text-align: center;
    padding: 0 .5rem;
}
.process-arrow {
    padding-top: 1.8rem; flex-shrink: 0;
    color: var(--orange); font-size: 1.3rem;
}
.process-step-num {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 800; color: #fff;
    margin: 0 auto .9rem;
    box-shadow: 0 4px 16px rgba(255,107,0,.3);
}
.process-step-icon { font-size: 1.4rem; margin-bottom: .5rem; color: var(--navy); }
.process-step-icon i { color: var(--navy); }
.process-step h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.process-step p { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }

/* ================================================
   REVIEWS + FAQ (combined)
   ================================================ */
.reviews-faq-section { padding: 5rem 0; background: #fff; }
.reviews-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Testimonials */
.reviews-col .section-title,
.faq-col .section-title { font-size: 1.5rem; }
.testimonials-grid {
    display: flex; flex-direction: column; gap: 1rem;
    margin-top: 1.5rem;
}
.testimonial-card {
    background: var(--gray-lt); border-radius: 12px;
    padding: 1.5rem; border: 1px solid var(--gray); transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.testimonial-stars { color: #f59e0b; font-size: .95rem; margin-bottom: .65rem; letter-spacing: 2px; }
.testimonial-text {
    font-size: .9rem; color: var(--text); line-height: 1.7;
    font-style: italic; margin-bottom: .9rem;
}
.testimonial-author { display: flex; align-items: center; gap: .65rem; }
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--dark-blue));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .85rem; color: var(--navy); }
.testimonial-location { font-size: .75rem; color: var(--text-muted); }

/* FAQ inside combined section */
.faq-col .faq-list { max-width: none; margin: 1.5rem 0 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff; border-radius: 10px; margin-bottom: .85rem;
    border: 1px solid var(--gray); overflow: hidden;
    transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow); border-color: var(--orange); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer; font-weight: 600; color: var(--navy);
    font-size: .92rem; background: none; border: none; width: 100%; text-align: left;
}
.faq-question:hover { background: var(--gray-lt); }
.faq-arrow {
    flex-shrink: 0; width: 24px; height: 24px;
    background: var(--gray-lt); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--orange); color: #fff; }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 1.25rem; color: var(--text-muted);
    font-size: .88rem; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.25rem 1.1rem; }

/* Legacy standalone FAQ section */
.faq-section { padding: 5rem 0; background: var(--gray-lt); }

/* ================================================
   CTA BAND
   ================================================ */
.cta-band { background: var(--navy); padding: 3rem 0; }
.cta-band-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 2rem;
}

/* Turuncu varyant — screenshot tasarımı */
.cta-band--orange { background: var(--orange) !important; padding: 2.2rem 0; }
.cta-band--orange .cta-band-inner { gap: 1.5rem; }

/* Sol telefon ikonu dairesi */
.cta-band-phone-icon {
    width: 72px; height: 72px; flex-shrink: 0;
    background: rgba(255,255,255,.18);
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: #fff;
}

/* Orta metin */
.cta-band-text { flex: 1; text-align: center; }
.cta-band-label {
    font-size: 45px;
    font-weight: 800; color: #fff;
    margin-bottom: .6rem; line-height: 1.3;
    letter-spacing: -.2px;
}
.cta-band-row {
    display: flex; align-items: center; justify-content: center;
    gap: .75rem; flex-wrap: wrap;
}
.cta-band-call {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: #fff; font-weight: 700;
    white-space: nowrap;
}
.cta-band-num {
    display: inline-flex; align-items: center;
    background: #061B33;
    color: #fff;
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);
    font-weight: 900;
    padding: .5rem 1.75rem;
    border-radius: 8px;
    letter-spacing: .3px;
    transition: background .2s;
    white-space: nowrap;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}
.cta-band-num:hover { background: #0d3460; }

/* Eski .cta-band-text h2/p desteği (diğer sayfalarda) */
.cta-band-text h2 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 800; color: #fff; margin-bottom: .35rem; }
.cta-band-text > p { color: #FFFFFF; font-size: 40px; }
.cta-band-text > p strong { color: #fff; font-size: 1.2rem; }
.cta-band-icon { font-size: 3rem; color: var(--orange); flex-shrink: 0; }

/* Sağ 7/24 rozeti */
.cta-band-badge {
    width: 90px; height: 90px; flex-shrink: 0;
    border: 3px solid rgba(255,255,255,.7);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: .1rem;
}
.cta-band-badge .badge-num { font-size: 1.6rem; font-weight: 900; color: #fff; line-height: 1; }
.cta-band-badge .badge-txt { font-size: .55rem; letter-spacing: 1.5px; color: rgba(255,255,255,.85); text-transform: uppercase; font-weight: 700; }

@media (max-width: 768px) {
    .cta-band--orange .cta-band-inner { flex-direction: column; text-align: center; gap: 1rem; }
    .cta-band-row { justify-content: center; }
    .cta-band-phone-icon { width: 56px; height: 56px; font-size: 1.4rem; }
    .cta-band-badge { width: 72px; height: 72px; }
    .cta-band-badge .badge-num { font-size: 1.3rem; }
}

/* ================================================
   CONTACT
   ================================================ */
.contact-section { padding: 5rem 0; background: var(--gray-lt); }
.contact-section .section-title { color: var(--navy); }
.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 3rem;
    align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-box { }
.contact-info-box h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.contact-info-box p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; margin-bottom: 1rem; }
.contact-items { display: flex; flex-direction: column; gap: .6rem; }
.contact-item {
    display: flex; gap: .85rem; align-items: center;
    padding: .85rem 1rem;
    background: #fff; border-radius: 10px;
    border: 1px solid var(--gray); transition: var(--transition);
}
.contact-item:hover { border-color: var(--orange); }
.contact-item-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.contact-item-icon i { color: #fff; font-size: 1rem; }
.contact-item-icon svg { color: #fff; }
.contact-item-title { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.contact-item-value { font-size: .92rem; font-weight: 600; color: var(--navy); }
.contact-item-value a { color: var(--navy); transition: var(--transition); }
.contact-item-value a:hover { color: var(--orange); }

/* Contact form */
.contact-form-wrap { background: #fff; border-radius: 16px; padding: 1.75rem; border: 1px solid var(--gray); }
.contact-form-wrap h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; }
.form-group { margin-bottom: .9rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: .7rem .9rem;
    border: 1.5px solid var(--gray); border-radius: var(--radius);
    font-size: .9rem; font-family: inherit; color: var(--text);
    background: #fff; transition: border-color var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,0,.1); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit-btn { width: 100%; justify-content: center; }
#formSuccess {
    display: none; background: #d1fae5; border: 1px solid #34d399;
    color: #065f46; padding: .9rem; border-radius: var(--radius);
    text-align: center; font-weight: 600; margin-top: .75rem; font-size: .9rem;
}
#formError {
    display: none; background: #fee2e2; border: 1px solid #f87171;
    color: #991b1b; padding: .9rem; border-radius: var(--radius);
    text-align: center; margin-top: .75rem; font-size: .9rem;
}

/* Contact map */
.contact-map { border-radius: 14px; overflow: hidden; border: 1px solid var(--gray); box-shadow: var(--shadow); }
.contact-map iframe { width: 100%; height: 100%; min-height: 520px; display: block; border: none; }

/* Legacy map placeholder */
.map-placeholder { border-radius: 12px; overflow: hidden; border: 1px solid var(--gray); }
.map-placeholder iframe { width: 100%; height: 220px; display: block; border: none; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 4rem 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.1fr 1.1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: .9rem; }
.footer-brand .logo .brand { color: #fff; }
.footer-brand .logo .tagline { color: var(--orange); }
.footer-brand p { font-size: .83rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); color: rgba(255,255,255,.65);
    font-size: .9rem;
}
.footer-social a:hover { background: var(--orange); color: #fff; }

.footer-col h4 {
    color: #fff; font-size: .92rem; font-weight: 700;
    margin-bottom: 1.1rem; padding-bottom: .5rem;
    border-bottom: 2px solid rgba(255,107,0,.35);
}
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul li a {
    font-size: .82rem; color: rgba(255,255,255,.55); transition: var(--transition);
    display: inline-flex; align-items: center; gap: .3rem;
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }

/* Footer CTA box */
.footer-cta-box {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px; padding: 1.5rem; text-align: center;
}
.footer-cta-box .label { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.45); margin-bottom: .3rem; }
.footer-cta-box .phone-num { font-size: 1.3rem; font-weight: 800; color: var(--orange); margin-bottom: 1.1rem; display: block; }
.footer-cta-box .btns { display: flex; flex-direction: column; gap: .55rem; }
.footer-cta-box .btn { justify-content: center; font-size: .85rem; padding: .6rem 1rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.2rem 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .5rem; font-size: .78rem;
}
.footer-bottom-links { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,.45); transition: var(--transition); }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom-sep { color: rgba(255,255,255,.2); }
.footer-krea { color: rgba(255,255,255,.35) !important; font-size: .75rem; }
.footer-krea:hover { color: var(--orange) !important; }

/* ================================================
   FIXED FLOATING BUTTONS
   ================================================ */
.float-call-btn {
    position: fixed; bottom: 24px; right: 24px;
    background: var(--green-wa); color: #fff;
    border-radius: 50px;
    display: flex; align-items: center; gap: .5rem;
    padding: 0 1.2rem 0 .9rem; height: 52px;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 800; transition: var(--transition);
    animation: pulse-wa 2.5s infinite;
    font-weight: 700; font-size: .88rem;
}
.float-call-btn i { font-size: 1.1rem; }
.float-call-btn:hover { transform: scale(1.06); box-shadow: 0 8px 30px rgba(37,211,102,.55); }

.mobile-action-bar {
    display: none; position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 800; grid-template-columns: 1fr 1fr;
    box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.mobile-action-bar a {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    padding: 1rem; font-weight: 700; font-size: .95rem; color: #fff;
}
.mobile-action-bar .mob-call { background: var(--orange); }
.mobile-action-bar .mob-wa   { background: var(--green-wa); }

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
    .hero-grid { grid-template-columns: 1fr 280px; }
    .why-layout { grid-template-columns: 300px 1fr; gap: 2.5rem; }
    .reviews-faq-grid { gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
    .footer-grid .footer-col:nth-child(4),
    .footer-grid .footer-col:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr 280px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-layout { grid-template-columns: 1fr; gap: 2rem; }
    .reviews-faq-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-map iframe { min-height: 350px; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .cta-band-inner { gap: 1.5rem; }
}

@media (max-width: 768px) {
    /* Header */
    .header-cta-btn { display: none; }
    .hamburger { display: flex; }
    .main-nav {
        display: none; position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff; flex-direction: column;
        padding: 1rem; gap: .25rem;
        border-top: 1px solid var(--gray);
        box-shadow: 0 8px 20px rgba(0,0,0,.1);
    }
    body.nav-open .main-nav { display: flex; }
    .main-nav > a, .nav-has-dropdown > a { padding: .75rem 1rem; border-radius: 8px; width: 100%; }
    .nav-has-dropdown { width: 100%; }
    .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--gray-lt); border-radius: 8px; padding: .25rem 0; margin-top: .25rem; }

    /* Hero */
    .hero { padding: 3rem 0 0; min-height: auto; }
    .hero .container { padding-bottom: 2.5rem; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-card { max-width: 100%; }
    .hero-cta-group .btn { font-size: .82rem; padding: .6rem .9rem; }
    .hero-inline-stats { gap: .5rem; }
    .hero-stat-badge { padding: .4rem .7rem; font-size: .76rem; }
    .hero-stats-inner { flex-direction: column; }
    .hero-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); justify-content: flex-start; padding: .7rem 1rem; }
    .hero-stat-item:last-child { border-bottom: none; }

    /* CTA band */
    .cta-band-inner { flex-direction: column; text-align: center; gap: 1.25rem; }
    .cta-band-icon { font-size: 2.5rem; }

    /* Footer — 2 kolonlu kompakt */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    /* Brand tam genişlik */
    .footer-brand { grid-column: 1 / -1; }
    /* CTA kutusu tam genişlik */
    .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
    .footer-cta-box .btns { flex-direction: row; }
    /* Footer alt bar */
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: .4rem; }
    .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: .6rem; }
    .footer-bottom-sep { display: none; }

    .float-call-btn { display: none; }
    .mobile-action-bar { display: grid; }
    body { padding-bottom: 64px; }

    /* Top bar */
    .top-bar-left { display: none; }
    .top-bar .container { justify-content: center; }

    /* Process */
    .process-steps { flex-wrap: wrap; }
    .process-step { min-width: 130px; flex: 0 0 calc(50% - 1rem); }
    .process-arrow { display: none; }

    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .process-step { flex: 0 0 100%; }
    .why-grid { grid-template-columns: 1fr; }
    .hero-badges { gap: .4rem; }
    .cta-band-badge { width: 80px; height: 80px; }
    .cta-band-badge .badge-num { font-size: 1.4rem; }
}

/* ================================================
   UTILITIES
   ================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ================================================
   HİZMET & HAKKIMIZDA SAYFASI
   ================================================ */

/* Hizmet & bölge hero — ikonsuz, ortalı (page-hero'dan miras alıyor) */

/* Layout: main content + sidebar */
.svc-layout { }
.svc-content-area {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
}

/* Sidebar */
.svc-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.svc-contact-card {
    background: var(--navy); border-radius: 14px;
    padding: 1.5rem; text-align: center;
}
.svc-contact-card__title {
    color: rgba(255,255,255,.7); font-size: .8rem;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: .5rem; display: flex; align-items: center;
    justify-content: center; gap: .4rem;
}
.svc-contact-card__title i { color: var(--orange); }
.svc-contact-card__phone {
    display: block; font-size: 1.4rem; font-weight: 800;
    color: var(--orange); margin-bottom: 1rem;
}
.svc-other-services {
    background: #fff; border: 1px solid var(--gray); border-radius: 12px; padding: 1.25rem;
}
.svc-other-services h3 {
    font-size: .85rem; font-weight: 700; color: var(--navy);
    text-transform: uppercase; letter-spacing: .5px;
    border-bottom: 2px solid rgba(255,107,0,.3); padding-bottom: .5rem; margin-bottom: .75rem;
}
.svc-other-services ul li { margin-bottom: .35rem; }
.svc-other-services ul li a {
    display: flex; align-items: center; gap: .5rem;
    font-size: .85rem; color: var(--text);
    padding: .3rem .4rem; border-radius: 6px;
    transition: var(--transition);
}
.svc-other-services ul li a:hover { color: var(--orange); background: #fff8f3; }
.svc-other-services ul li a i { color: var(--orange); font-size: .8rem; width: 16px; text-align: center; }

/* Hizmet sayfası içindeki özel bileşenler */
.svc-cta-box {
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
    background: var(--navy); border-radius: 12px;
    padding: 1.25rem 1.5rem; margin: 1.75rem 0;
    color: #fff;
}
.svc-cta-box > i { font-size: 2rem; color: var(--orange); flex-shrink: 0; }
.svc-cta-box > div { flex: 1; font-size: .88rem; line-height: 1.5; }
.svc-cta-box > div strong { display: block; font-size: 1rem; margin-bottom: .15rem; }
.svc-cta-box--orange { background: var(--orange); }
.svc-cta-box--orange .btn-white { border-color: #fff; }

.svc-steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 1rem; margin: 1.25rem 0;
}
.svc-step {
    display: flex; gap: .85rem; align-items: flex-start;
    background: var(--gray-lt); border-radius: 10px; padding: 1rem;
}
.svc-step > span {
    width: 32px; height: 32px; flex-shrink: 0;
    background: var(--orange); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: .9rem;
}
.svc-step strong { font-size: .92rem; color: var(--navy); display: block; margin-bottom: .2rem; }
.svc-step p { font-size: .82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

.svc-faq { margin: 1.25rem 0; }
.svc-faq-item {
    background: var(--gray-lt); border-radius: 10px;
    padding: 1rem 1.25rem; margin-bottom: .75rem;
    border-left: 3px solid var(--orange);
}
.svc-faq-item strong { display: block; color: var(--navy); margin-bottom: .35rem; font-size: .93rem; }
.svc-faq-item p { font-size: .85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Hakkımızda stats */
.about-stats {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 1rem; margin: 1.5rem 0;
}
.about-stat {
    background: var(--gray-lt); border-radius: 10px;
    padding: 1.25rem; text-align: center;
    border-top: 3px solid var(--orange);
}
.about-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--orange); }
.about-stat span { font-size: .78rem; color: var(--text-muted); }

/* Blockquote */
blockquote {
    border-left: 3px solid var(--orange);
    background: var(--gray-lt); border-radius: 0 8px 8px 0;
    padding: .85rem 1.25rem; margin: 1rem 0;
    font-style: italic; color: var(--text);
    font-size: .9rem; line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .svc-content-area, .about-layout { grid-template-columns: 1fr; }
    .svc-sidebar { order: 2; }
    .svc-main  { order: 1; }
    .about-main { order: 1; }
    .about-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 500px) {
    .svc-cta-box { flex-direction: column; text-align: center; }
    .svc-cta-box > i { font-size: 1.5rem; }
    .about-stats { grid-template-columns: repeat(2,1fr); }
}

/* ================================================
   BÖLGELER SAYFASI — MODERN TASARIM
   ================================================ */

/* ── Hero ── */
.blg-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0d3460 100%);
    padding: 3.5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.blg-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 5% 50%,  rgba(255,107,0,.18) 0%, transparent 40%),
        radial-gradient(circle at 95% 10%, rgba(255,255,255,.04) 0%, transparent 50%);
    pointer-events: none;
}
.blg-hero .breadcrumb { margin-bottom: 2.5rem; }
.blg-hero__inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: center;
    position: relative;
}
.blg-hero__pill {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(255,107,0,.15); border: 1px solid rgba(255,107,0,.3);
    color: var(--orange); font-size: .75rem; font-weight: 700;
    padding: .35rem .9rem; border-radius: 50px;
    letter-spacing: .5px; text-transform: uppercase; margin-bottom: 1.2rem;
}
.blg-hero h1 {
    font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800;
    color: #fff; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -.5px;
}
.blg-hero h1 span { color: var(--orange); }
.blg-hero__text > p {
    color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem;
}
.blg-hero__btns { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Stats grid */
.blg-hero__cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: .85rem;
}
.blg-mini-stat {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 1.25rem 1rem;
    display: flex; align-items: center; gap: .9rem;
    transition: var(--transition);
}
.blg-mini-stat:hover { background: rgba(255,255,255,.11); border-color: rgba(255,107,0,.3); }
.blg-mini-stat > i { font-size: 1.5rem; color: var(--orange); flex-shrink: 0; }
.blg-mini-stat strong { display: block; font-size: 1.15rem; font-weight: 800; color: #fff; line-height: 1.1; }
.blg-mini-stat span   { font-size: .72rem; color: rgba(255,255,255,.5); }

/* ── Kart Bölümü ── */
.blg-section { background: #f8f9fc; padding: 5rem 0; }
.blg-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.blg-header .section-title { margin-bottom: 0; }

/* Kart Grid */
.blg-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Tek Kart */
.blg-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid var(--gray);
    display: flex; flex-direction: column;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.blg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(6,27,51,.12);
    border-color: var(--orange);
}
.blg-card__top {
    background: linear-gradient(135deg, var(--navy) 0%, #0d3460 100%);
    padding: 1.25rem 1.25rem 1rem;
    display: flex; align-items: flex-start; justify-content: space-between;
}
.blg-card__icon {
    width: 46px; height: 46px;
    background: var(--orange); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.blg-card__icon i { color: #fff; font-size: 1.2rem; }
.blg-card__num {
    font-size: 2rem; font-weight: 900; color: rgba(255,255,255,.12);
    line-height: 1; letter-spacing: -1px;
    font-family: 'Inter', sans-serif;
}
.blg-card__body {
    padding: 1.1rem 1.25rem 1rem;
    flex: 1;
}
.blg-card__body h3 {
    font-size: 1.1rem; font-weight: 800; color: var(--navy);
    margin-bottom: .4rem; letter-spacing: -.2px;
}
.blg-card__body p {
    font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 .85rem;
}
.blg-card__tags {
    display: flex; flex-wrap: wrap; gap: .3rem;
}
.blg-card__tags span {
    font-size: .7rem; background: #f0f2f5;
    border-radius: 4px; padding: .2rem .55rem;
    color: var(--text-muted); white-space: nowrap;
}
.blg-card__tags-more {
    background: rgba(255,107,0,.1) !important;
    color: var(--orange) !important;
    font-weight: 700;
}
.blg-card__footer {
    display: grid; grid-template-columns: 1fr auto;
    border-top: 1px solid #f0f2f5;
}
.blg-card__btn-info {
    display: flex; align-items: center; gap: .4rem;
    padding: .85rem 1.1rem;
    font-size: .82rem; font-weight: 700; color: var(--navy);
    transition: var(--transition);
    text-decoration: none;
    border-right: 1px solid #f0f2f5;
}
.blg-card__btn-info i { font-size: .75rem; transition: transform .2s; }
.blg-card:hover .blg-card__btn-info { color: var(--orange); }
.blg-card:hover .blg-card__btn-info i { transform: translateX(3px); }
.blg-card__btn-call {
    display: flex; align-items: center; gap: .4rem;
    padding: .85rem 1.1rem;
    font-size: .82rem; font-weight: 700;
    background: var(--orange); color: #fff;
    text-decoration: none; transition: background .2s;
    white-space: nowrap;
}
.blg-card__btn-call:hover { background: var(--orange-lt); }

/* ── Neden Biz Bölümü ── */
.blg-why { background: #fff; padding: 5rem 0; }
.blg-why__grid {
    display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: start;
}
.blg-why__content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800;
    color: var(--navy); line-height: 1.25; margin: .75rem 0 1.25rem;
}
.blg-why__content > p { font-size: .93rem; line-height: 1.8; color: var(--text); margin-bottom: .85rem; }
.blg-why__features {
    display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin-top: 1.75rem;
}
.blg-why__feat {
    display: flex; align-items: center; gap: .85rem;
    padding: .9rem 1rem;
    background: #f8f9fc; border-radius: 10px;
    border: 1px solid var(--gray);
}
.blg-why__feat-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.blg-why__feat-icon i { color: #fff; font-size: .85rem; }
.blg-why__feat strong { display: block; font-size: .85rem; font-weight: 700; color: var(--navy); }
.blg-why__feat span   { font-size: .75rem; color: var(--text-muted); }

/* Sidebar */
.blg-why__sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.blg-contact-card {
    background: var(--navy); border-radius: 16px; padding: 1.75rem; text-align: center;
}
.blg-contact-card__head {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    font-size: .75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: rgba(255,255,255,.5); margin-bottom: .5rem;
}
.blg-contact-card__head i { color: var(--orange); }
.blg-contact-card__phone {
    display: block; font-size: 1.5rem; font-weight: 800;
    color: var(--orange); margin-bottom: 1.25rem; letter-spacing: -.5px;
}
.blg-contact-card__btns { display: flex; flex-direction: column; gap: .55rem; }
.blg-contact-card__btns .btn { justify-content: center; }

/* Quick links */
.blg-quick-links {
    background: #f8f9fc; border: 1px solid var(--gray);
    border-radius: 14px; padding: 1.25rem;
}
.blg-quick-links h4 {
    font-size: .82rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; color: var(--navy);
    margin-bottom: 1rem; display: flex; align-items: center; gap: .4rem;
}
.blg-quick-links h4 i { color: var(--orange); }
.blg-quick-links__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: .35rem;
}
.blg-quick-links__grid a {
    display: flex; align-items: center; justify-content: space-between;
    font-size: .82rem; font-weight: 600; color: var(--text);
    padding: .5rem .75rem; border-radius: 8px;
    background: #fff; border: 1px solid var(--gray);
    transition: var(--transition); text-decoration: none;
}
.blg-quick-links__grid a i { font-size: .65rem; color: var(--text-muted); transition: var(--transition); }
.blg-quick-links__grid a:hover { color: var(--orange); border-color: var(--orange); background: #fff8f3; }
.blg-quick-links__grid a:hover i { color: var(--orange); transform: translateX(2px); }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .blg-hero__inner { grid-template-columns: 1fr; }
    .blg-hero__cards { grid-template-columns: repeat(4, 1fr); }
    .blg-why__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .blg-why__sidebar { flex-direction: row; flex-wrap: wrap; }
    .blg-contact-card { flex: 1; min-width: 260px; }
    .blg-quick-links { flex: 1; min-width: 260px; }
}
@media (max-width: 900px) {
    .blg-cards { grid-template-columns: repeat(2, 1fr); }
    .blg-hero__cards { grid-template-columns: 1fr 1fr; gap: .65rem; }
    .blg-why__features { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .blg-cards { grid-template-columns: 1fr; }
    .blg-hero__cards { grid-template-columns: 1fr 1fr; }
    .blg-header { flex-direction: column; align-items: flex-start; }
    .blg-quick-links__grid { grid-template-columns: 1fr; }
    .blg-why__sidebar { flex-direction: column; }
}

/* (eski bölgeler hero — artık kullanılmıyor, blg-hero kullanılıyor)
.bolge-hero-OLD {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, #0d3460 60%, #061B33 100%);
    padding: 4rem 0 0;
    overflow: hidden;
}
.bolge-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 10% 60%, rgba(255,107,0,.15) 0%, transparent 45%),
                      radial-gradient(circle at 90% 20%, rgba(255,107,0,.08) 0%, transparent 40%);
}
.bolge-hero__overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(transparent, #f5f7fa);
}
.bolge-hero__inner { position: relative; }
.bolge-hero__content { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; padding-bottom: 4rem; }
.bolge-hero__badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,107,0,.15); border: 1px solid rgba(255,107,0,.35);
    color: var(--orange); font-size: .78rem; font-weight: 700;
    padding: .35rem .9rem; border-radius: 50px;
    text-transform: uppercase; letter-spacing: .5px; margin-bottom: 1.2rem;
}
.bolge-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    color: #fff; line-height: 1.15; margin-bottom: 1.1rem; letter-spacing: -.5px;
}
.bolge-hero h1 span { color: var(--orange); }
.bolge-hero > .container > div > div > p {
    color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem;
}
.bolge-hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }
.bolge-hero__cta .btn { flex-direction: row; align-items: center; gap: .6rem; line-height: 1.25; }
.bolge-hero__cta .btn small { font-size: .72rem; opacity: .8; font-weight: 400; display: block; }

/* Stats box */
.bolge-hero__stats {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 1.75rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
    backdrop-filter: blur(10px);
}
.bolge-stat {
    text-align: center;
    padding: 1rem .75rem;
    background: rgba(255,255,255,.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
}
.bolge-stat > i { font-size: 1.5rem; color: var(--orange); display: block; margin-bottom: .5rem; }
.bolge-stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1; }
.bolge-stat span { font-size: .72rem; color: rgba(255,255,255,.55); letter-spacing: .3px; }

/* Region List */
.bolge-grid-section { background: var(--gray-lt); padding: 5rem 0; }
.bolge-list { display: flex; flex-direction: column; gap: 0; }
.bolge-list-item {
    display: grid;
    grid-template-columns: 48px 52px 1fr auto;
    align-items: center;
    gap: 0 1.25rem;
    background: #fff;
    border: 1px solid var(--gray);
    border-top: none;
    padding: 1.25rem 1.5rem;
    text-decoration: none; color: inherit;
    transition: all .2s;
    position: relative;
}
.bolge-list-item:first-child { border-top: 1px solid var(--gray); border-radius: 14px 14px 0 0; }
.bolge-list-item:last-child  { border-radius: 0 0 14px 14px; }
.bolge-list-item:hover {
    background: #fff8f3;
    border-color: var(--orange);
    z-index: 1;
    box-shadow: 0 4px 20px rgba(255,107,0,.12);
    transform: translateX(4px);
}
.bolge-list-item__num {
    font-size: 1.3rem; font-weight: 900;
    color: var(--gray); line-height: 1;
    text-align: right; padding-right: .25rem;
    font-family: 'Inter', sans-serif;
}
.bolge-list-item:hover .bolge-list-item__num { color: rgba(255,107,0,.25); }
.bolge-list-item__icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.bolge-list-item__icon i { color: #fff; font-size: 1.1rem; }
.bolge-list-item__body { flex: 1; min-width: 0; }
.bolge-list-item__body h3 {
    font-size: 1.05rem; font-weight: 700; color: var(--navy);
    margin-bottom: .2rem; line-height: 1.3;
}
.bolge-list-item__body p {
    font-size: .83rem; color: var(--text-muted); margin: 0; line-height: 1.5;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 500px;
}
.bolge-list-item__tags {
    display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .5rem;
}
.bolge-list-item__tags span {
    font-size: .72rem; background: var(--gray-lt);
    border: 1px solid var(--gray); border-radius: 50px;
    padding: .15rem .6rem; color: var(--text-muted);
    white-space: nowrap;
}
.bolge-list-item__tags .more { background: rgba(255,107,0,.08); border-color: rgba(255,107,0,.2); color: var(--orange); }
.bolge-list-item__actions {
    display: flex; align-items: center; gap: .65rem;
    flex-shrink: 0;
}
.bolge-list-item__detail {
    display: flex; align-items: center; gap: .35rem;
    font-size: .82rem; font-weight: 600; color: var(--navy);
    padding: .5rem 1rem; border-radius: 8px;
    border: 1.5px solid var(--gray);
    background: #fff; transition: all .2s;
    white-space: nowrap;
}
.bolge-list-item:hover .bolge-list-item__detail {
    border-color: var(--orange); color: var(--orange);
}
.bolge-list-item__call {
    display: flex; align-items: center; gap: .35rem;
    font-size: .82rem; font-weight: 700; color: #fff;
    padding: .5rem 1rem; border-radius: 8px;
    background: var(--orange); border: none;
    white-space: nowrap; transition: all .2s;
}
.bolge-list-item__call:hover { background: var(--orange-lt); }

/* Coverage section */
.bolge-coverage { background: #fff; padding: 5rem 0; }
.bolge-coverage__grid {
    display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start;
}
.bolge-coverage__content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800;
    color: var(--navy); line-height: 1.25; margin: .75rem 0 1.25rem;
}
.bolge-coverage__content p { font-size: .93rem; line-height: 1.8; color: var(--text); margin-bottom: .85rem; }

.bolge-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.bolge-feature {
    display: flex; gap: .85rem; align-items: flex-start;
    padding: 1rem 1.1rem;
    background: var(--gray-lt); border-radius: 10px;
    border: 1px solid var(--gray);
}
.bolge-feature__icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.bolge-feature__icon i { color: #fff; font-size: .9rem; }
.bolge-feature strong { display: block; font-size: .88rem; color: var(--navy); margin-bottom: .15rem; }
.bolge-feature p { font-size: .78rem; color: var(--text-muted); margin: 0; }

/* Table */
.bolge-coverage__table {
    border: 1px solid var(--gray); border-radius: 14px; overflow: hidden;
    box-shadow: var(--shadow);
}
.bolge-table-header {
    background: var(--navy); color: #fff;
    padding: 1rem 1.25rem; font-weight: 700; font-size: .88rem;
    display: flex; align-items: center; gap: .5rem;
}
.bolge-table-header i { color: var(--orange); }
.bolge-table-wrap { overflow-y: auto; max-height: 440px; }
.bolge-coverage__table table { width: 100%; border-collapse: collapse; font-size: .83rem; }
.bolge-coverage__table thead th {
    position: sticky; top: 0;
    background: var(--gray-lt); padding: .65rem .75rem;
    text-align: center; color: var(--navy); font-size: .88rem;
    border-bottom: 2px solid var(--gray);
}
.bolge-coverage__table thead th:first-child { text-align: left; }
.bolge-coverage__table tbody td {
    padding: .6rem .75rem; border-bottom: 1px solid var(--gray-lt);
    text-align: center; vertical-align: middle;
}
.bolge-coverage__table tbody td:first-child { text-align: left; }
.bolge-coverage__table tbody tr:hover { background: #fff8f3; }
.bolge-coverage__table tbody tr:last-child td { border-bottom: none; }

/* Responsive */
@media (max-width: 1100px) {
    .bolge-hero__content { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3rem; }
    .bolge-hero__stats { grid-template-columns: repeat(4, 1fr); }
    .bolge-coverage__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
    .bolge-hero__stats { grid-template-columns: 1fr 1fr; }
    .bolge-features { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .bolge-list-item { grid-template-columns: 40px 1fr; grid-template-rows: auto auto; gap: .5rem .75rem; }
    .bolge-list-item__num { grid-row: 1; }
    .bolge-list-item__icon { display: none; }
    .bolge-list-item__body { grid-column: 2; grid-row: 1; }
    .bolge-list-item__actions { grid-column: 1 / -1; grid-row: 2; padding-top: .5rem; border-top: 1px solid var(--gray-lt); }
    .bolge-list-item__detail { flex: 1; justify-content: center; }
    .bolge-list-item__call { flex: 1; justify-content: center; }
    .bolge-hero__cta .btn small { display: none; }
}
@media (max-width: 480px) {
    .bolge-hero__stats { grid-template-columns: 1fr 1fr; }
    .bolge-list-item__tags { display: none; }
}

/* ================================================
   İLETİŞİM SAYFASI
   ================================================ */
.iletisim-acil-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--navy);
    border-radius: 14px;
    overflow: hidden;
}
.iletisim-acil-bar__item {
    display: flex; align-items: center; gap: .85rem;
    padding: 1.25rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,.08);
}
.iletisim-acil-bar__item:last-child { border-right: none; }
.iletisim-acil-bar__item > i { font-size: 1.5rem; color: var(--orange); flex-shrink: 0; }
.iletisim-acil-bar__item > div > span { display: block; font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .2rem; }
.iletisim-acil-bar__item > div > a,
.iletisim-acil-bar__item > div > strong { display: block; color: #fff; font-weight: 700; font-size: .92rem; }
.iletisim-acil-bar__item > div > a:hover { color: var(--orange); }
.iletisim-acil-bar__item--wa > i { color: #25D366; }

.iletisim-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; }

.iletisim-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.iletisim-card {
    display: flex; align-items: center; gap: .75rem;
    background: #fff; border: 1px solid var(--gray); border-radius: 10px; padding: 1rem;
    transition: var(--transition);
}
.iletisim-card:hover { border-color: var(--orange); }
.iletisim-card__icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.iletisim-card--wa .iletisim-card__icon { background: linear-gradient(135deg, #25D366, #1ebe5d); }
.iletisim-card__icon i { color: #fff; font-size: .95rem; }
.iletisim-card__label { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.iletisim-card__value { font-size: .9rem; font-weight: 600; color: var(--navy); }
.iletisim-card__value a { color: var(--navy); transition: var(--transition); }
.iletisim-card__value a:hover { color: var(--orange); }

@media (max-width: 1024px) {
    .iletisim-acil-bar { grid-template-columns: 1fr 1fr; }
    .iletisim-acil-bar__item:nth-child(2) { border-right: none; }
    .iletisim-acil-bar__item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.08); }
    .region-seo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .iletisim-acil-bar { grid-template-columns: 1fr 1fr; }
    .iletisim-grid { grid-template-columns: 1fr; }
    .region-intro { flex-direction: column; }
    .region-cards-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}
@media (max-width: 480px) {
    .iletisim-acil-bar { grid-template-columns: 1fr; }
    .iletisim-acil-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .iletisim-info-cards { grid-template-columns: 1fr; }
    .region-cards-grid { grid-template-columns: 1fr; }
}

/* ================================================
   BLOG & HİZMETLER PAGES
   ================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy), var(--dark-blue));
    padding: 3rem 0; text-align: center; color: #fff;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1rem; }
.breadcrumb {
    display: flex; align-items: center; justify-content: center; gap: .4rem;
    font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: .75rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem; padding: 4rem 0;
}
.blog-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid var(--gray);
    transition: var(--transition); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.blog-card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--navy), var(--dark-blue));
    position: relative; overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: .78rem; color: var(--text-muted); margin-bottom: .5rem; }
.blog-card h2 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; line-height: 1.4; }
.blog-card h2 a { color: var(--navy); transition: color var(--transition); }
.blog-card h2 a:hover { color: var(--orange); }
.blog-card-img { cursor: pointer; }
.blog-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-card .btn { align-self: flex-start; }

.pagination {
    display: flex; justify-content: center; gap: .5rem;
    padding: 2rem 0 4rem;
}
.pagination a, .pagination span {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; font-size: .9rem; font-weight: 600;
    border: 1.5px solid var(--gray); color: var(--navy); transition: var(--transition);
}
.pagination a:hover, .pagination .active { background: var(--orange); color: #fff; border-color: var(--orange); }

.post-content {
    max-width: 780px; margin: 3rem auto 5rem;
    font-size: 1rem; line-height: 1.8; color: var(--text);
}
.post-content h2, .post-content h3 { color: var(--navy); margin: 2rem 0 .75rem; }
.post-content p { margin-bottom: 1.2rem; }
.post-content img { border-radius: 10px; margin: 1.5rem 0; }
