:root {
    --primary-color: #0c2444; 
    --accent-color: #00b894;
    --blue-btn: #3b82f6;
    --green-btn: #25d366;
    --text-color: #333;
    --bg-light: #f4fcfc;      
    --white: #ffffff;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background-color: var(--bg-light); color: var(--text-color); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Header & Logo */
header { background: var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.05); position: fixed; width: 100%; top: 0; z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo i { font-size: 2rem; color: var(--accent-color); }
.logo-text { font-size: 1.4rem; font-weight: 800; color: var(--primary-color); line-height: 1.1; display: flex; flex-direction: column; }
.logo-text span { font-size: 0.8rem; color: #666; font-weight: 600; }
.navbar ul { display: flex; gap: 20px; align-items: center; }
.navbar a { font-weight: 600; color: var(--primary-color); transition: 0.3s; font-size: 0.95rem; }
.menu-toggle { display: none; font-size: 1.5rem; color: var(--primary-color); cursor: pointer; }

/* --- YENİ HERO ALANI TASARIMI --- */
.new-hero {
    padding-top: 100px; /* Header payı */
    padding-bottom: 30px;
    background: #fdfdfd; /* Çok açık gri/beyaz zemin */
}

/* 1. Kısım: Sloganlar */
.hero-text-area {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.main-slogan {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.main-slogan .highlight {
    color: var(--accent-color);
}

.sub-slogan {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.hero-buttons {
    display: flex; gap: 15px; justify-content: center; flex-wrap: wrap;
}

.btn {
    padding: 12px 30px; border-radius: 30px; font-weight: bold; transition: 0.3s;
    display: inline-flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none;
}
.btn-primary { background: var(--accent-color); color: white; border: 2px solid var(--accent-color); }
.btn-primary:hover { background: #008f72; border-color: #008f72; }
.btn-secondary { background: white; border: 2px solid var(--primary-color); color: var(--primary-color); }
.btn-secondary:hover { background: var(--primary-color); color: white; }

/* 2. Kısım: Kayan Resimler (Film Şeridi) */
.hero-carousel-wrapper {
    width: 100%;
    overflow: hidden; /* Taşanı gizle */
    position: relative;
    padding: 20px 0;
    background: #f4fcfc; /* Resimlerin arkasına hafif renk */
    border-top: 1px solid #e1e8ed;
    border-bottom: 1px solid #e1e8ed;
}

.hero-carousel-track {
    display: flex;
    gap: 20px;
    /* Sonsuz döngü animasyonu */
    width: calc(400px * 6); /* Resim genişliği x Resim sayısı */
    animation: scrollHero 25s linear infinite;
}

.hero-carousel-track img {
    height: 400px; /* Sabit yükseklik, tüm resimler aynı boyda durur */
    width: auto; /* Genişlik resmin oranına göre ayarlanır (KESİLME OLMAZ) */
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    object-fit: contain; /* Resmi kutuya sığdırır, asla kesmez */
    background: white; /* Resim kenarında boşluk kalırsa beyaz olsun */
}

/* Animasyon Tanımı */
@keyframes scrollHero {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-400px * 3)); } /* Yarısı kadar kay */
}

/* --- Diğer Bölümler --- */
.about { padding: 60px 0; background: #fff; }
.about-text-content { text-align: center; max-width: 900px; margin: 0 auto; }
.section-title { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 30px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.intro-text { font-size: 1.4rem; color: #2d3436; margin-bottom: 20px; }
.intro-text strong { color: var(--accent-color); font-weight: 900; }
.why-us-box { background: var(--bg-light); padding: 40px 20px; border-radius: 20px; border: 2px solid #e1e8ed; margin-top: 30px; }
.reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; text-align: left; }
.reason { display: flex; align-items: flex-start; gap: 15px; background: white; padding: 20px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.reason i { font-size: 2rem; color: var(--accent-color); margin-top: 5px; }

.services { background: var(--bg-light); padding: 60px 0; }
.service-grid, .video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; }
.service-card { background: white; padding: 30px; border-radius: 15px; text-align: center; border: 1px solid #eee; }
.icon-box { width: 60px; height: 60px; background: #f0fdf4; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; color: var(--accent-color); font-size: 1.5rem; }
.text-center { text-align: center; }
.video-item video { width: 100%; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.video-item h4 { margin-top: 10px; text-align: center; color: var(--primary-color); }

/* Blog, Yorumlar, SSS, İletişim, Modal vb. */
.blog-section { padding: 60px 0; background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.blog-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: 0.3s; border: 1px solid #eee; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.blog-img { height: 180px; background: var(--primary-color); display: flex; align-items: center; justify-content: center; color: white; font-size: 3rem; }
.blog-img i { color: var(--accent-color); }
.blog-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.blog-content h3 { font-size: 1.2rem; color: var(--primary-color); margin-bottom: 10px; }
.blog-content p { font-size: 0.95rem; color: #666; margin-bottom: 15px; line-height: 1.5; }
.read-more-btn { background: none; border: none; color: var(--accent-color); font-weight: bold; font-size: 0.9rem; cursor: pointer; text-align: left; padding: 0; }
.read-more-btn i { margin-left: 5px; transition: 0.2s; }
.read-more-btn:hover i { margin-left: 10px; }
.blog-modal-content { max-width: 700px; }
.blog-full-img { width: 100%; height: 200px; background: var(--primary-color); color: white; display: flex; align-items: center; justify-content: center; font-size: 4rem; border-radius: 10px; margin-bottom: 20px; }
.blog-full-title { color: var(--primary-color); margin-bottom: 15px; font-size: 1.8rem; }
.blog-full-text { font-size: 1.1rem; line-height: 1.8; color: #444; }
.reviews-section { background: var(--bg-light); padding: 60px 0; overflow: hidden; }
.slider { height: 250px; margin: auto; position: relative; width: 100%; display: grid; place-items: center; overflow: hidden; }
.slide-track { display: flex; width: calc(350px * 12); animation: scroll 40s linear infinite; }
.review-card { height: 200px; width: 300px; background: #fff; margin: 0 25px; padding: 20px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); display: flex; flex-direction: column; justify-content: center; border-left: 5px solid var(--accent-color); }
.review-card h4 { color: var(--primary-color); margin-bottom: 5px; }
.stars { color: #f1c40f; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { font-size: 0.9rem; font-style: italic; color: #555; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-350px * 6)); } }
.faq-section { padding: 60px 0; background: #fff; }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
details { background: var(--bg-light); padding: 15px; border-radius: 10px; cursor: pointer; }
summary { font-weight: bold; color: var(--primary-color); display: flex; justify-content: space-between; }
.contact { padding: 60px 0; background: var(--primary-color); color: white; text-align: center; }
.contact-details { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 30px; }
.c-item { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; }
.c-item i { color: var(--accent-color); }
.map-container { margin: 30px auto; max-width: 800px; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.3); background: #eee; }
.whatsapp-btn { display: inline-block; background: #25D366; color: white; padding: 15px 40px; border-radius: 50px; font-size: 1.2rem; font-weight: bold; margin-top: 20px; }
.sticky-action-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: white; padding: 10px 0; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); z-index: 9999; border-top: 1px solid #eee; }
.action-container { display: flex; justify-content: space-between; gap: 10px; }
.action-btn { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 10px 5px; border-radius: 8px; color: white; font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer; }
.btn-blue { background-color: var(--blue-btn); } .btn-green { background-color: var(--green-btn); }
.modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); align-items: center; justify-content: center; }
.modal-content { background-color: white; padding: 30px; border-radius: 15px; width: 90%; max-width: 500px; position: relative; max-height: 90vh; overflow-y: auto; }
.close-modal { position: absolute; top: 10px; right: 20px; font-size: 30px; cursor: pointer; color: #aaa; }
.modal-form { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
.modal-form label { font-weight: 600; color: #333; }
.modal-form input, .modal-form select, .modal-form textarea { padding: 12px; border: 1px solid #ddd; border-radius: 5px; }
.full-width { width: 100%; padding: 15px; cursor: pointer; }

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .navbar { position: absolute; top: 80px; right: -100%; background: white; width: 100%; transition: 0.3s; }
    .navbar.active { right: 0; }
    .navbar ul { flex-direction: column; padding: 20px; }
    .desktop-only { display: none; }
    .slide-track { width: calc(280px * 12); }
    .review-card { width: 250px; margin: 0 15px; }
    
    /* Mobilde resim yüksekliğini düşür */
    .hero-carousel-track img { height: 250px; }
    /* Mobilde slogan boyutu */
    .main-slogan { font-size: 2rem; }
}/* --- Hizmet Bölgeleri SEO Stilleri --- */
.regions-section { padding: 80px 0; background: #fff; border-top: 1px solid #eee; }
.region-grid-seo { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
    gap: 15px; 
}
.region-card {
    background: #fdfdfd;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.region-card i { color: var(--accent-color); font-size: 0.9rem; }
.region-card:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 184, 148, 0.2);
    border-color: var(--accent-color);
}
.region-card:hover i { color: white; }

@media (max-width: 768px) {
    .region-grid-seo { grid-template-columns: repeat(2, 1fr); } /* Mobilde 2 sütun */
}
/* Alt Sayfalar Mahalle Grid Tasarimi */
.neighborhood-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
    gap: 12px; 
    margin-top: 30px; 
} 
.n-item { 
    background: #f8fbfb; 
    padding: 10px; 
    border-radius: 8px; 
    border-left: 4px solid #00b894; 
    font-size: 0.9rem; 
    text-align: center; 
    color: #444; 
    font-weight: 500; 
}
