/* GENEL AYARLAR */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    padding-bottom: 0px; /* Mobilde bar için yer açmak gerekirse artırılır ama fixed overlay daha iyi */
}

/* 1. TOP BAR */
.top-bar {
    background-color: #212529;
    color: white;
    font-size: 0.8rem;
    padding: 10px 0;
}

/* 2. NAVBAR & LOGO */
.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0, #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.custom-phone-btn {
    background-color: #dc3545;
    border: none;
    font-size: 1rem;
    transition: transform 0.2s;
}

.custom-phone-btn:hover {
    background-color: #bb2d3b;
    transform: scale(1.05);
}

/* 3. MARKA SLIDER */
.brand-slider-wrapper {
    width: 100%;
    white-space: nowrap;
    background-color: #f8f9fa;
}

.brand-track {
    display: flex;
    align-items: center;
    animation: slide 40s linear infinite;
}

.brand-item {
    display: flex;
    align-items: center;
    margin: 0 25px;
}

.brand-item img {
    height: 25px;
    width: auto;
    object-fit: contain;
    margin-right: 8px;
}

.brand-item span {
    font-weight: 700;
    color: #444;
    font-size: 0.95rem;
    text-transform: uppercase;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 4. HERO SECTION */
.hero-wrapper {
    width: 100%;
    min-height: 650px;
    overflow: hidden;
    position: relative;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.85) 0%, rgba(168, 18, 31, 0.90) 100%);
    z-index: 1;
}

.title-highlight {
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.title-underline {
    width: 180px;
    height: 4px;
    background-color: #ffc107;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Butonlar */
.btn-custom-red {
    background-color: #dc3545;
    color: white;
    border: 1px solid #dc3545;
}
.btn-custom-red:hover {
    background-color: #bb2d3b;
    color: white;
}

.btn-white-action {
    background-color: #fff;
    color: #333;
    border: none;
}
.btn-white-action:hover {
    background-color: #f1f1f1;
    color: #000;
}

/* Cam Kartlar */
.glass-card {
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: white;
    height: 100%;
    transition: transform 0.3s;
}

.glass-card:hover {
    background: rgba(40, 40, 40, 0.6);
    transform: translateY(-5px);
    border-color: #ffc107;
}

.glass-card .icon-box {
    font-size: 1.8rem;
    color: #ffc107;
    margin-bottom: 5px;
}

/* 5. HİZMETLER BÖLÜMÜ */
.services-section {
    background-color: #f9f9f9;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #dc3545;
}

.service-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-body p {
    flex-grow: 1;
}

.brand-tags small {
    font-size: 0.75rem;
    color: #999;
}

/* 6. LOKASYON KARTLARI */
.location-card {
    background: white;
    border: 1px solid #eee;
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #555;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.location-card:hover {
    border-color: #dc3545;
    color: #dc3545;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* 7. GALERİ */
.gallery-item {
    height: 250px; /* Sabit yükseklik */
}
.gallery-item img {
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* 8. TESTIMONIALS (YORUMLAR) */
.testimonial-card {
    position: relative;
}
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dc3545;
    opacity: 0.5;
}
.carousel-indicators .active {
    opacity: 1;
}

/* 9. MOBİL STICKY BUTTONS (YENİ) */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 10px;
    gap: 10px;
}

.btn-call {
    background-color: #dc3545;
    color: white;
    font-weight: bold;
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}
.btn-call:hover, .btn-call:active {
    background-color: #b02a37;
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-weight: bold;
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-size: 1.1rem;
}
.btn-whatsapp:hover, .btn-whatsapp:active {
    background-color: #128C7E;
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Mobilde alt barın içeriği kapatmaması için */
@media (max-width: 768px) {
    footer {
        padding-bottom: 80px !important; /* Alt bar yüksekliği kadar boşluk */
    }
}