/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
@media only screen and (max-width: 600px) {
  body {
    padding-top: 60px;
  }
}
/* Hero Bölümü */
.hero-section {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 71, 161, 0.8) 0%, transparent 100%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 5;
}

/* Butonlar */
.btn-primary {
    background-color: #0d47a1;
    border-color: #0d47a1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #083378;
    border-color: #083378;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.18);
}

.btn-success {
    background-color: #25d366;
    border-color: #25d366;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-success:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.18);
}

.btn-outline-secondary {
    border-color: #dddddd;
    color: #555555;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-outline-secondary:hover {
    background-color: #f5f5f5;
    border-color: #bbbbbb;
    color: #333333;
}

.hero-cta-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Kartlar */
.card {
    transition: transform 0.3s ease;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card img {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

/* Galeri */
.gallery-item {
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
    border-radius: 8px;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.15);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
    text-decoration: none;
}

/* Responsive Ayarlamalar */
@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta-buttons .btn {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .gallery-item img {
        height: 220px;
    }
} 