/* ==========================================
   DERIN KUYU POMPASI - Main Stylesheet
   Design inspired by olerni.com
   ========================================== */

:root {
    --primary: #2b2b5e;
    --primary-dark: #1a1a4e;
    --accent: #00cde5;
    --accent-dark: #00b8d0;
    --text: #333;
    --text-light: #82828a;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }

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

.container { max-width: 1170px; margin: 0 auto; padding: 0 15px; }

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}
.top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: var(--accent); }
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: var(--accent); }
.top-bar-right { display: flex; gap: 15px; align-items: center; }
.top-bar-right a { font-size: 16px; }

/* ---- HEADER / NAVBAR ---- */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 70px; width: auto; max-width: 280px; object-fit: contain; }
.logo-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 24px;
}
.logo-text h1 { font-size: 20px; font-weight: 800; color: var(--primary); margin: 0; line-height: 1.2; }
.logo-text span { font-size: 12px; color: var(--text-light); }

.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav a {
    color: var(--text);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--accent);
    background: rgba(0,205,229,0.08);
}
.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(0,205,229,0.3); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 28px; height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ---- HERO SECTION ---- */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a3a5e 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,205,229,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,205,229,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}
.hero-content { flex: 1; }
.hero-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content h2 span { color: var(--accent); }
.hero-content p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 30px;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-hero {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-hero-primary { background: var(--accent); color: var(--white); }
.btn-hero-primary:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,205,229,0.3); }
.btn-hero-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-hero-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

.hero-visual {
    flex: 0 0 450px;
    text-align: center;
    position: relative;
}
.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0,205,229,0.25) 0%, rgba(0,205,229,0.1) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse-glow 3s ease-in-out infinite;
}
.hero-image {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)) drop-shadow(0 0 60px rgba(0,205,229,0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}
.hero-image:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.5)) drop-shadow(0 0 80px rgba(0,205,229,0.5));
}
.hero-icon-large {
    width: 300px; height: 300px;
    background: rgba(0,205,229,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}
.hero-icon-large i { font-size: 120px; color: var(--accent); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* ---- SECTION STYLING ---- */
.section { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}
.section-title p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}
.section-title .accent-line {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 15px auto;
    border-radius: 2px;
}

/* ---- SERVICE CARDS ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.service-card .icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(43,43,94,0.08), rgba(0,205,229,0.08));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--accent);
    transition: var(--transition);
}
.service-card:hover .icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: scale(1.1);
}
.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ---- ABOUT / INFO SECTION ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    overflow: visible;
    position: relative;
    min-height: 400px;
}
/* Dekoratif arka plan elementleri */
.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--accent);
    border-radius: 24px;
    z-index: 0;
    opacity: 0.3;
    transition: all 0.4s ease;
}
.about-image:hover::before {
    top: -10px;
    left: -10px;
    opacity: 0.5;
}
.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent), rgba(0,205,229,0.3));
    border-radius: 20px;
    z-index: 0;
    opacity: 0.2;
}
/* Resim yoksa ikon için arka plan */
.about-image i {
    font-size: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: rgba(255,255,255,0.3);
    border-radius: 20px;
}
/* Resim varsa güzel görünsün */
.about-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 10px 20px rgba(0,205,229,0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    z-index: 1;
}
.about-image img:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 35px 70px rgba(0,0,0,0.2), 0 15px 30px rgba(0,205,229,0.25);
}
.about-image h3 { font-size: 24px; font-weight: 700; }
.about-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 18px;
}
.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
}
.about-content p { color: var(--text-light); margin-bottom: 15px; line-height: 1.8; font-size: 15px; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.stat-box {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.stat-box:hover::before {
    transform: scaleX(1);
}
.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.stat-box h3 { font-size: 36px; font-weight: 800; color: var(--accent); margin-bottom: 5px; }
.stat-box p { font-size: 13px; color: var(--text-light); margin: 0; font-weight: 500; }

/* About Badge - resim üzerindeki deneyim badge'i */
.about-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 18px 22px;
    border-radius: 16px;
    text-align: center;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,205,229,0.3);
    animation: badge-float 3s ease-in-out infinite;
}
@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.about-badge-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}
.about-badge-text {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-top: 4px;
    line-height: 1.3;
}

/* About Feature Items */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0 10px;
}
.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
}
.about-feature-item i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

/* ---- SERVICE DETAIL SECTIONS (hizmetler.php) ---- */
.svc-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}
.svc-detail-grid.svc-detail-reverse {
    grid-template-columns: 0.8fr 1.2fr;
}
.svc-detail-grid.svc-detail-reverse .svc-detail-visual {
    order: -1;
}

/* Badge label */
.svc-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(43,43,94,0.08), rgba(0,205,229,0.08));
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}
.svc-detail-badge i {
    color: var(--accent);
    font-size: 16px;
}
.svc-detail-badge.svc-badge-accent {
    background: linear-gradient(135deg, rgba(0,205,229,0.1), rgba(43,43,94,0.06));
}

.svc-detail-content h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.3;
}
.svc-detail-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}
.svc-scope-title {
    margin-top: 8px;
    margin-bottom: 10px !important;
    color: var(--primary) !important;
}

/* Checklist */
.svc-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}
.svc-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}
.svc-check-item:hover {
    background: rgba(0,205,229,0.04);
    border-color: rgba(0,205,229,0.15);
    transform: translateX(5px);
}
.svc-check-item i {
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
}
.svc-check-item span {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

/* Visual Card (ikon tarafı) */
.svc-detail-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.svc-visual-card {
    background: linear-gradient(135deg, var(--primary), #3a3a7e);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(43,43,94,0.25);
}
.svc-visual-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: rgba(0,205,229,0.15);
    border-radius: 50%;
}
.svc-visual-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.svc-visual-card.svc-visual-accent {
    background: linear-gradient(135deg, var(--accent), #0097a7);
    box-shadow: 0 20px 50px rgba(0,205,229,0.25);
}
.svc-visual-icon {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}
.svc-visual-icon i {
    font-size: 40px;
    color: var(--white);
}
.svc-visual-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}
.svc-visual-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.svc-visual-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.svc-visual-features span:hover {
    background: rgba(255,255,255,0.22);
}
.svc-visual-features span i {
    font-size: 15px;
    opacity: 0.85;
}

/* ---- ARTICLES GRID ---- */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.article-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.article-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 48px;
    position: relative;
    overflow: hidden;
}
.article-card-image.has-image {
    background: #f5f5f5;
}
.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.article-card:hover .article-card-image img {
    transform: scale(1.05);
}
.article-card-image .category-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
.article-card-body {
    padding: 25px;
}
.article-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.4;
}
.article-card-body h3 a { color: inherit; }
.article-card-body h3 a:hover { color: var(--accent); }
.article-card-body p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}
.article-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-light);
}
.read-more {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.read-more:hover { gap: 10px; }

/* ---- DISTRICT / CTA SECTION ---- */
.districts-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 80px 0;
}
.districts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}
.district-item {
    background: rgba(255,255,255,0.08);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}
.district-item:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}
.district-item i { display: block; margin-bottom: 5px; }

.cta-section {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.cta-section h2 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
.cta-section p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; }
.btn-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white);
    color: var(--primary);
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); color: var(--primary); }

/* ---- FOOTER ---- */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.footer-about p { line-height: 1.8; margin-bottom: 15px; }
.footer-contact li {
    list-style: none;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact li i { color: var(--accent); margin-top: 4px; }
.footer-links li { list-style: none; padding: 6px 0; }
.footer-links li a { color: rgba(255,255,255,0.7); }
.footer-links li a:hover { color: var(--accent); padding-left: 5px; }
.footer-social { display: flex; gap: 10px; margin-top: 15px; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}

/* ---- PAGE HEADER ---- */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}
.page-header h1 { font-size: 36px; font-weight: 800; margin-bottom: 10px; }
.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}
.page-header .breadcrumb a { color: var(--accent); }
.page-header .breadcrumb span { opacity: 0.6; }

/* ---- ARTICLE DETAIL ---- */
.article-detail { padding: 60px 0; }
.article-detail-inner {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}
.article-main h1 { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 15px; line-height: 1.3; }
.article-meta {
    display: flex; gap: 20px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.article-meta span { display: flex; align-items: center; gap: 5px; }

/* Article Featured Image */
.article-featured-image {
    margin-bottom: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content { font-size: 16px; line-height: 1.9; }
.article-content h2 { font-size: 24px; font-weight: 700; color: var(--primary); margin: 30px 0 15px; }
.article-content h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin: 25px 0 10px; }
.article-content p { margin-bottom: 15px; }
.article-content ul, .article-content ol { margin: 15px 0; padding-left: 25px; }
.article-content li { margin-bottom: 8px; }
.article-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.article-content th, .article-content td { padding: 12px 15px; border: 1px solid #ddd; text-align: left; }
.article-content th { background: var(--bg-light); font-weight: 700; color: var(--primary); }

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}
.sidebar-widget h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}
.sidebar-widget ul { list-style: none; padding: 0; margin: 0; }
.sidebar-widget ul li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: var(--text); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.sidebar-widget ul li a:hover { color: var(--accent); }
.sidebar-widget ul li a i { color: var(--accent); font-size: 12px; }

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    color: var(--white);
}
.sidebar-cta h4 { color: var(--white); border: none; text-align: center; }
.sidebar-cta p { font-size: 14px; opacity: 0.9; margin-bottom: 15px; }
.sidebar-cta a {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 700;
}

/* ---- CONTACT PAGE (base) ---- */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.contact-info-card .icon {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, rgba(43,43,94,0.08), rgba(0,205,229,0.08));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}
.contact-info-card h4 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.contact-info-card p { color: var(--text-light); font-size: 14px; margin: 0; }
.contact-info-card a { color: var(--text-light); }
.contact-info-card a:hover { color: var(--accent); }

/* ---- CONTACT PAGE - REDESIGNED (olerni style) ---- */

/* Contact Intro Section */
.contact-intro {
    background: var(--bg-light);
    padding: 50px 0;
}
.contact-intro-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.contact-intro-text {
    flex: 1;
    min-width: 300px;
}
.contact-intro-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}
.contact-intro-text p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    max-width: 650px;
}
.contact-intro-cta {
    flex-shrink: 0;
}

/* Contact Cards - Horizontal Row */
.contact-cards-section {
    padding: 50px 0;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.contact-card-h {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.contact-card-h:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.contact-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(43,43,94,0.08), rgba(0,205,229,0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition);
}
.contact-card-h:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}
.contact-card-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-card-info p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}
.contact-card-info a {
    color: var(--text-light);
}
.contact-card-info a:hover {
    color: var(--accent);
}

/* Contact Form + Right Info Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

/* Contact Form Wrapper */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form-header {
    margin-bottom: 30px;
}
.contact-form-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}
.contact-form-header p {
    color: var(--text-light);
    font-size: 15px;
}

/* Alert Messages */
.alert-success-custom {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #b1dfbb;
}
.alert-success-custom i {
    font-size: 20px;
}
.alert-error-custom {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #f1b0b7;
}
.alert-error-custom i {
    font-size: 20px;
}

/* Form Row - 2 columns */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
    background: #fafafa;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0,205,229,0.1);
    background: var(--white);
}
.contact-form button {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,205,229,0.3);
}

/* Contact Right Info Panel */
.contact-right-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-right-info .contact-info-card {
    margin-bottom: 0;
}

/* WhatsApp CTA Card */
.contact-whatsapp-cta {
    background: linear-gradient(135deg, #128C7E, #25D366);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    color: var(--white);
}
.whatsapp-cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
}
.contact-whatsapp-cta h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.contact-whatsapp-cta p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 18px;
}
.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: #128C7E;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}
.whatsapp-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    color: #128C7E;
}

/* Quick Call Card */
.contact-quick-call {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--white);
}
.contact-quick-call i {
    font-size: 36px;
    color: var(--accent);
    flex-shrink: 0;
}
.contact-quick-call span {
    display: block;
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 4px;
}
.contact-quick-call a {
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
}
.contact-quick-call a:hover {
    color: var(--white);
}

/* Social Media Card */
.contact-social {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px 30px;
    box-shadow: var(--shadow);
}
.contact-social h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}
.contact-social-links {
    display: flex;
    gap: 12px;
}
.contact-social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(43,43,94,0.06), rgba(0,205,229,0.06));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    transition: var(--transition);
}
.contact-social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,205,229,0.3);
}

/* Captcha - Modern Math */
.captcha-group { margin-top: 15px; }
.captcha-math {
    position: relative;
    background: linear-gradient(135deg, #f0f9ff, #e8f4fd);
    border: 2px solid rgba(0, 205, 229, 0.25);
    border-radius: 16px;
    padding: 20px 24px;
    transition: all 0.3s ease;
}
.captcha-math:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 205, 229, 0.1);
    background: #fff;
}
.captcha-math-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.captcha-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    background: var(--white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    user-select: none;
}
.captcha-op {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    user-select: none;
}
.captcha-eq {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    user-select: none;
}
.captcha-math-input {
    width: 80px !important;
    height: 60px;
    text-align: center;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    border: 2px dashed rgba(0, 205, 229, 0.4) !important;
    border-radius: 14px !important;
    background: var(--white) !important;
    transition: all 0.3s ease;
    -moz-appearance: textfield;
}
.captcha-math-input::-webkit-outer-spin-button,
.captcha-math-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.captcha-math-input:focus {
    border-color: var(--accent) !important;
    border-style: solid !important;
    box-shadow: 0 0 0 3px rgba(0, 205, 229, 0.15) !important;
    background: #fff !important;
}
.captcha-math-input::placeholder {
    color: #ccc;
    font-weight: 400;
    font-size: 24px;
}
.captcha-math-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 3px 10px rgba(0, 205, 229, 0.3);
}

/* Full Width Map Section */
.contact-map-section {
    margin-top: 0;
}
.contact-map-header {
    background: var(--primary-dark);
    color: var(--white);
    padding: 35px 0;
    text-align: center;
}
.contact-map-header h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}
.contact-map-header h2 i {
    color: var(--accent);
    margin-right: 10px;
}
.contact-map-header p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}
.contact-map-wrap {
    width: 100%;
    line-height: 0;
}
.contact-map-wrap iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* ---- DISTRICT PAGE ---- */
.district-page-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}
.district-content h2 { color: var(--primary); margin-bottom: 20px; font-size: 28px; }
.district-content h3 { color: var(--primary); margin: 30px 0 20px; font-size: 22px; }
.district-content p { color: var(--text); line-height: 1.8; margin-bottom: 15px; }

.district-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}
.district-service-item {
    background: linear-gradient(135deg, var(--primary), #3a3a7e);
    color: #fff;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}
.district-service-item:hover { transform: translateY(-3px); }
.district-service-item i { font-size: 28px; display: block; margin-bottom: 10px; color: var(--accent); }
.district-service-item span { font-size: 14px; font-weight: 500; }

.district-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}
.district-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: 0.3s;
}
.district-feature:hover { background: #e8f4f8; }
.district-feature i { color: var(--accent); font-size: 18px; }
.district-feature span { color: var(--text); font-size: 14px; }

.district-cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}
.district-cta-icon { font-size: 50px; color: var(--accent); }
.district-cta-content { flex: 1; min-width: 200px; }
.district-cta-content h3 { font-size: 20px; margin-bottom: 5px; color: #fff; }
.district-cta-content p { opacity: 0.9; margin: 0; font-size: 14px; }
.district-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cta-phone, .btn-cta-whatsapp {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.btn-cta-phone { background: #fff; color: var(--primary); }
.btn-cta-phone:hover { background: var(--accent); color: #fff; }
.btn-cta-whatsapp { background: #25D366; color: #fff; }
.btn-cta-whatsapp:hover { background: #1fb855; }

/* District Sidebar */
.sidebar-box {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}
.sidebar-box h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}
.sidebar-box h4 i { color: var(--accent); }

.sidebar-contact-box { background: linear-gradient(135deg, var(--primary), #3a3a7e); }
.sidebar-contact-box h4 { color: #fff; border-bottom-color: rgba(255,255,255,0.3); }
.sidebar-contact-box h4 i { color: var(--accent); }

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sidebar-contact-item:last-child { border-bottom: none; }
.sidebar-contact-item > i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 16px;
}
.sidebar-contact-item div span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2px;
}
.sidebar-contact-item div a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}
.sidebar-contact-item div a:hover { color: var(--accent); }

.sidebar-districts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sidebar-district-link {
    display: inline-block;
    padding: 8px 14px;
    background: #f0f4f8;
    color: var(--text);
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    transition: 0.3s;
}
.sidebar-district-link:hover {
    background: var(--accent);
    color: #fff;
}

a.district-item { text-decoration: none; }
a.district-item:hover { transform: translateY(-3px); background: rgba(255,255,255,0.15); }

@media (max-width: 992px) {
    .district-page-grid { grid-template-columns: 1fr; }
    .district-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .district-services-grid { grid-template-columns: 1fr; }
    .district-features { grid-template-columns: 1fr; }
    .district-cta-box { flex-direction: column; text-align: center; }
}

/* ---- WHATSAPP BUTTON ---- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}
.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    color: white;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}


/* ---- DEVELOPER MINI ---- */
.developer-mini {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.developer-mini a {
    font-family: 'Dancing Script', cursive;
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: var(--transition);
}
.developer-mini a:hover {
    color: var(--accent);
}

/* ---- PAGINATION ---- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}
.pagination a { background: var(--white); color: var(--primary); box-shadow: var(--shadow); }
.pagination a:hover { background: var(--accent); color: var(--white); }
.pagination .active { background: var(--accent); color: var(--white); }

/* ---- RESPONSIVE ---- */

/* Tablet landscape */
@media (max-width: 992px) {
    .container { padding: 0 20px; }
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-visual { flex: none; }
    .hero-buttons { justify-content: center; }
    .hero-content h2 { font-size: 36px; }
    .hero-content p { font-size: 16px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { padding: 0; max-width: 500px; margin: 0 auto; }
    .about-image i { font-size: 80px; }
    .about-image::before { top: -10px; left: -10px; right: 10px; bottom: 10px; }
    .about-image::after { width: 80px; height: 80px; bottom: -12px; right: -12px; }
    .about-badge { bottom: -5px; right: -5px; padding: 14px 18px; }
    .about-badge-number { font-size: 26px; }
    .about-features { grid-template-columns: 1fr 1fr; }
    /* Service detail - tablet */
    .svc-detail-grid,
    .svc-detail-grid.svc-detail-reverse { grid-template-columns: 1fr; gap: 30px; }
    .svc-detail-grid .svc-detail-content { order: 1 !important; }
    .svc-detail-grid .svc-detail-visual { order: 2 !important; }
    .svc-detail-grid.svc-detail-reverse .svc-detail-visual { order: 2 !important; }
    .svc-visual-card { padding: 40px 30px; max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .districts-grid { grid-template-columns: repeat(3, 1fr); }
    .article-detail-inner { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-intro-inner { text-align: center; justify-content: center; flex-direction: column; }
    .contact-intro-text { min-width: auto; }
    .page-header h1 { font-size: 30px; }
    .cta-section h2 { font-size: 28px; }
    .cta-section p { font-size: 16px; }
}

/* Tablet portrait / large phones */
@media (max-width: 768px) {
    .container { padding: 0 15px; }

    /* Top bar - İki numara yan yana güzel görünüm */
    .top-bar { padding: 12px 0; font-size: 14px; }
    .top-bar-inner { justify-content: center; }
    .top-bar-left { gap: 25px; flex-wrap: nowrap; justify-content: center; }
    .top-bar-left span { font-size: 14px; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
    .top-bar-left span i { font-size: 16px; color: var(--accent); }
    .top-bar-left span a { color: #fff; font-weight: 500; }
    .top-bar-left span:nth-child(3) { display: none; } /* Hide email on mobile */
    .top-bar-right { display: none; } /* Hide social icons on mobile */

    /* Header & Nav */
    .hamburger { display: flex; }
    .header-inner { padding: 12px 0; }
    .logo-img { height: var(--mobile-height, 60px); max-width: 250px; }
    .logo-icon { width: 50px; height: 50px; font-size: 22px; }
    .logo-text h1 { font-size: 18px; }
    .logo-text span { font-size: 12px; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 0;
        z-index: 999;
    }
    .main-nav.show { display: flex; }
    .main-nav a { width: 100%; text-align: center; padding: 14px; font-size: 15px; border-bottom: 1px solid #f0f0f0; }
    .main-nav a:last-child { border-bottom: none; }
    .nav-cta { margin-top: 10px; border-radius: 8px; }

    /* Hero */
    .hero { padding: 50px 0 40px; }
    .hero-content h2 { font-size: 24px; }
    .hero-content p { font-size: 15px; margin-bottom: 20px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-hero { padding: 12px 28px; font-size: 15px; width: 100%; justify-content: center; }
    .hero-image { max-height: 280px; }
    .hero-visual::before { width: 250px; height: 250px; }
    .hero-icon-large { width: 180px; height: 180px; }
    .hero-icon-large i { font-size: 70px; }

    /* Sections */
    .section { padding: 40px 0; }
    .section-title { margin-bottom: 30px; }
    .section-title h2 { font-size: 24px; }
    .section-title p { font-size: 15px; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 15px; }
    .service-card { padding: 25px 20px; }

    /* About */
    .about-content h2 { font-size: 24px; }
    .about-image::before { display: none; }
    .about-image::after { display: none; }
    .about-badge { bottom: 10px; right: 10px; padding: 12px 16px; }
    .about-badge-number { font-size: 22px; }
    .about-badge-text { font-size: 10px; }
    .about-features { grid-template-columns: 1fr; gap: 8px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .stat-box { padding: 15px 10px; }
    .stat-box h3 { font-size: 24px; }
    .stat-box p { font-size: 11px; }

    /* Service detail - mobile */
    .svc-detail-grid,
    .svc-detail-grid.svc-detail-reverse { gap: 20px; grid-template-columns: 1fr; }
    .svc-detail-grid .svc-detail-content { order: 1 !important; }
    .svc-detail-grid .svc-detail-visual { order: 2 !important; }
    .svc-detail-content h2 { font-size: 22px; }
    .svc-detail-content p { font-size: 14px; }
    .svc-detail-badge { font-size: 13px; padding: 7px 14px; margin-bottom: 14px; }
    .svc-check-item { padding: 8px 12px; }
    .svc-check-item span { font-size: 13px; }
    .svc-visual-card { padding: 30px 24px; max-width: 100%; border-radius: 18px; }
    .svc-visual-icon { width: 70px; height: 70px; margin-bottom: 15px; }
    .svc-visual-icon i { font-size: 32px; }
    .svc-visual-card h3 { font-size: 18px; margin-bottom: 18px; }
    .svc-visual-features { gap: 8px; }
    .svc-visual-features span { padding: 8px 12px; font-size: 13px; border-radius: 8px; }
    .svc-visual-card::before { width: 100px; height: 100px; top: -25px; right: -25px; }
    .svc-visual-card::after { width: 70px; height: 70px; bottom: -20px; left: -20px; }

    /* Articles */
    .articles-grid { grid-template-columns: 1fr; }

    /* Districts */
    .districts-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .district-item { padding: 12px 15px; font-size: 13px; }

    /* Footer */
    .footer { padding: 40px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .footer-col h4 { font-size: 16px; margin-bottom: 12px; }
    .footer-bottom { padding: 15px 0; margin-top: 25px; font-size: 12px; }
    .developer-mini { margin-top: 15px; padding-top: 12px; }
    .developer-mini a { font-size: 11px; }

    /* CTA */
    .cta-section { padding: 40px 0; }
    .cta-section h2 { font-size: 24px; }
    .cta-section p { font-size: 15px; }
    .btn-cta { padding: 12px 28px; font-size: 15px; }

    /* Page Header */
    .page-header { padding: 30px 0; }
    .page-header h1 { font-size: 24px; }
    .page-header .breadcrumb { font-size: 12px; }

    /* Captcha */
    .captcha-math { padding: 16px; }
    .captcha-math-inner { gap: 8px; }
    .captcha-num { width: 50px; height: 50px; font-size: 24px; border-radius: 12px; }
    .captcha-op { font-size: 22px; }
    .captcha-eq { font-size: 22px; }
    .captcha-math-input { width: 65px !important; height: 50px; font-size: 20px !important; border-radius: 12px !important; }

    /* Contact Page */
    .contact-cards-grid { grid-template-columns: 1fr; gap: 12px; }
    .contact-card-h { padding: 20px 18px; gap: 14px; }
    .contact-card-icon { width: 45px; height: 45px; font-size: 18px; border-radius: 10px; }
    .contact-card-info h4 { font-size: 12px; }
    .contact-card-info p { font-size: 13px; }
    .contact-grid { grid-template-columns: 1fr; gap: 25px; }
    .contact-form-wrap { padding: 20px; }
    .contact-form-header h2 { font-size: 22px; }
    .form-row-2 { grid-template-columns: 1fr; gap: 0; }
    .contact-form input,
    .contact-form textarea,
    .contact-form select { padding: 10px 14px; font-size: 14px; }
    .contact-form button { width: 100%; justify-content: center; padding: 13px 30px; }
    .contact-intro { padding: 30px 0; }
    .contact-intro-text h2 { font-size: 22px; }
    .contact-intro-text p { font-size: 14px; }
    .contact-intro-cta .btn-hero { width: 100%; justify-content: center; }
    .contact-cards-section { padding: 30px 0; }
    .contact-whatsapp-cta { padding: 25px 20px; }
    .contact-whatsapp-cta h3 { font-size: 18px; }
    .contact-quick-call { padding: 20px; }
    .contact-quick-call i { font-size: 28px; }
    .contact-quick-call a { font-size: 18px; }
    .contact-social { padding: 20px; }
    .contact-social-links { justify-content: center; }
    .contact-map-wrap iframe { height: 300px; }
    .contact-map-header { padding: 25px 0; }
    .contact-map-header h2 { font-size: 20px; }
    .contact-map-header p { font-size: 13px; }

    /* Article Detail */
    .article-main h1 { font-size: 24px; }
    .article-meta { flex-wrap: wrap; gap: 10px; }
    .article-content { font-size: 15px; }

    /* WhatsApp float */
    .whatsapp-float { bottom: 20px; right: 15px; }
    .whatsapp-float a { width: 50px; height: 50px; font-size: 24px; }

    /* Pagination */
    .pagination { flex-wrap: wrap; }
    .pagination a, .pagination span { padding: 8px 12px; font-size: 13px; }
}

/* Small phones */
@media (max-width: 480px) {
    .container { padding: 0 12px; }

    /* Top bar - iki numara yan yana */
    .top-bar { padding: 10px 0; }
    .top-bar-inner { gap: 8px; justify-content: center; }
    .top-bar-left { gap: 20px; justify-content: center; flex-wrap: nowrap; }
    .top-bar-left span { font-size: 13px; display: flex !important; }
    .top-bar-left span:nth-child(3) { display: none !important; } /* Email gizle */
    .top-bar-right { display: none; } /* Sosyal medya gizle */

    /* Logo - admin panelindeki ayarı kullan */
    .logo-img { height: var(--mobile-height, 55px); max-width: 220px; }

    .hero { padding: 35px 0 30px; }
    .hero-content h2 { font-size: 22px; line-height: 1.3; }
    .hero-content p { font-size: 14px; }
    .hero-icon-large { width: 140px; height: 140px; }
    .hero-icon-large i { font-size: 55px; }
    .btn-hero { padding: 14px 24px; font-size: 14px; }

    .section-title h2 { font-size: 22px; }
    .section-title p { font-size: 14px; }
    .about-stats { grid-template-columns: 1fr 1fr 1fr; }
    .stat-box h3 { font-size: 22px; }
    .stat-box p { font-size: 11px; }

    .districts-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .district-item { padding: 12px 10px; font-size: 13px; }
    .district-item i { font-size: 14px; }

    .cta-section h2 { font-size: 20px; }
    .page-header h1 { font-size: 22px; }
    .page-header { padding: 25px 0; }

    /* Service detail - small phones */
    .svc-detail-content h2 { font-size: 20px; }
    .svc-detail-badge { font-size: 12px; padding: 6px 12px; }
    .svc-visual-card { padding: 25px 20px; }
    .svc-visual-icon { width: 60px; height: 60px; }
    .svc-visual-icon i { font-size: 26px; }
    .svc-visual-card h3 { font-size: 16px; margin-bottom: 14px; }
    .svc-visual-features span { font-size: 12px; padding: 7px 10px; }
    .svc-check-item { padding: 7px 10px; }
    .svc-check-item i { font-size: 16px; }
    .svc-check-item span { font-size: 12px; }

    .contact-intro-text h2 { font-size: 19px; }
    .contact-form-wrap { padding: 15px; }
    .contact-form-header h2 { font-size: 20px; }

    .contact-map-wrap iframe { height: 250px; }
    .contact-map-header h2 { font-size: 18px; }

    .footer-grid { gap: 20px; }
    .footer-col h4 { font-size: 15px; }
    .footer-col li, .footer-col p { font-size: 13px; }
}
