/* Temel değişkenler */
:root {
    --primary: #2962ff;      /* Daha dikkat çekici mavi */
    --secondary: #6c757d;
    --success: #00c853;      /* Daha canlı yeşil */
    --danger: #ff1744;       /* Dikkat çekici kırmızı */
    --light: #f5f5f5;
    --dark: #37474f;
    --container-width: 1140px;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --radius: 12px;          /* Daha modern yuvarlak köşeler */
}

/* Genel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Bölümü */
.top-bar {
    background: #8257e6;  /* Sosyal medya bar'ın rengiyle aynı mor renk */
    color: white;
    padding: 10px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    white-space: nowrap;  /* Tek satırda kalmasını sağlar */
}

.contact-info i {
    width: 20px;
    color: var(--primary);
}

.service-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.phone:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobil Arama Butonu */
.mobile-call {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.call-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--success);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .mobile-call {
        display: block;
    }
    
    .phone {
        display: none;
    }

    .contact-info {
        align-items: center;
    }
}

/* Ana Header */
.main-header {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.header-content {
    text-align: center;
}

.header-content h1 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary);
}

.feature-badge i {
    color: var(--success);
}

/* Breadcrumb */
.breadcrumb {
    background: white;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.breadcrumb .container::-webkit-scrollbar {
    display: none;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.9rem;
}

.breadcrumb i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* Ana Menü */
.main-menu {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.menu-items {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

.menu-items a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    text-decoration: none;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: color 0.3s;
}

.menu-items a:hover,
.menu-items .active a {
    color: var(--primary);
}

.menu-items i {
    font-size: 1.1rem;
}

/* Mobil Uyumluluk */
@media (max-width: 767px) {
    .top-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .header-content h1 {
        font-size: 1.5rem;
    }

    .service-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-badge {
        width: 100%;
        justify-content: center;
    }

    .menu-items {
        gap: 1rem;
        padding: 0 1rem;
    }

    .menu-items span {
        display: none;
    }

    .menu-items i {
        font-size: 1.25rem;
    }
}

/* Lokasyon Sayfaları Ortak Stilleri */
.locations-section {
    padding: 4rem 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.location-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    color: var(--primary);
}

.location-icon {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.location-info h3 {
    margin: 0;
    font-size: 1.1rem;
}

.location-detail {
    font-size: 0.9rem;
    color: var(--secondary);
    display: block;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .locations-section {
        padding: 2rem 0;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Semt detay sayfası */
.semt-details {
    padding: 1.5rem 0;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #9ca3af;
}

.contact-info li i {
    color: #8257e6;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-info li span {
    color: #9ca3af;
}

.call-now-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--success);
    color: white;
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,200,83,0.3);
}

/* Hizmetler bölümü */
.services-section {
    padding: 2rem 0;
    background: white;
}

.service-cards {
    display: grid;
    gap: 1rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 20px;
    margin: 20px 0;
}

.service-card i {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Responsive */
@media (min-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobil optimizasyonları */
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    .main-header {
        text-align: center;
    }

    .service-features {
        justify-content: center;
    }

    .location-card {
        margin: 0 -1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .call-now-button {
        position: sticky;
        bottom: 0;
        border-radius: 0;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* Bölge Bilgileri */
.region-info {
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-highlights {
    list-style: none;
    margin: 1.5rem 0;
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.service-highlights li i {
    color: var(--success);
}

.service-time-info {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.time-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: var(--radius);
}

.time-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.time-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* Semt Detayları */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-badge {
    background: var(--success);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.service-details {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
}

.emergency-service {
    background: var(--danger);
    color: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.emergency-button {
    background: white;
    color: var(--danger);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-left: auto;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .emergency-service {
        flex-direction: column;
        text-align: center;
    }

    .emergency-button {
        margin: 10px 0 0;
        width: 100%;
        text-align: center;
    }
}

/* Hata Sayfası */
.error-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.error-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    color: var(--danger);
    margin-bottom: 1.5rem;
}

.error-card h1 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.error-card p {
    color: var(--secondary);
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.primary-button,
.call-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.primary-button {
    background: var(--primary);
    color: white;
}

.call-button {
    background: var(--success);
    color: white;
}

.primary-button:hover,
.call-button:hover {
    transform: translateY(-2px);
}

/* Responsive Düzenlemeler */
@media (max-width: 767px) {
    .service-time-info {
        grid-template-columns: 1fr;
    }

    .emergency-service {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .emergency-button {
        margin: 1rem 0 0;
        width: 100%;
        text-align: center;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .error-actions {
        flex-direction: column;
    }

    .primary-button,
    .call-button {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer Stili */
.footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 80px 0 40px;
    margin-top: 0;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-col {
    text-align: left;
}

.footer-col h3 {
    color: #f3f4f6;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #8257e6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    color: #9ca3af;
    margin-bottom: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    will-change: transform;
    transition: transform 0.2s ease;
    padding: 8px 0;  /* Daha büyük tıklama alanı */
}

.footer-col ul li:hover {
    color: #f3f4f6;
    padding-left: 8px;
}

/* İletişim Bilgileri */
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info li i {
    color: #8257e6;
    font-size: 16px;
    min-width: 20px;
    text-align: left;
}

/* Sosyal Medya Bar */
.social-bar {
    background: #8257e6;
    padding: 15px 0;
    margin-bottom: 0;
}

.social-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 1rem;
}

.social-bar span {
    color: white;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Footer İletişim Bilgileri */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #9ca3af;
    font-size: 14px;
}

.footer-contact li i {
    color: #8257e6;
    font-size: 16px;
    min-width: 20px;
    text-align: left;
}

/* Copyright Bar */
.copyright-bar {
    background: #111827;
    padding: 20px 0;
    color: #9ca3af;
    text-align: center;
    font-size: 14px;
}

/* Mobil için */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0;
    }

    .footer-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .social-bar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Tablet için Düzenlemeler */
@media (min-width: 769px) and (max-width: 1023px) {
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Masaüstü için Medya Sorguları */
@media (min-width: 1024px) {
    .footer-sections {
        grid-template-columns: repeat(4, 1fr);  /* Desktop'ta 4 sütun */
        gap: 60px;
    }
} 