/* ============================================
   OTO KURTARMA & ÇEKİCİ - MODERN DARK THEME
   ============================================ */

:root {
    --accent: #ffd000;
    --accent-hover: #ffc400;
    --accent-dark: #b39300;
    --bg-dark: #0a1015;
    --bg-mid: #101b23;
    --bg-light: #1a2832;
    --border: #1e2c38;
    --text-primary: #ffffff;
    --text-secondary: #a8b2c1;
    --text-muted: #6c7788;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --gradient: linear-gradient(135deg, #ffd000 0%, #ffb800 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
    --shadow-md: 0 8px 24px rgba(0,0,0,.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.5);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }
h1,h2,h3,h4,h5,h6 { color: var(--text-primary); font-weight: 700; line-height: 1.3; margin-bottom: 1rem; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 1rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }

/* ============================================
   BUTONLAR
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.75rem;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--bg-dark); }
.btn-primary:hover { background: var(--accent-hover); color: var(--bg-dark); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(255,208,0,.3); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.btn-success { background: #25d366; color: #fff; }
.btn-success:hover { background: #1fb855; color: #fff; }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: #000;
    color: #aaa;
    padding: .5rem 0;
    font-size: .875rem;
    border-bottom: 1px solid var(--border);
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.top-info { display: flex; gap: 1.5rem; }
.top-info span { display: flex; align-items: center; gap: .5rem; }
.top-info i { color: var(--accent); }
.top-contact { display: flex; gap: 1.5rem; }
.top-contact a { color: #fff; display: flex; align-items: center; gap: .5rem; }
.top-contact a:hover { color: var(--accent); }

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background: var(--bg-mid);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
    transition: all .3s;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.logo { display: flex; align-items: center; }
.logo img { height: 50px; width: auto; }

.main-nav ul { list-style: none; display: flex; gap: .5rem; }
.main-nav a {
    color: #fff;
    padding: .75rem 1rem;
    display: block;
    border-radius: var(--radius-sm);
    font-weight: 500;
    position: relative;
    transition: all .3s;
}
.main-nav a:hover, .main-nav a.active { color: var(--accent); }
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}
.main-nav .dropdown { position: relative; }
.main-nav .dropdown > a i { font-size: .7rem; margin-left: .25rem; }
.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: .5rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s;
    list-style: none;
    flex-direction: column;
    display: none;
    box-shadow: var(--shadow-lg);
}
.main-nav .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
}
.main-nav .dropdown-menu li { position: relative; }
.main-nav .dropdown-menu a { padding: .6rem 1rem; border-radius: var(--radius-sm); font-size: .95rem; }
.main-nav .dropdown-menu a:hover { background: var(--bg-dark); color: var(--accent); }
.main-nav .sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--bg-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: .5rem;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all .3s;
    display: none;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}
.main-nav .dropdown-menu li:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    display: flex;
}

.header-actions { display: flex; gap: 1rem; align-items: center; }
.btn-call {
    background: var(--accent);
    color: var(--bg-dark);
    padding: .65rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.btn-call:hover { background: var(--accent-hover); color: var(--bg-dark); transform: translateY(-2px); }
.btn-call span { display: inline-block; }

/* ============================================
   HAMBURGER MENÜ
   ============================================ */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: .5rem;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--accent);
    margin: 5px auto;
    border-radius: 3px;
    transition: all .3s cubic-bezier(.68,-.55,.27,1.55);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-close {
    display: none;
}

.nav-overlay {
    display: none;
}

.nav-mobile-actions {
    display: none;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider { 
    position: relative; 
    min-height: 85vh; 
    display: flex; 
    align-items: center;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-content { max-width: 700px; color: #fff; position: relative; z-index: 2; }
.hero-tag {
    display: inline-block;
    background: rgba(255,208,0,.15);
    color: var(--accent);
    padding: .5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,208,0,.3);
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.hero-subtitle { font-size: 1.25rem; margin-bottom: 2rem; color: #d1d5db; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero Kontrolleri */
.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.hero-prev, .hero-next {
    width: 50px;
    height: 50px;
    background: rgba(16,27,35,.6);
    border: 2px solid rgba(255,208,0,.3);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.25rem;
    cursor: pointer;
    pointer-events: auto;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-prev:hover, .hero-next:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    transform: scale(1.1);
}

/* Hero Noktaları */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .75rem;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: 2px solid rgba(255,255,255,.5);
    cursor: pointer;
    transition: all .3s;
    padding: 0;
}

.hero-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    width: 32px;
    border-radius: 10px;
}

.hero-dot:hover {
    background: rgba(255,208,0,.5);
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    padding: 8rem 0 4rem;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}
.page-hero-sm { padding: 6rem 0 3rem; }
.page-hero h1 { font-size: 3rem; font-weight: 900; margin-bottom: .5rem; }
.page-hero p { font-size: 1.25rem; color: #d1d5db; margin-bottom: 1.5rem; }
.breadcrumb { display: flex; justify-content: center; gap: .5rem; font-size: .95rem; flex-wrap: wrap; }
.breadcrumb a { color: #d1d5db; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header { max-width: 700px; margin: 0 auto 3rem; }
.section-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: .25rem .75rem;
    background: rgba(255,208,0,.1);
    border-radius: 50px;
}
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; color: #fff; }
.section-desc { font-size: 1.1rem; color: var(--text-secondary); }

/* ============================================
   SERVICES
   ============================================ */
.services-section { background: var(--bg-dark); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: var(--bg-mid);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(255,208,0,.3); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,208,0,.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.service-card h3 { font-size: 1.35rem; margin-bottom: .75rem; color: #fff; }
.service-card p { color: var(--text-secondary); margin-bottom: 1.25rem; }
.service-link { color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: .5rem; }
.service-link:hover { gap: .75rem; color: var(--accent-hover); }

/* ============================================
   WHY US + STATS
   ============================================ */
.why-us-section {
    background-size: cover;
    background-position: center;
    color: #fff;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-content h2 { font-size: 2.5rem; color: #fff; margin: 1rem 0 1.5rem; }
.why-features { display: grid; gap: 1.25rem; margin-top: 2rem; }
.why-feature { display: flex; gap: 1rem; align-items: flex-start; background: rgba(16,27,35,.6); padding: 1.25rem; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.08); }
.why-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.why-feature h4 { color: #fff; font-size: 1.1rem; margin-bottom: .25rem; }
.why-feature p { color: #bbb; margin: 0; font-size: .95rem; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-box {
    background: rgba(16,27,35,.8);
    border: 1px solid rgba(255,208,0,.2);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all .3s;
}
.stat-box:hover { background: rgba(255,208,0,.1); transform: translateY(-5px); }
.stat-box i { font-size: 2.5rem; color: var(--accent); margin-bottom: .75rem; }
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: .5rem;
}
.stat-label { color: #fff; font-weight: 600; }

/* ============================================
   REGIONS
   ============================================ */
.regions-section { background: var(--bg-mid); }
.regions-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.region-group {
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all .3s;
}
.region-group:hover { border-color: rgba(255,208,0,.3); box-shadow: var(--shadow-md); }
.region-title {
    color: var(--accent);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: .75rem;
}
.region-list { display: grid; gap: .5rem; }
.region-item {
    color: var(--text-secondary);
    padding: .75rem 1rem;
    background: var(--bg-mid);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: .75rem;
    transition: all .2s;
    border: 1px solid transparent;
}
.region-item i { color: var(--accent); }
.region-item:hover {
    background: rgba(255,208,0,.05);
    border-color: rgba(255,208,0,.3);
    color: var(--accent);
    transform: translateX(5px);
}

/* ============================================
   BLOG
   ============================================ */
.blog-section { background: var(--bg-dark); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: var(--bg-mid);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(255,208,0,.3); }
.blog-image { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--bg-dark);
    padding: .35rem .85rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
}
.blog-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: .875rem;
    margin-bottom: .75rem;
}
.blog-meta i { color: var(--accent); margin-right: .25rem; }
.blog-content h3 { font-size: 1.2rem; margin-bottom: .75rem; line-height: 1.4; }
.blog-content h3 a { color: #fff; }
.blog-content h3 a:hover { color: var(--accent); }
.blog-content p { color: var(--text-secondary); font-size: .95rem; margin-bottom: 1rem; flex: 1; }
.read-more {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: auto;
}
.read-more:hover { color: var(--accent-hover); gap: .75rem; }

/* ============================================
   BLOG DETAIL
   ============================================ */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.blog-main, .blog-detail-main { min-width: 0; }
.article-category {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    padding: .35rem .85rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.article-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.article-meta i { color: var(--accent); margin-right: .35rem; }
.article-cover { margin-bottom: 2rem; border-radius: var(--radius-md); overflow: hidden; }
.article-cover img { width: 100%; }
.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.article-content h2 { font-size: 1.75rem; margin: 2rem 0 1rem; color: #fff; }
.article-content h3 { font-size: 1.35rem; margin: 1.5rem 0 1rem; color: #fff; }
.article-content p { margin-bottom: 1.25rem; }
.article-content a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.article-content ul, .article-content ol { margin: 1rem 0 1rem 1.5rem; }
.article-content li { margin-bottom: .5rem; }
.article-content img { border-radius: var(--radius-md); margin: 1.5rem 0; }
.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 1rem 1.5rem;
    background: var(--bg-mid);
    margin: 1.5rem 0;
    border-radius: var(--radius-sm);
    font-style: italic;
}

.article-tags {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}
.article-tags strong { color: #fff; }
.article-tags a {
    background: var(--bg-mid);
    padding: .35rem .75rem;
    border-radius: 50px;
    font-size: .85rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}
.article-tags a:hover { background: var(--accent); color: var(--bg-dark); border-color: var(--accent); }

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
}
.article-share strong { color: #fff; }
.article-share a {
    width: 42px;
    height: 42px;
    background: var(--bg-mid);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all .3s;
}
.article-share a:hover { background: var(--accent); color: var(--bg-dark); border-color: var(--accent); transform: translateY(-3px); }

.related-posts { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.related-posts h2 { font-size: 1.75rem; margin-bottom: 2rem; }

/* ============================================
   BLOG SIDEBAR
   ============================================ */
.blog-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.sidebar-widget {
    background: var(--bg-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
}
.sidebar-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--border);
    color: #fff;
    position: relative;
}
.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}
.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.sidebar-list a {
    color: var(--text-secondary);
    padding: .65rem .85rem;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    transition: all .2s;
    background: var(--bg-dark);
}
.sidebar-list a:hover, .sidebar-list a.active { background: rgba(255,208,0,.08); color: var(--accent); }
.sidebar-list a span { background: var(--bg-light); padding: 0 .5rem; border-radius: 50px; font-size: .8rem; }

.search-widget .search-form { display: flex; }
.search-form input {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: #fff;
    padding: .75rem 1rem;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.search-form input:focus { outline: none; border-color: var(--accent); }
.search-form button {
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    padding: 0 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
}

.popular-posts { display: flex; flex-direction: column; gap: 1rem; }
.popular-post { display: flex; gap: 1rem; color: var(--text-secondary); transition: all .2s; }
.popular-post:hover { color: var(--accent); }
.popular-post img { width: 80px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.popular-post h4 { font-size: .95rem; margin-bottom: .25rem; line-height: 1.3; color: #fff; }
.popular-post span { font-size: .8rem; color: var(--text-muted); }
.popular-post span i { color: var(--accent); margin-right: .25rem; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-cloud a {
    background: var(--bg-dark);
    padding: .35rem .85rem;
    border-radius: 50px;
    font-size: .85rem;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}
.tag-cloud a:hover { background: var(--accent); color: var(--bg-dark); border-color: var(--accent); }

.cta-widget {
    background: var(--gradient) !important;
    border: none !important;
    color: var(--bg-dark);
    text-align: center;
}
.cta-widget h3 { color: var(--bg-dark); border-bottom-color: rgba(0,0,0,.1); }
.cta-widget h3::after { background: var(--bg-dark); }
.cta-widget p { color: var(--bg-dark); opacity: .8; margin-bottom: 1.5rem; }

/* ============================================
   PAGINATION
   ============================================ */
.pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 3rem; flex-wrap: wrap; }
.pagination a {
    min-width: 42px;
    height: 42px;
    padding: 0 1rem;
    background: var(--bg-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all .2s;
}
.pagination a:hover, .pagination a.active { background: var(--accent); color: var(--bg-dark); border-color: var(--accent); }

.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state i { font-size: 4rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.empty-state h3 { color: #fff; margin-bottom: .5rem; }

/* ============================================
   ABOUT
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-md); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.badge-number { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.badge-text { font-size: .85rem; font-weight: 700; }

.about-content h2 { font-size: 2.5rem; margin: 1rem 0 1.5rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.about-stat {
    background: var(--bg-mid);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
}
.about-stat .stat-number { font-size: 2.5rem; color: var(--accent); font-weight: 900; line-height: 1; }
.about-stat div:last-child { color: var(--text-secondary); margin-top: .5rem; font-weight: 600; }

.values-section { background: var(--bg-mid); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.value-card {
    background: var(--bg-dark);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: all .3s;
}
.value-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.value-card i { font-size: 3rem; color: var(--accent); margin-bottom: 1.5rem; }
.value-card h3 { color: #fff; margin-bottom: .75rem; }

.fleet-section { background: var(--bg-dark); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.fleet-card {
    background: var(--bg-mid);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}
.fleet-card img { width: 100%; height: 220px; object-fit: cover; }
.fleet-card h3 { padding: 1.25rem 1.25rem .25rem; color: #fff; }
.fleet-card p { padding: 0 1.25rem 1.25rem; color: var(--text-secondary); }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-info-cards { display: grid; gap: 1rem; }
.contact-card {
    background: var(--bg-mid);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: all .3s;
}
.contact-card:hover { border-color: rgba(255,208,0,.3); transform: translateY(-3px); }
.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}
.contact-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: .5rem; }
.contact-card a, .contact-card p { color: var(--text-secondary); margin: 0; }
.contact-card a:hover { color: var(--accent); }

.contact-form-wrapper {
    background: var(--bg-mid);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
.contact-form-wrapper h2 { color: #fff; margin-bottom: 1.5rem; }

.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; }
.alert-success { background: rgba(16,185,129,.1); border: 1px solid var(--success); color: var(--success); }
.alert-error { background: rgba(239,68,68,.1); border: 1px solid var(--danger); color: var(--danger); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-weight: 600; color: #fff; font-size: .95rem; }
.form-group input, .form-group textarea, .form-group select {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: #fff;
    padding: .85rem 1rem;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,208,0,.15);
}

/* ============================================
   REGION DETAIL
   ============================================ */
.detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.detail-main { min-width: 0; }
.detail-header { margin-bottom: 2rem; }
.detail-header h2 { font-size: 2.25rem; margin-bottom: 1rem; }
.detail-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.detail-meta i { color: var(--accent); margin-right: .35rem; }

.content-body { color: var(--text-secondary); line-height: 1.8; }
.content-body h3 { color: #fff; font-size: 1.5rem; margin: 2rem 0 1rem; }
.content-body p { margin-bottom: 1.25rem; }
.content-body ul { margin: 1rem 0; list-style: none; }

.feature-list { display: grid; gap: .75rem; }
.feature-list li {
    padding: 1rem 1.25rem;
    background: var(--bg-mid);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
    display: flex;
    align-items: center;
    gap: .75rem;
}
.feature-list li i { color: var(--accent); }

.emergency-box {
    background: var(--gradient);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 2.5rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    color: var(--bg-dark);
}
.emergency-box i { font-size: 3rem; }
.emergency-box h4 { color: var(--bg-dark); font-size: 1.35rem; margin-bottom: .5rem; }
.emergency-box p { color: var(--bg-dark); opacity: .85; margin-bottom: 1rem; }
.emergency-box .btn { background: var(--bg-dark); color: var(--accent); }
.emergency-box .btn:hover { background: #000; }

.faq-section { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.faq-section h3 { font-size: 1.75rem; margin-bottom: 2rem; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
    background: var(--bg-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all .3s;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { padding: 0 1.5rem 1.25rem; color: var(--text-secondary); margin: 0; }

/* ============================================
   SIDEBAR (Detay)
   ============================================ */
.detail-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.region-list-sidebar { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.region-list-sidebar a {
    color: var(--text-secondary);
    padding: .65rem .85rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: all .2s;
    background: var(--bg-dark);
    font-size: .95rem;
}
.region-list-sidebar a:hover { background: rgba(255,208,0,.08); color: var(--accent); transform: translateX(3px); }

/* ============================================
   MAP
   ============================================ */
.map-section { padding: 0; }
.map-wrapper { position: relative; padding-bottom: 40%; height: 0; overflow: hidden; border-top: 3px solid var(--accent); }
.map-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-call, .floating-whatsapp {
    position: fixed;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: all .3s;
}
.floating-call { background: var(--accent); color: var(--bg-dark); bottom: 2rem; }
.floating-call:hover { transform: scale(1.1); color: var(--bg-dark); }
.floating-whatsapp { background: #25d366; color: #fff; bottom: 6.5rem; }
.floating-whatsapp:hover { transform: scale(1.1); color: #fff; }
.floating-call::before, .floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.floating-call::before { border: 3px solid var(--accent); }
.floating-whatsapp::before { border: 3px solid #25d366; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   EMERGENCY BAR
   ============================================ */
.emergency-bar {
    background: linear-gradient(135deg, #0a1015 0%, #1a2832 100%);
    padding: 2.5rem 0;
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
}
.emergency-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.emergency-text h4 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: .25rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}
.emergency-text p { color: #fff; margin: 0; }
.emergency-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: #050810;
    color: var(--text-secondary);
    padding: 4rem 0 0;
    border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { color: var(--accent); font-size: 1.1rem; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 2px solid var(--border); }
.footer-logo img { max-height: 60px; margin-bottom: 1.25rem; }
.footer-col p { margin-bottom: 1.25rem; font-size: .95rem; }
.social-links { display: flex; gap: .75rem; }
.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-mid);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all .3s;
}
.social-links a:hover { background: var(--accent); color: var(--bg-dark); border-color: var(--accent); transform: translateY(-3px); }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: var(--text-secondary); display: flex; align-items: center; gap: .5rem; transition: all .2s; font-size: .95rem; }
.footer-links a:hover { color: var(--accent); transform: translateX(3px); }
.footer-links i { font-size: .7rem; color: var(--accent); }

.contact-info { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.contact-info li { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; }
.contact-info i { color: var(--accent); margin-top: .3rem; width: 16px; }
.contact-info a { color: var(--text-secondary); }
.contact-info a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .9rem;
    color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================
   ERROR PAGE
   ============================================ */
.error-page { padding: 6rem 0; }
.error-code {
    font-size: 10rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255,208,0,.3);
}
.error-page h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.error-page p { font-size: 1.15rem; margin-bottom: 2rem; }

/* ============================================
   RESPONSIVE - HAMBURGER MENÜ
   ============================================ */
@media (max-width: 768px) {
    body { font-size: 15px; }
    .section { padding: 3.5rem 0; }
    
    /* Hamburger Menü Aktif */
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-mid);
        padding: 5rem 1.5rem 2rem;
        overflow-y: auto;
        transition: right .4s cubic-bezier(.77,0,.175,1);
        z-index: 1000;
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 40px rgba(0,0,0,.5);
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-close {
        display: flex;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        background: rgba(255,208,0,.1);
        border: 1px solid rgba(255,208,0,.3);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 1.25rem;
        cursor: pointer;
        transition: all .3s;
    }
    
    .nav-close:hover {
        background: var(--accent);
        color: var(--bg-dark);
    }
    
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.6);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all .3s;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: .25rem;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        padding: 1rem 1.25rem;
        border-radius: var(--radius-sm);
        border-bottom: 1px solid var(--border);
    }
    
    .main-nav .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        background: rgba(0,0,0,.2);
        margin-top: .5rem;
        border-radius: var(--radius-sm);
    }
    
    .main-nav .dropdown.open .dropdown-menu {
        display: flex;
    }
    
    .main-nav .sub-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 1rem;
        background: rgba(0,0,0,.1);
        margin-top: .5rem;
    }
    
    .nav-mobile-actions {
        display: block;
        margin-top: 2rem;
        width: 100%;
        padding-top: 2rem;
        border-top: 1px solid var(--border);
    }
    
    .nav-mobile-actions .btn {
        width: 100%;
    }
    
    .top-bar {
        display: none;
    }
    
    .btn-call span {
        display: none;
    }
    
    .btn-call {
        padding: .65rem .85rem;
    }
    
    /* Hero Mobile */
    .hero-content h1 { font-size: 2.25rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-controls { padding: 0 1rem; }
    .hero-prev, .hero-next { width: 42px; height: 42px; font-size: 1rem; }
    
    .section-title { font-size: 1.75rem; }
    .page-hero h1 { font-size: 2rem; }
    
    .why-grid, .about-grid, .contact-grid, .blog-layout, .detail-grid { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .detail-header h2 { font-size: 1.75rem; }
    .article-header h1 { font-size: 1.75rem; }
    .emergency-inner { flex-direction: column; text-align: center; }
    .emergency-actions { justify-content: center; }
    
    .floating-call, .floating-whatsapp { width: 52px; height: 52px; font-size: 1.25rem; right: 1rem; }
    .floating-call { bottom: 1rem; }
    .floating-whatsapp { bottom: 5rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.85rem; }
    .services-grid, .regions-matrix, .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}