/* GENEL AYARLAR */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background-color: #000; color: #fff; overflow-x: hidden; width: 100%; }

/* NAVBAR */
nav { display: flex; justify-content: space-between; align-items: center; padding: 10px 8%; background: #000; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #222; }
.logo-area { display: flex; align-items: center; text-decoration: none; gap: 15px; }
.navbar-logo { height: 70px; width: auto; }
.logo-text { font-weight: 800; font-size: 1.6rem; text-transform: uppercase; color: #fff; letter-spacing: 1px; }
.logo-text span { color: #f39c12; }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin-left: 25px; }
.nav-links a { color: #fff; text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.nav-links a:hover { color: #f39c12; }

/* DİL SEÇİCİ */
.lang-switcher { font-size: 0.85rem; color: #444; border-left: 1px solid #333; padding-left: 15px; white-space: nowrap; }
.lang-btn { cursor: pointer; color: #777; font-weight: 700; }
.lang-btn.active { color: #f39c12; }

/* HERO */
.hero-dark { height: 80vh; background: url('img/hero1.jpeg') no-repeat center center/cover; position: relative; display: flex; align-items: center; padding: 0 8%; }
.hero-dark::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.65); z-index: 1; }
.hero-content { z-index: 2; position: relative; }
.hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin: 20px 0; }
.hero-content h1 span { color: #f39c12; }
.btn-primary { background: #f39c12; color: #000; padding: 15px 35px; text-decoration: none; font-weight: 700; border-radius: 4px; display: inline-block; margin-top: 30px; }

/* HİZMETLER */
.services { padding: 100px 8%; background: #151515; text-align: center; }
.line { width: 60px; height: 4px; background: #f39c12; margin: 20px auto 50px; }
.service-grid { display: flex; gap: 20px; }
.service-box { background: #1a1a1a; border-bottom: 4px solid #333; flex: 1; border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.service-content { padding: 30px; text-align: left; flex-grow: 1; }
.orange-title { color: #f39c12; margin-bottom: 10px; font-size: 1.2rem; }
.icon-box { font-size: 2rem; color: #f39c12; margin-bottom: 15px; }

.slider-container { width: 100%; height: 200px; position: relative; overflow: hidden; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s; }
.slide.active { opacity: 1; }

/* İLETİŞİM - KART DÜZENİ SABİTLENDİ */
.contact-section { padding: 100px 8%; background-color: #0c0c0c; }
.container { max-width: 1200px; margin: 0 auto; }
.iletisim-ust { margin-bottom: 40px; }
.iletisim-kart-yapisi { display: flex; flex-wrap: wrap; gap: 20px; width: 100%; }
.i-kart { background: #1a1a1a; padding: 30px; flex: 1; min-width: 280px; border-radius: 4px; border-bottom: 4px solid #222; }
.i-kart-tam { flex: 1 1 100%; } /* Adres kutusu tam genişlik */
.i-kart h4 { color: #f39c12; margin-bottom: 15px; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.contact-link { color: #fff; text-decoration: none; transition: 0.3s; }
.contact-link:hover { color: #f39c12; }
.harita-buton { margin-top: 40px; text-align: left; }
.h-btn { display: inline-block; padding: 12px 30px; border: 2px solid #333; text-decoration: none; color: #fff; border-radius: 4px; }

/* WHATSAPP & FOOTER */
.whatsapp-fixed { position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: #fff; padding: 12px 25px; border-radius: 50px; display: flex; align-items: center; text-decoration: none; z-index: 99999; }
.whatsapp-fixed img { width: 25px; margin-right: 10px; }
.simple-footer { padding: 40px; text-align: center; color: #444; font-size: 0.8rem; }

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    nav { padding: 10px 5%; }
    .nav-links { display: none; }
    .lang-switcher { border-left: none; padding-left: 0; }
    .logo-text { font-size: 1.1rem; }
    .navbar-logo { height: 50px; }
    .hero-content h1 { font-size: 2.2rem; }
    .service-grid { flex-direction: column; }
    .i-kart { flex: 1 1 100%; } /* Mobilde tüm kartlar alt alta */
}