* {
    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;
}

/* Üst İletişim Çubuğu */
.top-contact-bar {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.call-btn, .whatsapp-btn {
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
}

.call-btn:hover {
    background: white;
    color: #007bff;
}

.whatsapp-btn {
    background: #25D366;
    border: 2px solid #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #007bff;
    font-size: 2rem;
    margin-bottom: 5px;
}

.logo p {
    color: #666;
    font-size: 0.9rem;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover, .nav a.active {
    color: #007bff;
}

/* Sayfa Başlığı */
.page-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* İletişim İçeriği */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* İletişim Bilgileri */
.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.info-cards {
    display: grid;
    gap: 30px;
}

.info-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 25px;
}

.info-icon.whatsapp {
    background: #25D366;
}

.info-icon.email {
    background: #ea4335;
}

.info-icon.web {
    background: #34a853;
}

.info-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.info-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25D366;
}

.email-btn {
    background: #ea4335;
}

.web-btn {
    background: #34a853;
}

/* Konum Bilgileri */
.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.location-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.location-header {
    background: #007bff;
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-header i {
    font-size: 2rem;
}

.location-header h3 {
    font-size: 1.5rem;
}

.location-details {
    padding: 30px;
}

.location-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #666;
}

.location-details strong {
    color: #333;
}

.map-placeholder {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.map-placeholder:hover .map-overlay {
    opacity: 1;
}

.map-overlay i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Çalışma Saatleri */
.working-hours {
    margin-bottom: 80px;
}

.working-hours h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

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

.hours-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hours-card.special {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.hours-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.hours-card.special i {
    color: white;
}

.hours-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.hours-card p {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hours-card span {
    color: #666;
    font-size: 0.9rem;
}

.hours-card.special span {
    color: rgba(255, 255, 255, 0.8);
}

/* Hizmet Alanları */
.service-areas {
    margin-bottom: 80px;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

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

.area-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.area-item i {
    color: #007bff;
    font-size: 1.5rem;
}

.area-item span {
    font-weight: 500;
    color: #333;
}

/* Acil Durum İletişim */
.emergency-contact {
    background: linear-gradient(135deg, #dc3545, #c82333);
    padding: 60px 0;
}

.emergency-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.emergency-content {
    flex: 1;
}

.emergency-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.emergency-content p {
    color: #666;
    font-size: 1.1rem;
}

.emergency-buttons {
    display: flex;
    gap: 15px;
}

.emergency-call, .emergency-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    color: white;
}

.emergency-call {
    background: #dc3545;
}

.emergency-call:hover {
    background: #c82333;
    transform: translateY(-3px);
}

.emergency-whatsapp {
    background: #25D366;
}

.emergency-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #007bff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #007bff;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #25D366;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .emergency-card {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .emergency-call, .emergency-whatsapp {
        justify-content: center;
    }
    
    .contact-info h2, .location-info h2, .working-hours h2, .service-areas h2 {
        font-size: 2rem;
    }
}