/* ===================================================================
   CONTACT PAGE STYLES
   =================================================================== */

.contact-page {
    padding-top: 120px;
    /* Navbar payı */
    min-height: 100vh;
}

/* --- Hero Section --- */
.contact-hero {
    text-align: center;
    padding: 60px 20px 80px;
    position: relative;
    z-index: 1;
}

.contact-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    margin-top: 100px;
}

.contact-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* --- Map Section --- */
.contact-map-wrapper {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    /* Dış border/glow efekti */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /* Dark Mode Map Hack: Haritayı koyu tona çevirir */
    filter: grayscale(100%) invert(92%) contrast(83%);
    opacity: 0.8;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.contact-map-wrapper:hover iframe {
    opacity: 1;
    filter: grayscale(100%) invert(92%) contrast(90%);
}

.contact-map-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.3) 100%);
    pointer-events: none;
}

/* --- Contact Info Grid --- */
.contact-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 140px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    /* Ortaya hizalama yerine sola hizalayabiliriz ama ikon vurgusu için orta iyi */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    /* Link ise çizgiyi kaldır */
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* İkon alanı */
.contact-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(114, 211, 128, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    color: var(--green);
}

.contact-card__icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.contact-card:hover .contact-card__icon {
    background: var(--green);
    color: #000;
    transform: scale(1.1) rotate(10deg);
}

/* Metinler */
.contact-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    font-weight: 300;
}

/* Dekoratif efekt */
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-card:hover::before {
    transform: translateX(100%);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero__title {
        font-size: 2.5rem;
    }

    .contact-map-wrapper {
        height: 350px;
    }

    .contact-info {
        padding: 60px 20px 100px;
    }
}