/* =============================================
   İLETİŞİM SAYFASI ÖZEL STİLLERİ
   ============================================= */

.contact-hero {
    margin-top: 95px;
    background: linear-gradient(rgba(44, 44, 44, 0.3), rgba(44, 44, 44, 0.3)), 
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600&q=80');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3em;
    font-weight: 300;
    letter-spacing: 6px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-hero p {
    font-size: 1em;
    margin-top: 15px;
    letter-spacing: 2px;
    font-family: 'Helvetica', sans-serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5%;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.contact-intro h2 {
    font-size: 2em;
    color: #2C2C2C;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 3px;
}

.contact-intro p {
    font-size: 1em;
    color: #999;
    line-height: 1.8;
    font-family: 'Helvetica', sans-serif;
}

/* İletişim Kartları */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.contact-card {
    background: #FAFAFA;
    border: 1px solid #F0F0F0;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: #FFFFFF;
    border-color: #E0E0E0;
    transform: translateY(-3px);
}

.card-icon {
    display: none;
}

.contact-card h3 {
    font-size: 0.75em;
    color: #C19882;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 2px;
    font-family: 'Helvetica', sans-serif;
    text-transform: uppercase;
}

.contact-card p {
    color: #333;
    font-size: 0.95em;
    line-height: 1.6;
    font-family: 'Helvetica', sans-serif;
    margin-bottom: 5px;
    font-weight: 300;
}

.contact-card a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #C19882;
}

.card-desc {
    font-size: 0.8em !important;
    color: #BBB !important;
    font-style: italic;
    margin-top: 10px;
}

/* Harita Bölümü */
.map-section {
    margin-top: 60px;
}

.map-section h3 {
    font-size: 2em;
    color: #2C2C2C;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
}

.map-subtitle {
    text-align: center;
    font-size: 0.9em;
    color: #BBB;
    margin-bottom: 35px;
    font-family: 'Helvetica', sans-serif;
    font-style: italic;
    letter-spacing: 0.5px;
}

.map-container {
    width: 100%;
    height: 450px;
    border: 1px solid #F0F0F0;
    border-radius: 0;
    overflow: hidden;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 40vh;
    }

    .contact-hero h1 {
        font-size: 2.2em;
        letter-spacing: 4px;
    }

    .contact-intro h2 {
        font-size: 1.8em;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .instagram-section {
        padding: 40px 5%;
    }

    .instagram-text h3 {
        font-size: 1.6em;
    }

    .map-section h3 {
        font-size: 1.8em;
    }

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

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.8em;
        letter-spacing: 3px;
    }

    .contact-hero p {
        font-size: 0.9em;
    }

    .contact-card {
        padding: 25px 18px;
    }
}