/* iletisim.css */

/* General Styles */
body {
    background-color: #f8f9fa;
}

.contact-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Section Title & Description */
.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    color: #7f8c8d;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #3498db;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 20px;
    box-shadow: 0 8px 15px rgba(52, 152, 219, 0.3);
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.info-content p {
    color: #7f8c8d;
    margin-bottom: 3px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-content a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.info-content a:hover {
    color: #3498db;
}

.highlight {
    color: #e74c3c !important;
    font-weight: 600;
}

/* Social Media */
.contact-social {
    margin-top: auto;
}

.social-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-btn.facebook {
    background: #3b5998;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-btn.youtube {
    background: #ff0000;
}

/* Contact Form Box */
.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-header p {
    color: #95a5a6;
    font-size: 0.95rem;
}

.form-floating>.form-control {
    border-radius: 10px;
    border: 2px solid #f0f2f5;
    padding-left: 20px;
}

.form-floating>.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.form-floating>label {
    padding-left: 20px;
    color: #95a5a6;
}

.form-check-label {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.form-check-label a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Map Section */
.map-section {
    position: relative;
    margin-top: 80px;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05));
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }

    .contact-form-box {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-cards {
        gap: 15px;
    }

    .contact-card {
        padding: 20px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 15px;
    }

    .map-section {
        margin-top: 50px;
        height: 350px;
    }
}