/* --- CONTACT PAGE STYLES --- */

/* 1. Bilgi Kartları */
.contact-info-wrapper {
    padding-right: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(227, 30, 36, 0.1);
    border-color: var(--ces-red);
    transform: translateX(10px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--ces-blue-neon);
    margin-right: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.info-card:hover .icon-box {
    background: var(--ces-red);
    color: #fff;
    border-color: var(--ces-red);
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.4);
}

/* 2. Form Stilleri (Şeffaf) */
.custom-floating .form-control {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border-radius: 4px;
}

.custom-floating .form-control:focus {
    background: rgba(0, 0, 0, 0.5) !important;
    border-color: var(--ces-blue-neon);
    box-shadow: 0 0 10px rgba(46, 117, 255, 0.2);
}

.custom-floating label {
    color: rgba(255, 255, 255, 0.5);
}

.custom-floating .form-control:focus ~ label,
.custom-floating .form-control:not(:placeholder-shown) ~ label {
    color: var(--ces-blue-neon);
    background: transparent;
}

/* 3. Sosyal Medya Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.social-btn {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 20px;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--ces-blue);
    color: #fff;
    border-color: var(--ces-blue-neon);
    transform: translateY(-5px);
}

/* 4. Harita Bölümü (Taktiksel Görünüm) */
.map-section {
    border-top: 1px solid var(--ces-red);
    position: relative;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(46, 117, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 117, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none; /* Harita kullanımını engellemesin */
    z-index: 1;
    box-shadow: inset 0 0 100px #020610;
}

/* 5. Dikey Çizgiler (Süsleme) */
.hud-line-vertical {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}
.hud-line-vertical.left { left: 50px; }
.hud-line-vertical.right { right: 50px; }

@media (max-width: 991px) {
    .hud-line-vertical { display: none; }
}

/* 6. MODAL STYLES (Quote.css'den alındı - tekrar gerekebilir) */
.ces-modal-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 6, 16, 0.9); backdrop-filter: blur(10px);
    z-index: 20000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.ces-modal-backdrop.show { opacity: 1; visibility: visible; }
.ces-modal-box {
    background: rgba(11, 18, 33, 0.95); border: 1px solid var(--glass-border);
    width: 100%; max-width: 450px; padding: 40px; border-radius: 8px;
    text-align: center; position: relative; transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 50px rgba(46, 117, 255, 0.2);
}
.ces-modal-backdrop.show .ces-modal-box { transform: scale(1); }
.modal-line {
    position: absolute; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--ces-blue-neon), transparent);
}
.modal-line.top { top: 0; } .modal-line.bottom { bottom: 0; }
.modal-icon {
    position: relative; width: 80px; height: 80px; margin: 0 auto 25px auto;
    display: flex; align-items: center; justify-content: center;
}
.modal-icon i { font-size: 40px; color: #10b981; z-index: 2; }
.icon-circle {
    position: absolute; inset: 0; border: 2px solid #10b981; border-radius: 50%;
    animation: pulseGreen 2s infinite;
}
.modal-title { color: #fff; font-size: 24px; font-weight: 700; letter-spacing: 2px; margin-bottom: 10px; }
.modal-text { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.modal-info {
    display: flex; justify-content: space-between; background: rgba(255,255,255,0.03);
    padding: 10px 15px; border-radius: 4px; margin-top: 20px;
    font-family: 'Courier New', monospace; font-size: 12px; color: var(--text-main);
    border: 1px dashed rgba(255,255,255,0.1);
}
@keyframes pulseGreen {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1.2); opacity: 0; box-shadow: 0 0 0 20px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); opacity: 0; }
}