﻿.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border-bottom: 5px solid transparent;
}

    .service-box:hover {
        transform: translateY(-10px);
        border-bottom: 5px solid var(--primary);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-box:hover .icon-circle {
    background: var(--primary);
    color: white;
}

/* İletişim (CTA) Alanı İçin CSS */
.footer-cta {
    background: var(--dark);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Nasıl Çalışıyoruz Süreç CSS */
.step-item {
    position: relative;
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 45px;
    height: 45px;
    background: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 42px;
    left: 50%;
    width: 100%;
    height: 2px;
    border-top: 2px dashed #ddd;
    z-index: 1;
}

@media (max-width: 768px) {
    .step-item:not(:last-child)::after {
        display: none;
    }
}
