/* Modern İletişim Bölümü Stili */
.contact-modern-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.contact-heading {
    text-align: center;
    margin-bottom: 50px;
}

.contact-heading h5 {
    color: #e61f1f;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.contact-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.contact-info-card {
    background-color: #002d62;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.contact-info-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #e61f1f;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-text {
    flex-grow: 1;
}

.contact-info-text h5 {
    font-size: 16px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.contact-info-text p, .contact-info-text a {
    font-size: 16px;
    margin: 0;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

.contact-info-text a:hover {
    color: #e61f1f;
}

.service-regions {
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.service-regions h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.region-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.region-badge {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.region-badge:hover {
    background-color: #e61f1f;
}

.contact-form-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    height: 50px;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 15px;
    color: #555;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #002d62;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
    resize: none;
}

.submit-btn {
    background-color: #e61f1f;
    color: #fff;
    border: none;
    height: 50px;
    padding: 0 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.submit-btn:hover {
    background-color: #c41818;
    transform: translateY(-3px);
}

.submit-btn i {
    margin-left: 10px;
}

/* Google Map Styles */
.contact-map-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.map-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #002d62;
    position: relative;
    padding-bottom: 15px;
}

.map-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #e61f1f;
}

.contact-map {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info {
    padding: 15px 0;
    color: #555;
}

.map-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.directions-link {
    color: #e61f1f;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.directions-link:hover {
    color: #002d62;
    text-decoration: underline;
}

/* Contact Form Section Update */
.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    height: 100%;
}

/* Responsive styles */
@media (max-width: 992px) {
    .contact-info-card {
        margin-bottom: 30px;
    }
    
    .contact-heading h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-info-card, .contact-form-card {
        padding: 30px;
    }
    
    .contact-heading h2 {
        font-size: 28px;
    }
}

/* Responsive map adjustments */
@media (max-width: 991px) {
    .contact-map-wrapper {
        margin-bottom: 30px;
    }
    
    .contact-map {
        height: 300px;
    }
}
