/* --- Genel Ayarlar --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container { width: 90%; max-width: 1200px; margin: auto; padding: 0 20px; }
a { text-decoration: none; }

/* --- Header --- */
header {
    background: #fff;
    border-bottom: 3px solid #d90429;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container { display: flex; justify-content: space-between; align-items: center; }

.logo-link { display: flex; align-items: center; gap: 12px; }
.logo-icon { color: #d90429; font-size: 35px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-main { font-size: 28px; font-weight: 900; color: #2b2d42; letter-spacing: 1px; }
.brand-sub { font-size: 11px; font-weight: 600; color: #666; letter-spacing: 2px; }

nav ul { display: flex; list-style: none; align-items: center; }
nav ul li { margin-left: 25px; }
nav ul li a { color: #2b2d42; font-weight: 600; font-size: 15px; transition: color 0.3s; }
nav ul li a:hover { color: #d90429; }

.arama-butonu {
    background-color: #d90429; color: #fff !important; padding: 10px 25px;
    border-radius: 5px; font-weight: bold; transition: background 0.3s;
}
.arama-butonu:hover { background-color: #b00020; }

/* --- Slider --- */
.hero-slider { position: relative; height: 550px; overflow: hidden; background: #000; }
.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease;
    display: flex; justify-content: center; align-items: center;
}
.slide.active { opacity: 1; }
.hero-content { text-align: center; color: #fff; z-index: 2; padding: 20px; max-width: 800px; }
.hero-content h1 { font-size: 48px; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; text-shadow: 2px 2px 10px rgba(0,0,0,0.7); }
.hero-content p { font-size: 22px; margin-bottom: 30px; text-shadow: 1px 1px 5px rgba(0,0,0,0.7); }
.cta-btn {
    background: #d90429; color: #fff; padding: 15px 40px; border-radius: 50px;
    font-weight: bold; font-size: 18px; border: 2px solid #d90429; transition: all 0.3s;
}
.cta-btn:hover { background: transparent; }
.whatsapp-cta { background: #25d366; border-color: #25d366; }

.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.2); color: #fff; border: none;
    padding: 15px; cursor: pointer; font-size: 20px; z-index: 10; transition: 0.3s;
}
.slider-btn:hover { background: #d90429; }
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* --- İstatistikler --- */
.stats { background: #2b2d42; color: #fff; padding: 40px 0; }
.stats .container { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; }
.stat-item { margin: 10px; }
.stat-item i { font-size: 30px; color: #d90429; margin-bottom: 10px; }
.stat-item h3 { font-size: 36px; font-weight: 800; }
.stat-item p { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }

/* --- Hizmetler --- */
.services { padding: 80px 0; background: #fff; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 36px; color: #2b2d42; margin-bottom: 10px; }
.section-header p { color: #666; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }

.service-item {
    background: #f9f9f9; padding: 40px 30px; border-radius: 10px;
    text-align: center; transition: all 0.3s; cursor: pointer;
    border: 1px solid #eee; position: relative; overflow: hidden;
}
.service-item:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: #d90429; }
.service-item i { font-size: 50px; color: #d90429; margin-bottom: 20px; }
.service-item h3 { font-size: 22px; color: #2b2d42; margin-bottom: 10px; }
.service-item p { color: #666; margin-bottom: 20px; }
.read-more { color: #d90429; font-weight: bold; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; }

/* --- MODAL (Resimsiz - Sade) --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); z-index: 2000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content {
    background: #fff; width: 90%; max-width: 600px;
    max-height: 90vh; overflow-y: auto; border-radius: 10px; position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: translateY(50px); transition: transform 0.4s ease;
}
.modal-overlay.active .modal-content { transform: translateY(0); }

.modal-body { padding: 50px 30px; text-align: center; }

.modal-icon {
    font-size: 60px; color: #d90429; margin-bottom: 20px;
    background: #fff0f3; padding: 20px; border-radius: 50%;
}

.modal-body h2 { font-size: 30px; color: #2b2d42; margin-bottom: 10px; }
.modal-body .lead { font-size: 18px; color: #555; margin-bottom: 20px; }
.modal-body hr { border: 0; border-top: 1px solid #eee; margin: 20px 0; }
.modal-details { text-align: left; margin-bottom: 30px; color: #444; font-size: 16px; }
.modal-details ul { margin-left: 20px; margin-top: 10px; }
.modal-details li { margin-bottom: 8px; }

.modal-btn {
    display: inline-block; background: #d90429; color: #fff;
    padding: 15px 40px; border-radius: 50px; font-weight: bold;
    transition: 0.3s; margin-bottom: 10px;
}
.modal-btn:hover { background: #b00020; transform: scale(1.05); }

/* --- Modern İletişim Bölümü --- */
.contact-section {
    background: #2b2d42;
    padding: 80px 0;
    color: #fff;
    position: relative;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

/* Sol Taraf: Kartlar */
.contact-cards {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: #d90429;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #d90429;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(217, 4, 41, 0.4);
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
}

.info-content p, .info-content a {
    color: #ccc;
    font-size: 15px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #d90429;
    font-weight: bold;
}

.status-badge {
    display: inline-block;
    background: #25d366;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 5px;
    font-weight: bold;
}

/* Sağ Taraf: Harita */
.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 5px solid rgba(255,255,255,0.1);
}

/* Footer */
footer { background: #1a1b26; color: #888; text-align: center; padding: 20px; font-size: 14px; }

.whatsapp-btn {
    position: fixed; bottom: 25px; right: 25px;
    background: #25d366; color: #fff; padding: 12px 25px;
    border-radius: 50px; font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999; display: flex; align-items: center; gap: 10px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    header .container { flex-direction: column; }
    nav ul { margin-top: 15px; flex-wrap: wrap; justify-content: center; }
    nav ul li { margin: 5px 10px; }
    .hero-content h1 { font-size: 32px; }
    .contact-wrapper { flex-direction: column; }
    .contact-card:hover { transform: translateY(-5px); }
    .map-container { height: 300px; }
}
