/* =================================================================
   İLETİŞİM SAYFASINA ÖZEL STİLLER
   ================================================================= */

/* Temel Gövde ve Font Stilleri */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ana Sayfadakiyle Aynı Arka Plan Efekti */
.gradient-bg {
    background-color: #0f172a; /* Fallback color */
    background-image: radial-gradient(circle at top left, rgba(30, 27, 75, 0.8) 0%, #0f172a 30%), radial-gradient(circle at bottom right, rgba(76, 29, 149, 0.7) 0%, #0f172a 40%);
    color: #e2e8f0;
}

/* Parçacık Animasyonu İçin Konumlandırma */
#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Main içeriğinin parçacıkların önünde olmasını sağlar */
main {
    position: relative;
    z-index: 10;
}

/* Kartlar ve Header İçin Cam Efekti */
.glass-effect {
    background-color: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Butonlar İçin Işıma Efekti */
.glow-button {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px 5px rgba(56, 189, 248, 0.4), 0 0 30px 10px rgba(139, 92, 246, 0.3);
    transition: box-shadow 0.3s ease-in-out;
}
.glow-button:hover {
    box-shadow: 0 0 25px 8px rgba(56, 189, 248, 0.6), 0 0 40px 15px rgba(139, 92, 246, 0.4);
}

/* Kaydırma Animasyonu (Scroll Reveal) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* İletişim Kartı Stilleri */
.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

/* 3D Dünya Haritası Konteyneri */
#globe-container {
    min-height: 400px;
    cursor: grab;
    border-radius: 1rem; /* rounded-2xl */
    overflow: hidden;
    position: relative;
}

#globe-container:active {
    cursor: grabbing;
}
