/* TAM YAPI İletişim Sayfası Özel Stilleri */

/* İletişim Detayları Bölümü */
.contact-details-area {
    padding: 80px 0;
    position: relative;
    background-color: #fff;
}

.contact-details-card {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 1px solid #f1f1f1;
}

.contact-details-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(241, 138, 58, 0.2);
}

.contact-icon {
    font-size: 36px;
    color: #F18A3A;
    margin-bottom: 20px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(241, 138, 58, 0.1);
    transition: all 0.3s ease;
}

.contact-details-card:hover .contact-icon {
    background: #F18A3A;
    color: #fff;
    transform: rotateY(180deg);
}

.contact-details-card h4 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.contact-details-card h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #F18A3A;
}

.contact-details-card p {
    margin-bottom: 5px;
    color: #666;
}

.contact-details-card a {
    color: #666;
    transition: all 0.3s;
}

.contact-details-card a:hover {
    color: #F18A3A;
}

.social-media-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.social-media-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #F18A3A;
    color: #fff;
    border-radius: 50%;
    margin: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.social-media-icons a:hover {
    background: #333;
    transform: translateY(-3px);
}

/* İletişim Formu */
.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f1f1;
}

.form-control {
    height: 50px;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 0 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #F18A3A;
}

textarea.form-control {
    height: auto;
    padding: 15px 20px;
}

.primary-btn {
    font-size: 14px;
    background: #F18A3A;
    padding: 12px 30px;
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    min-width: 150px;
}

.primary-btn:hover {
    background: #e67e24;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 138, 58, 0.3);
}

.form-result {
    display: none;
    font-weight: 500;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Bölüm Başlıkları */
.section-title {
    margin-bottom: 50px;
}

.section-title h4 {
    color: #F18A3A;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-title p {
    color: #777;
    max-width: 650px;
    margin: 0 auto;
}

/* Harita Bölümü */
.map-area {
    position: relative;
    padding-bottom: 60px;
    background-color: #f9f9f9;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.map-direction-button {
    text-align: center;
    margin-top: 30px;
}



/* Responsive Ayarlamalar */
@media (max-width: 991px) {
    .contact-form-card {
        padding: 30px;
        margin-top: 30px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .contact-details-area {
        padding: 60px 0;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .contact-details-card {
        padding: 25px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .contact-form-card {
        padding: 25px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .social-media-icons a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
} 