:root {
    --primary-red: #dc3545;
    --dark-bg: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    padding-top: 76px;
}

.navbar {
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.95) !important;
}

.navbar-brand img.logo-img {
    max-width: 180px !important;
    max-height: 45px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: inline-block !important;
}

@media (max-width: 991.98px) {
    .navbar-brand img.logo-img {
        max-width: 120px !important;
        max-height: 35px !important;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img.logo-img {
        max-width: 100px !important;
        max-height: 30px !important;
    }
}

.navbar-brand {
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    line-height: 50px !important;
}

.navbar {
    min-height: 70px !important;
}

.hero-section {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://coresg-normal.trae.ai/api/ide/v1/text_to_image?prompt=professional%20tow%20truck%20service%20rescue%20operation%20high%20quality%20photo&image_size=landscape_16_9') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Slider göstergeleri kırmızı */
.carousel-indicators [data-bs-target] {
    background-color: #dc3545;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #b02a37;
    width: 30px;
    border-radius: 6px;
}

/* Slider okları */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(220, 53, 69, 0.8);
    padding: 30px;
    border-radius: 50%;
    background-size: 50%;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #b02a37);
    border: none;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
}

.btn-success {
    background: linear-gradient(135deg, #198754, #146c43);
    border: none;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.4);
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 135, 84, 0.6);
}

.service-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: linear-gradient(135deg, #dc3545, #b02a37);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
}

.stats-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #dc3545, #b02a37);
    color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.counter {
    font-size: 3rem;
    font-weight: bold;
    color: white;
}

.testimonial-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.star-rating {
    color: #ffc107;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
}

/* Slider için sabit butonları her zaman görünsün */
#mainSlider {
    z-index: 1;
}

/* Sabit Çağrı Butonları */
.fixed-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 9999;
    display: none;
}

.fixed-contact-buttons a {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Sabit butonları büyüt */
.fixed-contact-buttons .btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

/* Diğer butonları büyüt */
.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* Başlığa butonları büyüt */
.navbar .btn {
    padding: 10px 20px;
    font-size: 16px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (min-width: 992px) {
    .fixed-contact-buttons {
        display: flex;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 120px !important;
    }
    
    .stats-card {
        background: linear-gradient(135deg, #dc3545, #b02a37) !important;
    }
    
    .fixed-bottom {
        z-index: 9998 !important;
    }
    
    footer {
        padding-bottom: 120px !important;
    }
    
    footer .text-center p {
        color: #dc3545 !important;
    }
    
    footer .text-center a {
        color: #dc3545 !important;
    }
}
