/* ÖZEL CSS TANIMLAMALARI */
:root {
    --primary-orange: #ff6600;
    /* Vurgu rengimiz */
    --dark-bg: #212529;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Özel Turuncu Buton */
.btn-orange {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    font-weight: 600;
}

.btn-orange:hover {
    background-color: #e65c00;
    color: white;
}

/* Hero Bölümü (Ana Görsel) */
#hero {
    /* Arka plan görseli - Kendi görselinizle değiştirin */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/featured/?motorcycle,garage/1600x900');
    background-size: cover;
    background-position: center;
    height: 80vh;
    /* Ekran yüksekliğinin %80'i */
    display: flex;
    align-items: center;
    color: white;
}

/* Bölüm Başlıkları */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-orange);
    margin: 10px auto 0;
}

/* Hizmet Kartları */
.service-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
}

/* WhatsApp Bölümü Vurgusu */
.whatsapp-box {
    background-color: #dcf8c6;
    /* WhatsApp açık yeşil tonu */
    border-radius: 15px;
    border: 2px solid #25D366;
}