/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Üst Bilgi */
.top-bar {
    background: #2c3e50;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
}

/* Telefon Butonu */
.emergency-badge {
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 8px;
    padding: 3px;
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.3);
}

.emergency-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: white;
    border-radius: 6px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.emergency-phone:hover {
    transform: translateY(-2px);
}

.emergency-phone i {
    color: #0066cc;
    font-size: 18px;
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.call-now {
    font-size: 10px;
    color: #0066cc;
    font-weight: 700;
}

.phone-number {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
}

/* Navigasyon - Masaüstü */
.main-nav > ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #0066cc;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066cc;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: #004499;
    color: white;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #f39c12;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature i {
    color: #f39c12;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #0066cc;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Hizmetler */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #004499;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #34495e;
}

.service-card li:last-child {
    border-bottom: none;
}

/* Neden Biz */
.why-us {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-item p {
    color: #7f8c8d;
}

/* Acil Banner */
.emergency-banner {
    background: linear-gradient(135deg, #0066cc, #c0392b);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    background: rgb(37, 134, 245);
    color: #ffffff;
}

.btn-large:hover {
    background: #f1f2f6;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #0066cc;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    
    .banner-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .top-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* Görseldeki Gibi Kare Acil Servis Butonu */
.acil-servis-kutu {
    border: 3px solid #0066cc;
    border-radius: 8px;
    padding: 3px;
    background: white;
    box-shadow: 0 3px 10px rgba(0, 102, 204, 0.2);
}

.acil-servis-buton {
    display: flex;
    flex-direction: column; /* ACİL SERVİS üstte, numara altta */
    justify-content: center;
    align-items: center;
    padding: 12px 25px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap; /* numara aşağı satıra düşmesin */
}


.acil-servis-buton:hover {
    background: #004499;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.acil-servis-baslik {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.acil-servis-numara {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Mobil için acil servis butonu */
@media (max-width: 768px) {
    .acil-servis-kutu {
        border: 2px solid #0066cc;
        padding: 2px;
    }
    
    .acil-servis-buton {
        padding: 10px 15px;
        min-width: 120px;
    }
    
    .acil-servis-baslik {
        font-size: 10px;
    }
    
    .acil-servis-numara {
        font-size: 16px;
    }
}

/* Mobil düzen */
@media (max-width: 768px) {
    .header-content {
        padding: 10px 0;
        gap: 15px;
    }
    
    .logo img {
        width: 140px;
    }
    
    .header-contact {
        order: 2;
    }
    
    .main-nav {
        order: 3;
    }
}

/* Görseldeki Gibi Kare Acil Servis Butonu */
.acil-servis-kutu {
    border: 3px solid #0066cc;
    border-radius: 8px;
    padding: 3px;
    background: white;
    box-shadow: 0 3px 10px rgba(0, 102, 204, 0.2);
}

.acil-servis-buton {
    display: block;
    padding: 12px 20px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 140px;
}

.acil-servis-buton:hover {
    background: #004499;
    transform: translateY(-2px);
}

.acil-baslik {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.acil-numara {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1; /* numara satır yüksekliğini sabitle */
}

/* Hamburger Menü Çubuğu */
.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: 2px solid #0066cc;
    border-radius: 5px;
    background: white;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: #0066cc;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Açık/kapalı animasyon */
.nav-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobil Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        display: flex; /* bu mutlaka olmalı */
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
        display:block;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        font-size: 16px;
        padding: 15px 0;
        display: block;
        color: #333;
        font-weight: 500;
        text-decoration: none;
    }

    .nav-menu a:hover {
        color: #0066cc;
    }

    /* Desktop menüyü gizle */
    .main-nav > ul {
        display: none;
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .nav-toggle {
        display: none;
    }

    .main-nav > ul {
        display: flex;
    }
}

/* SEO Content Section Styles */
.seo-content-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.seo-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.seo-article {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #dc3545;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.seo-article h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.seo-article p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

.seo-article ul {
    color: #555;
    line-height: 1.6;
    margin-left: 20px;
    margin-bottom: 15px;
}

.seo-article ul li {
    margin-bottom: 8px;
    position: relative;
}

.seo-article ul li:before {
    content: "•";
    color: #dc3545;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.seo-article a {
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.seo-article a:hover {
    color: #c82333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .seo-content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .seo-content-section {
        padding: 40px 0;
    }
    
    .seo-article {
        padding: 20px;
    }
    
    .seo-article h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .seo-content-container {
        padding: 0 15px;
    }
    
    .seo-article {
        padding: 15px;
    }
}