/* ====================================
   KOMBI HASTANESİ - CSS DOSYASI
   ==================================== */

/* Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ====================================
   ANIMASYONLAR
   ==================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.bounce {
    animation: bounce 2s infinite;
}

/* ====================================
   HEADER - ÜST MENÜ
   ==================================== */
#header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #f97316;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Desktop Menü */
.desktop-menu {
    display: none;
    gap: 2rem;
}

.desktop-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.desktop-menu a:hover {
    color: #f97316;
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    display: block;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobil Menü */
.mobile-menu {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.hidden {
    display: none;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #f97316;
}

/* ====================================
   HERO SECTION - ANA BÖLÜM
   ==================================== */
.hero {
    padding: 8rem 1rem 5rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(249, 115, 22, 0.1), rgba(59, 130, 246, 0.1));
    animation: pulse 3s ease-in-out infinite;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease-out;
}

.hero-title span {
    display: block;
    color: #f97316;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Butonlar */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: scale(1.05);
}

.btn-whatsapp {
    background: #16a34a;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #15803d;
    box-shadow: 0 15px 25px rgba(22, 163, 74, 0.3);
}

.btn-phone {
    background: #ea580c;
    color: #fff;
}

.btn-phone:hover {
    background: #c2410c;
    box-shadow: 0 15px 25px rgba(234, 88, 12, 0.3);
}

.btn-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.scroll-down {
    display: block;
    margin: 3rem auto 0;
    text-align: center;
    color: #fff;
}

.scroll-down svg {
    width: 2rem;
    height: 2rem;
}

/* ====================================
   SERVICES - HİZMETLER BÖLÜMÜ
   ==================================== */
.services {
    padding: 5rem 1rem;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #9ca3af;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: linear-gradient(to bottom right, #334155, #1e293b);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    background: linear-gradient(to bottom right, #ea580c, #c2410c);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.3);
}

.service-icon {
    width: 2rem;
    height: 2rem;
    color: #f97316;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.service-card:hover .service-icon {
    color: #fff;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #9ca3af;
    transition: color 0.3s;
}

.service-card:hover p {
    color: #e5e7eb;
}

/* Kombi Markaları Bölümü */
.brands-section {
    margin-top: 4rem;
    text-align: center;
}

.brands-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #fff;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.brand-item {
    background: linear-gradient(to bottom right, #334155, #1e293b);
    padding: 1.25rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: #f97316;
    transition: all 0.3s;
    cursor: pointer;
}

.brand-item:hover {
    background: linear-gradient(to bottom right, #f97316, #ea580c);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

/* Hizmet Bölgeleri */
.service-areas {
    margin-top: 4rem;
    text-align: center;
}

.areas-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #fff;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(249, 115, 22, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s;
}

.area-item:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: #f97316;
    transform: translateX(5px);
}

.area-item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #f97316;
    flex-shrink: 0;
}

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

/* Görsel Kartları */
.images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.image-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: linear-gradient(to bottom right, #334155, #1e293b);
    transition: all 0.3s;
}

.image-card:hover {
    box-shadow: 0 25px 50px rgba(234, 88, 12, 0.3);
}

.image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    width: 5rem;
    height: 5rem;
    color: rgba(249, 115, 22, 0.2);
    transition: color 0.3s;
}

.image-card:hover .image-placeholder svg {
    color: rgba(249, 115, 22, 0.4);
}

.image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0f172a, transparent);
    opacity: 0.6;
}

.image-card p {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 10;
    font-weight: 600;
}

/* ====================================
   ABOUT - HAKKIMIZDA BÖLÜMÜ
   ==================================== */
.about {
    padding: 5rem 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.feature-item:hover {
    color: #fff;
}

.feature-item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #f97316;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.feature-item:hover svg {
    transform: scale(1.1);
}

.feature-item span {
    color: #d1d5db;
    transition: color 0.3s;
}

.feature-item:hover span {
    color: #fff;
}

/* İstatistik Kutusu */
.stats-box {
    background: linear-gradient(to bottom right, #f97316, #ea580c);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    transition: transform 0.3s;
}

.stats-box:hover {
    transform: scale(1.05);
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    transition: background 0.3s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #fef3c7;
}

/* ====================================
   CONTACT - İLETİŞİM BÖLÜMÜ
   ==================================== */
.contact {
    padding: 5rem 1rem;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    padding: 2rem;
    border-radius: 1rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
}

.contact-card.whatsapp {
    background: linear-gradient(to bottom right, #16a34a, #15803d);
}

.contact-card.whatsapp:hover {
    box-shadow: 0 25px 50px rgba(22, 163, 74, 0.5);
    transform: scale(1.05);
}

.contact-card.phone {
    background: linear-gradient(to bottom right, #ea580c, #c2410c);
}

.contact-card.phone:hover {
    box-shadow: 0 25px 50px rgba(234, 88, 12, 0.5);
    transform: scale(1.05);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.contact-card.whatsapp:hover .contact-icon {
    animation: bounce 1s;
}

.contact-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-card p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-number {
    font-weight: 600;
}

/* Çalışma Saatleri */
.hours-box {
    background: linear-gradient(to bottom right, #334155, #1e293b);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.hours-box h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hours-box p {
    color: #d1d5db;
    margin: 0.5rem 0;
}

.hours-box .emergency {
    color: #f97316;
    font-weight: 600;
    margin-top: 1rem;
}

/* Adres Kutusu */
.address-box {
    background: linear-gradient(to bottom right, #334155, #1e293b);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 2rem;
}

.address-icon {
    width: 3rem;
    height: 3rem;
    color: #f97316;
    margin: 0 auto 1rem;
}

.address-box h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.address-text {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.service-area {
    color: #f97316;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
}

/* ====================================
   FOOTER - ALT BÖLÜM
   ==================================== */
.footer {
    background: #0f172a;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #f97316;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer p {
    color: #9ca3af;
}

/* ====================================
   FLOATING WHATSAPP BUTTON
   ==================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #16a34a;
    color: #fff;
    padding: 1rem;
    border-radius: 9999px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}

.floating-whatsapp:hover {
    background: #15803d;
    transform: scale(1.1);
    box-shadow: 0 25px 50px rgba(22, 163, 74, 0.5);
}

.floating-whatsapp svg {
    width: 2rem;
    height: 2rem;
}

/* ====================================
   RESPONSIVE - MOBIL UYUMLU
   ==================================== */

/* Tablet ve üzeri */
@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop */
@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
    
    .desktop-menu {
        display: flex;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .images-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Büyük ekranlar */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobil */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}