/* İletişim Sayfası Stilleri */
.contact-hero {
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.01);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 2rem auto 0;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 4px;
}

.contact-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* İletişim Kartları */
.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.2);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card {
    padding: 2rem;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.info-card:hover {
    transform: translateY(0) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
}

.info-card h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.info-card {
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.time-info, .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.time-info:hover, .contact-info:hover {
    background: rgba(30, 41, 59, 0.5);
}

.time-info span:first-child,
.contact-info span:first-child {
    color: #94A3B8;
    font-size: 0.9rem;
}

.time-info span:last-child,
.contact-info span:last-child {
    color: var(--text-color);
    font-weight: 500;
}

/* Sosyal Medya Bölümü */
.social-media {
    grid-column: 1 / -1;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.social-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.social-media h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(30, 41, 59, 0.4);
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-size: 120% 120% !important;
    color: #fff !important;
    background-position: center center !important;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.social-btn.twitter:hover {
    background: #1DA1F2;
    border-color: transparent;
}

.social-btn.facebook:hover {
    background: #4267B2;
    border-color: transparent;
}

/* Harita Bölümü */
.contact-map {
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
        margin-top: 1.5rem;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-details {
        padding: 1.5rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .social-links {
        flex-direction: column;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        margin-top: 1.2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .contact-details {
        padding: 1rem;
        gap: 1rem;
    }

    .info-card {
        padding: 1.2rem;
    }

    .info-card i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
} 