/* Yeni Hero Bölümü Stili */
.modern-hero {
    position: relative;
    background-image: url('../../assets/img/technician-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    min-height: 600px;
    overflow: hidden;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.modern-hero .container {
    position: relative;
    z-index: 2;
}

.modern-hero-content {
    max-width: 600px;
}

.modern-hero-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.modern-hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 30px;
}

.video-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e61f1f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-btn:hover {
    background-color: #c41818;
}

.contact-form-box {
    background-color: #1a62c9;
    padding: 30px;
    border-radius: 10px;
    color: #fff;
}

.contact-form-box h4 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.contact-form-box p {
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
}

.contact-form-box .form-control {
    border: none;
    padding: 12px;
    margin-bottom: 15px;
    background-color: rgba(255,255,255,0.9);
    border-radius: 5px;
}

.contact-form-box .form-check {
    margin-bottom: 15px;
}

.contact-form-box button {
    width: 100%;
    background-color: #e61f1f;
    color: white;
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-box button:hover {
    background-color: #c41818;
}

/* Responsive styles */
@media (max-width: 992px) {
    .modern-hero {
        padding: 60px 0;
    }
    
    .modern-hero-heading {
        font-size: 36px;
    }
    
    .contact-form-box {
        margin-top: 40px;
    }
}

.appointment-btn-hero {
    display: inline-block;
    background-color: #e61f1f;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    margin-right: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.appointment-btn-hero:hover {
    background-color: #c41818;
    transform: translateY(-3px);
}
