 /* ================= GENEL AYARLAR ================= */
* { margin: 0; padding: 0; box-sizing: border-box; text-decoration: none; list-style: none; }
body { font-family: 'Segoe UI', sans-serif; background: #f4f7f6; overflow-x: hidden; }

/* ================= HEADER (ÜST ALAN) ================= */
header { background: #fff; width: 100%; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }

.topbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 4%; 
    min-height: 110px; 
}

.logo-img { height: 70px; width: auto; }

.top-slogan-animated { text-align: center; flex: 1; }
.slogan-main { display: block; font-size: 1.3rem; font-weight: 800; color: #243f7a; }
.slogan-sub { color: #ff9800; font-weight: 600; font-size: 0.9rem; }

.right-area { display: flex; align-items: center; gap: 20px; }
.contact-icons { display: flex; flex-direction: column; gap: 5px; font-size: 0.85rem; font-weight: 600; color: #243f7a; }
.btn-contact { background: #ff9800; color: #fff; padding: 10px 20px; border-radius: 5px; font-weight: 700; transition: 0.3s; }
.btn-contact:hover { background: #e68a00; }

/* ================= NAVIGASYON (MENU) ================= */
.menu-bar { background: #243f7a; display: flex; justify-content: space-between; align-items: center; padding: 0 4%; height: 50px; }
.menu-left a, .menu-right a { color: #fff; font-weight: 600; font-size: 0.9rem; padding: 15px; display: inline-block; }
.menu-right { display: flex; position: relative; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 250px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 1000; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { color: #333; padding: 12px 20px; display: block; border-bottom: 1px solid #eee; }
.dropdown-menu a:hover { background: #f8f9fa; color: #243f7a; }

/* ================= BANNER & HİZMETLER ================= */
.banner { width: 100%; height: 400px; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('/assets/img/banner.jpg') center/cover; display: flex; justify-content: center; align-items: center; color: #fff; text-align: center; }
.banner-content h1 { font-size: 2.5rem; margin-bottom: 10px; }

.services-wrapper { padding: 50px 4%; max-width: 1200px; margin: 0 auto; }
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.service-card { background: #243f7a; color: #fff; padding: 35px 15px; border-radius: 12px; text-align: center; transition: 0.3s; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.service-card i { font-size: 2.5rem; margin-bottom: 15px; color: #ff9800; }
.service-card:hover { transform: translateY(-5px); background: #3a5ba0; }

/* ================= FOOTER ================= */
.site-footer { background: #1a2a4e; color: #fff; padding: 50px 4% 20px; margin-top: 50px; }
.footer-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.footer-bottom-text { text-align: center; margin: 30px 0; font-size: 0.85rem; opacity: 0.8; }
.social-icons { display: flex; gap: 15px; justify-content: center; margin-bottom: 20px; }
.social-icons a { color: #fff; font-size: 1.2rem; }

@media (max-width: 768px) {
    h1 { font-size: 28px !important; }
    h2 { font-size: 24px !important; }
    p { font-size: 15px !important; }
}


