/* GENEL AYARLAR */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: #fcfcfc;
}

/* NAVBAR */
.navbar {
    transition: 0.3s all ease;
    padding: 15px 0;
}
.navbar-brand span {
    font-size: 22px;
    letter-spacing: 1px;
}
.nav-link {
    margin: 0 10px;
    color: #555 !important;
}
.nav-link:hover {
    color: #FFB703 !important;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
}
.hero-img {
    border-radius: 30px;
    object-fit: cover;
    max-height: 500px;
}

/* SECTIONS */
.bg-light-gray {
    background-color: #f1f3f5;
}

/* CARDS */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    cursor: default;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* UZMANLIK LİSTESİ */
.custom-list li {
    padding: 10px 0;
    border-bottom: 1px solid #444;
}
.custom-list li i {
    margin-right: 10px;
}

/* BUTONLAR */
.btn-warning {
    background-color: #FFB703;
    border: none;
    color: #000;
}
.btn-warning:hover {
    background-color: #f4a100;
    color: #000;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    line-height: 60px;
    z-index: 9999;
    transition: 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }
    .hero-section .border-start {
        border-start: none !important;
        border-top: 4px solid #FFB703;
        padding-top: 15px;
        padding-left: 0 !important;
    }
}