﻿.contact-container {
    padding: 30px 0 60px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    float: left;
    width: 100%;
}

    .page-title i {
        color: #e63946;
    }

.page-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

/* İletişim Kartları */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }

        .contact-card:hover::before {
            transform: scaleX(1);
        }

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
}

.contact-card-icon i {
    font-size: 28px;
    color: #e63946;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon i {
    color: #fff;
}

.contact-card h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.contact-card a {
    color: #e63946;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .contact-card a:hover {
        color: #c1121f;
    }

/* WhatsApp Özel Stil */
.contact-card.whatsapp .contact-card-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

    .contact-card.whatsapp .contact-card-icon i {
        color: #fff;
    }

.contact-card.whatsapp:hover .contact-card-icon {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

    .whatsapp-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
        color: #fff !important;
    }

/* Ana İçerik Alanı */
.contact-main {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

/* İletişim Formu */
.contact-form-section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.section-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .section-header i {
        font-size: 22px;
        color: #e63946;
    }

    .section-header h2 {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
    }

.contact-form {
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

    .form-row.single {
        grid-template-columns: 1fr;
    }

.form-group {
    position: relative;
}

    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #1a1a2e;
        margin-bottom: 8px;
    }

        .form-group label i {
            margin-right: 6px;
            color: #e63946;
        }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e8e8e8;
        border-radius: 10px;
        font-size: 15px;
        transition: all 0.3s ease;
        background: #fafafa;
        box-sizing: border-box;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #e63946;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
        }

    .form-group textarea {
        resize: none;
        height: 140px;
    }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #aaa;
        }

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    }

    .submit-btn i {
        font-size: 18px;
    }

/* Şirket Bilgileri */
.company-info-section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.company-info {
    padding: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 14px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

    .info-item:last-child {
        margin-bottom: 0;
    }

    .info-item:hover {
        background: #f0f0f0;
        transform: translateX(5px);
    }

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        font-size: 20px;
        color: #fff;
    }

.info-content h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: #1a1a2e;
    font-weight: 600;
}

.info-content p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.info-content a {
    color: #e63946;
    text-decoration: none;
    font-weight: 500;
}

    .info-content a:hover {
        text-decoration: underline;
    }

/* Çalışma Saatleri */
.working-hours {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 14px;
    padding: 25px;
    margin-top: 25px;
}

    .working-hours h4 {
        color: #fff;
        margin: 0 0 18px 0;
        font-size: 17px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .working-hours h4 i {
            color: #e63946;
        }

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

    .hours-item span:first-child {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }

    .hours-item span:last-child {
        color: #fff;
        font-weight: 600;
        font-size: 14px;
    }

    .hours-item.closed span:last-child {
        color: #e63946;
    }

/* Sosyal Medya */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 20px;
    transition: all 0.3s ease;
}

    .social-link:hover {
        transform: translateY(-3px);
    }

    .social-link.facebook:hover {
        background: #1877f2;
        color: #fff;
    }

    .social-link.instagram:hover {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        color: #fff;
    }

    .social-link.twitter:hover {
        background: #1da1f2;
        color: #fff;
    }

    .social-link.youtube:hover {
        background: #ff0000;
        color: #fff;
    }

    .social-link.linkedin:hover {
        background: #0077b5;
        color: #fff;
    }

/* Harita Bölümü */
.map-section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.map-container {
    position: relative;
    height: 450px;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 320px;
}

    .map-overlay h4 {
        margin: 0 0 10px 0;
        font-size: 18px;
        color: #1a1a2e;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .map-overlay h4 i {
            color: #e63946;
        }

    .map-overlay p {
        margin: 0 0 15px 0;
        color: #666;
        font-size: 14px;
        line-height: 1.6;
    }

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .directions-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
        color: #fff;
    }

/* Başarı Mesajı */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    display: none;
}

    .alert.show {
        display: flex;
        animation: fadeIn 0.4s ease;
    }

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert i {
    font-size: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-main {
        grid-template-columns: 1fr;
    }

    .map-overlay {
        position: static;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 22px;
    }

    .contact-form,
    .company-info {
        padding: 20px;
    }

    .map-container {
        height: 350px;
    }
}
