/* Font Ayarları */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.fw-extra-bold { font-weight: 800; }

/* Menü Modernleştirme */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 5px;
}

/* Hover ile Açılan Menü (Masaüstü) */
@media (min-width: 992px) {
    .custom-hover-dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.3s;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu {
    border: none;
    border-top: 3px solid #FFD700;
    border-radius: 0 0 8px 8px;
}

.dropdown-item:hover {
    background-color: #FFD700;
    color: #000;
}

/* Slider Ayarları */
.main-slider-img {
    height: 70vh;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 20px;
    bottom: 25%;
    border-left: 5px solid #FFD700;
}

/* Hizmet Kartları */
.service-card-pro {
    border: none;
    transition: all 0.3s;
    overflow: hidden;
    background: #f8f9fa;
    height: 100%;
}

.service-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card-pro img {
    height: 180px;
    object-fit: cover;
}

/* Bölge Linkleri */
.region-link {
    display: block;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    border-left: 3px solid #FFD700;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.region-link:hover {
    background: #FFD700;
    color: #000;
    padding-left: 20px;
}

/* Galeri */
.gallery-img {
    cursor: pointer;
    transition: transform 0.3s;
    border-radius: 8px;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Footer Hizmetler */
.footer-services a:hover {
    color: #FFD700 !important;
}

/* Mobil İyileştirmeler */
@media (max-width: 768px) {
    .main-slider-img { height: 50vh; }
    .carousel-caption { width: 90%; left: 5%; bottom: 10%; }
    .carousel-caption h2 { font-size: 1.8rem; }
    .service-card-pro img { height: 130px; }
}