/* --- DEĞİŞKENLER & TEMEL --- */
:root {
    --primary: #FF6600; /* Canlı Turuncu */
    --black: #000000;
    --dark-grey: #121212;
    --white: #FFFFFF;
    --text-muted: #A0A0A0;
    --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: var(--font-main); 
    background-color: var(--white); 
    color: var(--text-muted); 
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- TİPOGRAFİ --- */
h1, h2, h3 { font-weight: 800; text-transform: uppercase; letter-spacing: -1px; }
.text--orange { color: var(--primary); }

/* --- NAVİGASYON --- */
.nav { background: rgba(0,0,0,0.95); padding: 20px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #222; }
.nav__container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.nav__logo { font-size: 1.5rem; font-weight: 900; color: var(--white); text-decoration: none; }
.nav__logo span { color: var(--primary); }
.nav__list { display: flex; list-style: none; gap: 30px; }
.nav__link { color: var(--white); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.nav__link:hover { color: var(--primary); }

/* Dropdown (Kurumsal Menü için) */
.nav__item { position: relative; }
.nav__dropdown { 
    position: absolute; top: 100%; left: 0; background: var(--dark-grey); 
    min-width: 200px; display: none; padding: 10px 0; border: 1px solid #333;
}
.nav__item:hover .nav__dropdown { display: block; }
.nav__dropdown-link { display: block; padding: 10px 20px; color: var(--white); text-decoration: none; font-size: 0.85rem; }
.nav__dropdown-link:hover { background: var(--primary); }

/* --- BUTONLAR --- */
.btn { 
    display: inline-block; padding: 12px 30px; border-radius: 0; 
    font-weight: 700; text-decoration: none; transition: 0.4s; text-transform: uppercase; font-size: 0.8rem;
}
.btn--orange { background: var(--primary); color: var(--black); }
.btn--orange:hover { background: var(--white); transform: translateY(-3px); }
.btn--outline { border: 2px solid var(--white); color: var(--white); margin-top: 20px; }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }

/* --- SECTIONS --- */
.section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
.section__title { font-size: 3rem; margin-bottom: 40px; border-left: 8px solid var(--primary); padding-left: 20px; }

/* Anasayfa Özet Kartları */
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.card { background: var(--dark-grey); padding: 40px; border: 1px solid #222; }
.card__title { font-size: 1.8rem; margin-bottom: 20px; }

/* İletişim Sayfası */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info__item { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; font-size: 1.1rem; }
.contact-info__icon { font-size: 1.5rem; color: var(--primary); }
.map-area { background: #222; height: 400px; width: 100%; margin-top: 50px; display: flex; align-items: center; justify-content: center; }

/* FOOTER */
.footer { padding: 50px 0; text-align: center; border-top: 1px solid #222; margin-top: 100px; color: var(--text-muted); }
/* --- İÇ SAYFA ÖZEL (INNER PAGES) --- */
.page-header {
    background: linear-gradient(to right, var(--black), #1a1a1a);
    padding: 80px 0;
    border-bottom: 2px solid var(--primary);
    text-align: center;
}

.page-header__title {
    font-size: 3.5rem;
    color: var(--white);
    margin: 0;
}

.content-section {
    padding: 80px 20px;
    max-width: 900px; /* Okunabilirlik için metin alanı daha dar */
    margin: 0 auto;
}

.content-section__text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.content-section__highlight {
    color: var(--black);
    font-weight: 700;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 40px 0;
    font-style: italic;
}

/* SEO uyumlu alt başlıklar */
.content-section__subtitle {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 50px;
    margin-bottom: 20px;
}

/* --- FOOTER ANA STİLLERİ --- */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 30px 0;
    border-top: 1px solid #1a1a1a;
    font-size: 0.9rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* Sütun genişlikleri */
    gap: 40px;
    margin-bottom: 60px;
}

/* Marka Sütunu */
.footer__logo {
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--white);
    display: block;
    margin-bottom: 20px;
}

.footer__logo span {
    color: var(--primary);
}

.footer__description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Başlıklar ve Listeler */
.footer__title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
}

.footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer__list {
    list-style: none;
    padding: 0;
}

.footer__item {
    margin-bottom: 12px;
}

.footer__link {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer__link:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer__link--small {
    font-size: 0.8rem;
    margin-left: 15px;
}

/* İletişim Detayları */
.footer__contact-item {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer__contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.footer__contact-item a:hover {
    color: var(--primary);
}

/* Sosyal Medya */
.footer__social-link {
    color: var(--white);
    margin-right: 15px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.8rem;
    border: 1px solid #333;
    padding: 5px 10px;
    transition: 0.3s;
}

.footer__social-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--black);
}

/* Alt Bar */
.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

/* Responsive Düzen */
@media (max-width: 992px) {
    .footer__content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer__content {
        grid-template-columns: 1fr;
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Politika sayfaları için ekstra okunabilirlik */
.content-section p strong {
    color: var(--black);
}

.content-section .service-list li {
    font-size: 1rem;
    margin-bottom: 10px;
}