* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    margin-bottom: 30px;
    margin-top: 30px;
}

.header {
    background: #111;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.header h1 {
    font-size: 36px;
}

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    background: #f9b000;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.services,
.districts,
.about {
    padding: 40px 0;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.service-box {
    background: #f2f2f2;
    padding: 20px;
    text-align: center;
    font-weight: bold;
}

.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}


/* Mobil */
@media (max-width: 768px) {
    .header h1 {
        font-size: 28px;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
}

.whatsapp-btn .wp-icon {
    font-size: 26px;
}

/* Mobilde yazıyı gizle */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-btn .wp-text {
        display: none;
    }
}

.districts {
    background: #f8f9fa;
    padding: 60px 0;
}

.districts h2 {
    text-align: center;
    margin-bottom: 10px;
}

.district-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.district-box {
    display: block;
    background: #fff;
    padding: 18px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #222;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.district-box:hover {
    background: #ffa500;
    color: #fff;
    transform: translateY(-4px);
}

.about {
    padding: 70px 0;
    background: #fff;
}

.about h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: #555;
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.about-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.25s ease;
}

.about-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.about-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.about-box:hover {
    background: #ffa500;
    color: #fff;
}

.about-box:hover p {
    color: #fff;
}

.services {
    margin-top: 60px;
    text-align: center;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
}

.services-desc {
    max-width: 800px;
    margin: 0 auto 35px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.service-box {
    background: #f9f9f9;
    padding: 25px 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.service-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.gallery {
    margin-top: 70px;
    text-align: center;
}

.gallery h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
}

.gallery-desc {
    max-width: 800px;
    margin: 0 auto 35px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    background: #f2f2f2;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.sss-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.sss-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.sss-header {
    text-align: center;
    margin-bottom: 60px;
}

.sss-title {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.sss-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-wrapper {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 25px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ffa500;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-question:hover .faq-question-text {
    color: #ffa500;
}

.faq-icon {
    min-width: 30px;
    height: 30px;
    background: #ffa500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
    background: #ff8c00;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-answer.active {
    max-height: 500px;
    padding-top: 15px;
}

.faq-answer-text {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #ffa500;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.faq-cta-button {
    display: inline-block;
    background: #ffa500;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.faq-cta-button:hover {
    background: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .sss-section {
        padding: 60px 0;
    }

    .sss-title {
        font-size: 32px;
    }

    .sss-subtitle {
        font-size: 16px;
    }

    .faq-wrapper {
        padding: 20px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer-text {
        font-size: 15px;
    }

    .faq-item {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .sss-container {
        padding: 0 15px;
    }

    .sss-title {
        font-size: 28px;
    }

    .faq-wrapper {
        padding: 15px;
    }
}
 /* Hero Slider */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            animation: slideUp 1s ease-out;
        }

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

        .slide-content h1,
        .slide-content h2 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
            color: #fff;
        }

        .slide-content .highlight {
            color: #ffa500;
        }

        .slide-content p {
            font-size: 22px;
            margin-bottom: 35px;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
            line-height: 1.6;
        }

        .slide-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background: #ffa500;
            color: white;
            box-shadow: 0 5px 20px rgba(255, 165, 0, 0.4);
        }

        .btn-primary:hover {
            background: #ff8c00;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 165, 0, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #1a1a1a;
        }

        /* Navigation Arrows */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 10;
        }

        .nav-btn {
            background: rgba(255, 165, 0, 0.8);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn:hover {
            background: #ffa500;
            transform: scale(1.1);
        }

        /* Dots Navigation */
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #ffa500;
            width: 35px;
            border-radius: 6px;
        }



        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-slider {
                height: 500px;
            }

            .slide-content h1,
            .slide-content h2 {
                font-size: 36px;
            }

            .slide-content p {
                font-size: 18px;
            }

            .btn {
                padding: 12px 30px;
                font-size: 16px;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .slider-nav {
                padding: 0 15px;
            }


        }

        @media (max-width: 480px) {
            .hero-slider {
                height: 450px;
            }

            .slide-content h1,
            .slide-content h2 {
                font-size: 28px;
            }

            .slide-content p {
                font-size: 16px;
            }

            .slide-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }