/* İletişim Sayfası Stilleri */

.page-header {
    background: linear-gradient(135deg, #2C2C2C 0%, #4A4A4A 100%);
    padding: 100px 0 80px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.contact-section {
    padding: 60px 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 30px;
}

.contact-intro h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
}

.map-container iframe {
    min-height: 450px;
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Harita overlay'ini kaldır */
.map-container::before {
    content: none;
}

.contact-info-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2C2C2C, #4A4A4A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content a {
    color: #C19882;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #2C2C2C;
}

.info-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.cta-contact {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-contact p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-light-custom {
    background: white;
    color: #1a1a1a;
    border: 2px solid white;
}

.btn-light-custom:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-success {
    background: #25D366;
    border: 2px solid #25D366;
    color: white;
}

.btn-success:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .contact-intro h2 {
        font-size: 1.6rem;
    }

    .contact-intro p {
        font-size: 1rem;
    }

    .contact-info-box {
        margin-top: 30px;
    }

    .map-container iframe {
        min-height: 350px;
    }

    .cta-contact h2 {
        font-size: 1.8rem;
    }

    .cta-contact p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}