/* Genel Stiller */
:root {
    --primary-red: #e30613;
    --primary-black: #000000;
    --primary-white: #ffffff;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--primary-black);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.red-text {
    color: var(--primary-red);
}

.white-text {
    color: var(--primary-white);
}

.black-text {
    color: var(--primary-black);
}

.red-bg {
    background-color: var(--primary-red);
    color: var(--primary-white);
}

.black-bg {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.white-bg {
    background-color: var(--primary-white);
    color: var(--primary-black);
}

/* Header Stilleri */
.emergency-header {
    background-color: var(--primary-black);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--primary-red);
    padding: 8px 0;
    color: var(--primary-white);
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.emergency-contact {
    display: flex;
    align-items: center;
}

.phone-icon {
    margin-right: 8px;
    font-size: 16px;
}

.quick-links a {
    color: var(--primary-white);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.quick-links a:hover {
    color: var(--primary-black);
}

.quick-links a i {
    margin-right: 5px;
}

.main-header {
    padding: 15px 0;
    background-color: var(--primary-black);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo .tagline {
    margin: 5px 0 0;
    color: var(--primary-white);
    font-size: 12px;
    font-weight: 300;
}

.main-nav {
    display: flex;
}

.main-nav a {
    color: var(--primary-white);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.main-nav a:hover {
    color: var(--primary-red);
}

.main-nav a i {
    margin-right: 5px;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 24px;
    cursor: pointer;
}

/* Slider Stilleri */
.emergency-slider {
    position: relative;
    height: 80vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background-image: url('https://plus.unsplash.com/premium_photo-1663040398972-7b62b2b1eade?q=80&amp;w=2070&amp;auto=format&amp;fit=crop&amp;ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1489824904134-891ab64532f1?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=1350&amp;q=80');
}

.slide:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1550355291-bbee04a92027?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=1350&amp;q=80');
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    text-align: center;
    padding: 20px;
    z-index: 2;
    color: var(--primary-white);
}

.company-info {
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
}

.company-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.service-areas {
    font-size: 14px;
    margin-bottom: 10px;
    font-style: italic;
}

.phone-number {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.phone-number i {
    margin-right: 8px;
}

.slide-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slide-content .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.emergency-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-red);
    color: var(--primary-white);
    border-radius: 4px;
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s;
    border: 2px solid var(--primary-red);
    text-transform: uppercase;
}

.emergency-button:hover {
    background-color: transparent;
    color: var(--primary-white);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    padding: 0 20px;
}

.prev-slide, .next-slide {
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary-white);
    border: none;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-slide:hover, .next-slide:hover {
    background: rgba(227, 6, 19, 0.8);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background-color: var(--primary-red);
}

/* Hizmetler Bölümü */
.emergency-services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--primary-black);
}

.service-card p {
    color: var(--dark-gray);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-red);
    color: var(--primary-white);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.service-button:hover {
    background-color: var(--primary-black);
}

/* Hizmet Bölgeleri */
.coverage-area {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.coverage-list {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.coverage-list h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.coverage-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    list-style: none;
}

.coverage-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.coverage-list i {
    margin-right: 10px;
    font-size: 14px;
}

.coverage-note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    font-weight: 500;
}

/* Call to Action */
.call-to-action {
    padding: 50px 0;
    text-align: center;
}

.cta-content {
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 18px;
}

.emergency-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-black);
    color: var(--primary-white);
    border-radius: 4px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}

.emergency-cta-button:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
}

.emergency-cta-button i {
    margin-right: 10px;
}

/* Footer */
.main-footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-logo p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-phone {
    font-weight: bold;
    display: flex;
    align-items: center;
}

.footer-phone i {
    margin-right: 10px;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: color 0.3s;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-white);
}

.footer-links i {
    margin-right: 10px;
    font-size: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    color: #aaa;
    font-size: 14px;
}

.footer-contact i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: var(--primary-white);
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

.designer-credit {
    margin-top: 15px;
    font-size: 14px;
}

.designer-credit a {
    color: var(--primary-red);
    font-weight: bold;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--primary-white);
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-black);
        flex-direction: column;
        padding: 20px 0;
    }
    
    .main-nav a {
        margin: 10px 0;
        padding: 10px 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 36px;
    }
    
    .company-info {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
    }
    
    .quick-links {
        margin-top: 10px;
    }
    
    .quick-links a {
        margin: 0 10px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 30px;
    }
    
    .emergency-slider {
        height: 70vh;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .company-info h3 {
        font-size: 20px;
    }
    
    .service-areas {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 24px;
    }
    
    .slide-content h2 {
        font-size: 26px;
    }
    
    .slide-content .subtitle {
        font-size: 16px;
    }
    
    .emergency-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .emergency-services {
        padding: 50px 0;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-list ul {
        grid-template-columns: 1fr;
    }
}
/* İlçe Özel Sayfa Stilleri */
.district-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--primary-white);
}

.akdeniz-bg {
    background-image: url('https://plus.unsplash.com/premium_photo-1663040398972-7b62b2b1eade?q=80&amp;w=2070&amp;auto=format&amp;fit=crop&amp;ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 0;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.service-areas-box {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    max-width: 800px;
}

.service-areas-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-areas-box h3 i {
    margin-right: 10px;
    color: var(--primary-red);
}

.neighborhoods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.neighborhoods-list ul {
    list-style: none;
    flex: 1;
    min-width: 200px;
}

.neighborhoods-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.neighborhoods-list li:before {
    content: "•";
    color: var(--primary-red);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -3px;
}

/* İlçe Hizmetleri */
.district-services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.district-services .service-card h3 {
    font-size: 18px;
}

/* Müşteri Yorumları */
.district-testimonials {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
}

.user-info h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.user-info p {
    font-size: 14px;
    color: var(--dark-gray);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
}

.rating {
    color: #FFD700;
}

/* Harita Bölümü */
.district-map {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.map-info {
    background-color: var(--primary-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.map-info h3 i {
    margin-right: 10px;
}

.map-info ul {
    list-style: none;
    margin-top: 20px;
}

.map-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.map-info li i {
    margin-right: 10px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content .subtitle {
        font-size: 18px;
    }
    
    .service-areas-box {
        padding: 15px;
    }
}