.contact-container {
    background-color: #ffffff;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
}

/* Sol Taraf: Form Başlığı */
.form-header h2 {
    font-weight: 700;
    color: #212529;
}

/* Form Elemanları */
.form-control {
    border: none;
    border-bottom: 1px solid #ced4da;
    border-radius: 0;
    padding-left: 0;
    box-shadow: none !important;
}
.form-control:focus {
    border-color: #f77f00;
}
.form-label {
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
}
.form-label .required-star {
    color: red;
}

/* Gönder Butonu */
.btn-send {
    background-color: #ff6600;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.btn-send:hover {
    background-color: #e65c00;
    color: white;
    transform: translateY(-2px);
}

/* Captcha Stili */
.captcha-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    letter-spacing: 5px;
    font-weight: bold;
    color: #6c757d;
    text-decoration: line-through;
    user-select: none;
}

/* Sağ Taraf: İletişim Detayları */
.contact-details {
    background-color: #212529;
    color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    height: 100%;
}
.contact-details h3 {
    font-weight: 600;
    margin-bottom: 2rem;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #495057;
}
.contact-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}
.contact-item .icon {
    background-color: #343a40;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-right: 1rem;
}
.contact-item .info h5 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
}
.contact-item .info a, .contact-item .info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-item .info a:hover {
    color: #f77f00;
}

/* Sosyal Medya İkonları */
.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.social-icons li a {
    color: #adb5bd;
    font-size: 1.2rem;
    background-color: #343a40;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icons li a:hover {
    background-color: #f77f00;
    color: white;
    transform: translateY(-3px);
}

#h2iletisim{
    color: #f77f00; /* Turuncu renk */
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
}