* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== NAVBAR ========== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1001;
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-badge {
    display: block;
    font-size: 0.7rem;
    font-weight: normal;
    color: #666;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: #2a5298;
}

.nav-link.active {
    color: #2a5298;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 3px;
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: #2a5298;
    cursor: pointer;
}

/* ========== SABİT ALT BUTONLAR ========== */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
    padding: 0 20px;
}

.fixed-btn {
    flex: 1;
    max-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.call-btn {
    background: #2c3e50;
    color: white;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.fixed-btn:hover {
    transform: scale(1.05);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="white" d="M20,20 L30,20 L25,28 Z M50,50 L60,50 L55,58 Z M80,30 L90,30 L85,38 Z"/><circle cx="70" cy="70" r="3"/><circle cx="15" cy="80" r="2"/></svg>');
    background-repeat: repeat;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-badge i {
    color: #25D366;
}

.hero-name {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-title {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #ffd700;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.hero-description strong {
    color: #ffd700;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn-primary, .btn-secondary {
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #25D366;
    color: white;
}

.btn-secondary {
    background: white;
    color: #2c3e50;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
}

.btn-small {
    font-size: 0.7rem;
    background: rgba(0,0,0,0.2);
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
}

.hero-extra {
    margin-top: 40px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin: -5px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* ========== HİZMETLER ========== */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 25px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: #2a5298;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #ffd700;
    transform: translateX(5px);
}

/* ========== REFERANSLAR ========== */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: #2a5298;
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 0.8rem;
    color: #666;
}

/* ========== NEDEN BİZ ========== */
.why-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
}

.why-us .section-title {
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature i {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* ========== SSS ========== */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #2a5298;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    margin: 0;
    color: #666;
}

/* ========== İLETİŞİM ========== */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2a5298;
}

.contact-info {
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
}

.contact-info i {
    width: 30px;
    color: #2a5298;
}

.contact-info a {
    color: #333;
    text-decoration: none;
}

/* ========== HİZMET DETAY SAYFALARI ========== */
.service-detail {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.service-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-header i {
    font-size: 4rem;
    color: #2a5298;
    margin-bottom: 20px;
}

.service-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.service-description h2 {
    color: #2a5298;
    font-size: 1.8rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.service-description h2:first-of-type {
    margin-top: 0;
}

.service-description h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.service-description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-description ul {
    margin: 15px 0 15px 25px;
}

.service-description li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-description li strong {
    color: #2a5298;
}

/* FAQ Mini */
.faq-mini {
    margin: 20px 0;
}

.faq-mini-item {
    background: #f0f4f8;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
}

/* Paketler */
.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.package {
    background: #f0f4f8;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.package h4 {
    color: #2a5298;
    margin-bottom: 10px;
}

/* Emergency Badge */
.emergency-badge {
    background: #ff4444;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-align: center;
    margin: 20px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.emergency-badge i {
    margin-right: 10px;
}

/* Emergency Steps */
.emergency-steps {
    margin: 20px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f0f4f8;
    border-radius: 10px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: #2a5298;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-contact-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.service-contact-card h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-contact-card .btn-primary,
.service-contact-card .btn-secondary {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    width: 100%;
}

.service-contact-card .small {
    font-size: 0.8rem;
    color: #666;
    margin-top: 15px;
}

.emergency-phone {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff4444;
    margin: 15px 0;
}

.emergency-card {
    border: 2px solid #ff4444;
    background: #fff5f5;
}

.service-areas {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-areas h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    border-bottom: 2px solid #2a5298;
    padding-bottom: 10px;
}

.service-areas ul {
    list-style: none;
    padding: 0;
}

.service-areas li {
    margin-bottom: 10px;
}

.service-areas a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.service-areas a:hover {
    color: #2a5298;
    transform: translateX(5px);
}

/* ========== MAHALLE BAZLI SAYFALAR ========== */
.district-page {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.district-header {
    text-align: center;
    margin-bottom: 50px;
}

.district-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.district-header p {
    font-size: 1.2rem;
    color: #666;
}

.district-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.district-info h2 {
    color: #2a5298;
    font-size: 1.8rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.district-info h2:first-of-type {
    margin-top: 0;
}

.district-info h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.district-info p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.district-services {
    margin: 20px 0;
}

.district-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f0f4f8;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.district-service-item:hover {
    transform: translateX(5px);
    background: #e8ecf0;
}

.district-service-item i {
    font-size: 1.5rem;
    color: #2a5298;
    width: 35px;
    text-align: center;
}

.district-service-item strong {
    display: block;
    color: #2c3e50;
}

.district-service-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

.district-cta {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
}

.district-cta h3 {
    color: white;
    margin-bottom: 15px;
}

.district-cta .btn-primary {
    background: #ffd700;
    color: #2c3e50;
    margin-top: 10px;
}

/* ========== FOOTER ========== */
footer {
    background: #1e2a3a;
    color: #ccc;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3,
.footer-districts h3,
.footer-contact h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-about h3::after,
.footer-districts h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffd700;
}

.footer-about p {
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-social {
    margin-top: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #ffd700;
    transform: translateY(-3px);
}

.social-icons a:hover i {
    color: #1e2a3a;
}

.social-icons i {
    font-size: 1.2rem;
    color: white;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
}

.district-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.district-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.district-col a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact i {
    width: 25px;
    color: #ffd700;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    margin: 5px 0;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.8rem;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #ffd700;
}

.seo-keywords {
    color: #ffd700;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* ========== HUKUKİ SAYFALAR ========== */
.legal-page {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.legal-page h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.last-update {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.legal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.legal-content h2 {
    color: #2a5298;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ========== ERROR PAGE ========== */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.error-content {
    padding: 60px 20px;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: #2a5298;
    line-height: 1;
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.error-content p {
    color: #666;
    margin-bottom: 30px;
}

.error-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== ÇEREZ BİLDİRİMİ ========== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e2a3a;
    color: white;
    padding: 15px 20px;
    z-index: 1100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #ffd700;
    text-decoration: none;
}

.cookie-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .district-content {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: white;
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        z-index: 1000;
        padding: 30px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .hero-name {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .fixed-buttons {
        bottom: 10px;
    }
    
    .fixed-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .legal-content {
        padding: 25px;
    }
    
    .legal-page h1 {
        font-size: 1.8rem;
    }
    
    .service-header h1 {
        font-size: 1.8rem;
    }
    
    .district-header h1 {
        font-size: 1.8rem;
    }
    
    /* Mobilde scroll-down gizle */
    .scroll-down {
        display: none;
    }
    
    .packages {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .districts-grid {
        grid-template-columns: 1fr;
    }
    
    .district-col {
        text-align: center;
    }
    
    .footer-about h3::after,
    .footer-districts h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-about, .footer-districts, .footer-contact {
        text-align: center;
    }
    
    .footer-contact i {
        width: auto;
        margin-right: 8px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .fixed-btn {
        padding: 14px 20px;
        max-width: 160px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 25px;
    }
    
    .district-service-item {
        flex-direction: column;
        text-align: center;
    }
}

