/* ===== HERO ===== */
.contact-hero{
    position:relative;
    height:55vh;
    min-height:350px;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    color:#fff;

    background: radial-gradient(circle at top, #1a1a1a, #0d0d0d);
    overflow:hidden;
}

/* ışık efekti */
.contact-hero::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background: radial-gradient(circle, rgba(201,162,77,0.15), transparent 70%);
    top:-50px;
    left:50%;
    transform:translateX(-50%);
}

/* içerik */
.contact-hero-content{
    position:relative;
    z-index:2;
    max-width:600px;
    padding:0 20px;

    transform: translateY(30px); /* 🔥 navbar fix */
}

/* LOGO */
.contact-logo{
    height:130px;
    filter: drop-shadow(0 0 20px rgba(201,162,77,0.4));
    transition:.3s;
}

.contact-logo:hover{
    transform:scale(1.05);
}

/* BAŞLIK */
.contact-hero-content h1{
    font-family:'Playfair Display',serif;
    font-size:42px;
    letter-spacing:2px;
    margin-bottom:10px;
}

/* ALT METİN */
.contact-hero-content p{
    font-size:15px;
    color:#c9a24d;
    opacity:0.9;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

.contact-hero{
    height:40vh;
    min-height:260px;
}

.contact-hero-content{
    transform: translateY(50px); /* mobilde daha az */
}

.contact-logo{
    height:100px;
}

.contact-hero-content h1{
    font-size:24px;
}

.contact-hero-content p{
    font-size:13px;
}

}


/* ===== SECTION ===== */
.contact-social-section{
    padding:40px 20px 80px;
    background:#0d0d0d;
}

/* GRID (desktop) */
.contact-social-grid{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* CARD */
.contact-social-card{
    width:110px;
    height:110px;
    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);
    transition:0.4s;
}

/* ICON */
.contact-social-card i{
    font-size:42px;
    transition:0.3s;
}

/* HOVER */
.contact-social-card:hover{
    transform:translateY(-6px);
    border-color:#c9a24d;
    box-shadow:0 10px 25px rgba(201,162,77,0.25);
}

.contact-social-card:hover i{
    transform:scale(1.15);
}

/* PLATFORM COLORS */
.contact-social-card.instagram i{ color:#e1306c; }
.contact-social-card.telegram i{ color:#0088cc; }
.contact-social-card.mail i{ color:#c6c6c6; }
.contact-social-card.twitter i{ color:#787f80; }

/* ===== MOBILE ===== */
@media(max-width:768px){

.contact-social-section{
    padding:30px 15px 60px;
}

/* 🔥 4'LÜ GRID */
.contact-social-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
}

/* 🔥 kart küçült */
.contact-social-card{
    width:100%;
    height:70px;
    border-radius:12px;
}

/* 🔥 ikon dengesi */
.contact-social-card i{
    font-size:24px;
}

}

/*Logo*/

.logo-separator {

    padding: 60px 0; /* Bölümler arası nefes alması için boşluk */
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper {
    max-width: 150px; /* Logonun boyutunu buradan kontrol edebilirsin */
    transition: transform 0.5s ease;
    cursor: pointer;
}

.premium-logo {
    width: 100%;
    height: auto;
    /* Logonun etrafına çok hafif, premium bir ışıltı (parlama) ekler */
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.15));
    transition: filter 0.5s ease;
}

/* Üstüne gelindiğinde hafif bir parlama ve büyüme */
.logo-wrapper:hover {
    transform: scale(1.10);
}

.logo-wrapper:hover .premium-logo {
    filter: drop-shadow(0 0 25px rgb(255, 191, 0));
}



/* ===== INFO ===== */
/* ===== CSS DEĞİŞKENLERİ (Renk Yönetimi İçin) ===== */
:root {
    --bg-dark: #0d0d0d;
    --card-dark: #161616;
    --gold: #c9a24d;
    --gold-light: #e6c57a;
    --text-muted: #888888;
    --text-light: #f5f5f5;
    --text-dark: #0a0a0a;
}

/* Genel Kapsayıcı */
.premium-contact-panel {
    padding: 40px 20px 100px;
    background: var(--bg-dark);
    font-family: 'Poppins', sans-serif;
}

/* Kutu Tasarımı */
.pc-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.5fr; /* Sol taraf biraz daha dar, sağ daha ferah */
    border-radius: 24px;
    overflow: hidden;
    background: var(--card-dark);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 
                inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

/* ===== SOL PANEL (Altın) ===== */
.pc-left {
    padding: 70px 50px;
    background: linear-gradient(135deg, #d4af37 0%, #b38b22 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Efektli Işıltı */
.pc-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    top: -150px;
    left: -100px;
    pointer-events: none;
}

.pc-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.2;
    position: relative;
}

.pc-left p {
    color: rgba(10, 10, 10, 0.85);
    line-height: 1.8;
    font-size: 15px;
    position: relative;
}

/* ===== SAĞ PANEL (Koyu Antrasit) ===== */
.pc-right {
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pc-right h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* İletişim Bilgileri Listesi */
.pc-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Tekil İletişim Satırı */
.pc-info-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 15px;
    margin: -15px; /* Padding alanını dengelemek için */
    border-radius: 16px;
    transition: all 0.3s ease;
}

/* İkon Kutusu */
.pc-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.pc-icon svg {
    width: 22px;
    height: 22px;
}

/* Metin Alanı */
.pc-text span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    font-weight: 500;
}

.pc-text strong {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

/* ===== HOVER EFEKTLERİ ===== */
.pc-info-item:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-3px);
}

.pc-info-item:hover .pc-icon {
    background: var(--gold);
    color: var(--text-dark);
    box-shadow: 0 10px 20px rgba(201, 162, 77, 0.2);
}

.pc-info-item:hover .pc-text strong {
    color: var(--gold-light);
}

/* Adres için Tıklanma İptali Görünümü */
div.pc-info-item:hover {
    transform: none;
    background: transparent;
}
div.pc-info-item:hover .pc-icon {
    background: rgba(255, 255, 255, 0.03);
    color: var(--gold);
    box-shadow: none;
}
div.pc-info-item:hover .pc-text strong {
    color: var(--text-light);
}

/* ===== MOBİL UYUM ===== */
@media (max-width: 768px) {
    .premium-contact-panel {
        padding: 30px 15px 60px;
    }

    .pc-container {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .pc-left, .pc-right {
        padding: 40px 25px;
    }

    .pc-left h2 {
        font-size: 32px;
    }

    .pc-right h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}


/* ===== MAP ===== */
        .contact-map {
            padding: 80px 20px;
            background: #0d0d0d;
        }

        /* CONTAINER */
        .map-container {
            max-width: 1100px;
            margin: 0 auto;

            border-radius: 20px;
            overflow: hidden;

            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
        }

        /* MAP */
        .map-container iframe {
            width: 100%;
            height: 450px;
            border: 0;
            display: block;
        }

        @media(max-width:768px) {

            .contact-map {
                padding: 40px 15px;
            }

            .map-container iframe {
                height: 300px;
            }

        }