/* contact.css - Technova Medya İletişim Bölümü (TAM VE EKSİKSİZ VERSİYON) */

.contact {
    position: relative;
    width: 100% !important;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    overflow: hidden;
    padding: 100px 20px;
    display: flex !important;
    flex-direction: column; 
    align-items: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    opacity: 1 !important;
    visibility: visible !important;
}

/* Arkaplan iletişim deseni */
.contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
}

/* Uçan mesaj ikonları */
.message-bubble {
    position: absolute;
    color: #FFD700;
    opacity: 0.1;
    font-size: 2rem;
    pointer-events: none;
    z-index: 1;
    animation: floatMessage 15s ease-in-out infinite;
}

.message-bubble-1 { top: 10%; left: 5%; animation-delay: 0s; }
.message-bubble-2 { top: 20%; right: 8%; animation-delay: 3s; }
.message-bubble-3 { bottom: 15%; left: 10%; animation-delay: 6s; }
.message-bubble-4 { bottom: 25%; right: 12%; animation-delay: 9s; }

@keyframes floatMessage {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(10deg); }
    50% { transform: translate(10px, -60px) rotate(-5deg); }
    75% { transform: translate(-20px, -30px) rotate(8deg); }
}

.contact-container {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    z-index: 10;
}

/* Bölüm Başlığı */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.section-title span {
    color: #FFD700;
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 215, 0, 0.3);
    z-index: -1;
}

.section-description {
    font-size: 1.1rem;
    color: #CCCCCC;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* İletişim Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

/* ===== SOL TARAF - İLETİŞİM BİLGİLERİ ===== */
.contact-info {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.03), transparent);
    animation: contactShimmer 8s infinite;
}

@keyframes contactShimmer {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.info-title {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0; width: 60px; height: 3px;
    background: #FFD700;
}

/* İletişim Kartları */
.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover {
    border-color: #FFD700;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.info-card:hover::before { left: 100%; }

.info-icon {
    width: 60px; height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px dashed #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #FFD700;
    animation: iconRotate 10s linear infinite;
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.info-content { flex: 1; }
.info-label { font-size: 0.9rem; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.3rem; opacity: 0.8; }
.info-value { font-size: 1.2rem; color: #FFFFFF; font-weight: 500; text-decoration: none; transition: color 0.3s ease; display: inline-block; }
.info-value:hover { color: #FFD700; }

/* WhatsApp Özel Stil */
.info-card.whatsapp .info-icon { background: rgba(37, 211, 102, 0.1); border-color: #25D366; color: #25D366; }
.info-card.whatsapp:hover { border-color: #25D366; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2); }

/* Sosyal Medya Bağlantıları */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.social-link {
    width: 50px; height: 50px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover {
    background: #FFD700; color: #000000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.social-link:hover::before { left: 100%; }

/* ===== SAĞ TARAF - İLETİŞİM FORMU ===== */
.contact-form-container {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    position: relative;
}

.form-title { font-size: 1.8rem; color: #FFFFFF; margin-bottom: 2rem; }
.form-title span { color: #FFD700; }
.form-group { position: relative; margin-bottom: 2rem; }

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-input:focus {
    outline: none; border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.form-label {
    position: absolute;
    left: 1.5rem; top: 50%;
    transform: translateY(-50%);
    color: #999; font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
    color: #FFD700;
    background: #0a0a0a;
}

textarea.form-input { min-height: 150px; resize: vertical; }
textarea.form-input ~ .form-label { top: 1.5rem; transform: translateY(0); }
textarea.form-input:focus ~ .form-label,
textarea.form-input:not(:placeholder-shown) ~ .form-label { top: 0; }

.form-btn {
    width: 100%; padding: 1.2rem;
    background: transparent;
    border: 2px solid #FFD700;
    border-radius: 15px;
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}

.form-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-btn:hover { background: #FFD700; color: #000000; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }
.form-btn:hover::before { left: 100%; }

.form-status { margin-top: 1rem; padding: 1rem; border-radius: 10px; text-align: center; font-size: 0.95rem; animation: slideUp 0.3s ease; }
.form-status.success { background: rgba(0, 255, 0, 0.1); border: 1px solid #00ff00; color: #00ff00; }
.form-status.error { background: rgba(255, 0, 0, 0.1); border: 1px solid #ff0000; color: #ff0000; }

@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ======================================================== */
/* YENİ: PREMIUM BÜYÜK DIJITAL KARTVIZIT CTA ALANI */
/* ======================================================== */
.vcard-cta {
    margin-top: 5rem;
    width: 100%;
    background: rgba(255, 215, 0, 0.04);
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 30px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vcard-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    animation: rotateGradient 12s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.vcard-icon-main { font-size: clamp(3.5rem, 6vw, 5rem); color: #FFD700; margin-bottom: 1.5rem; filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4)); animation: iconPulsePremium 2.5s infinite; }
@keyframes iconPulsePremium { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

.vcard-title { font-size: clamp(2rem, 4vw, 3rem); color: #FFFFFF; font-weight: 800; margin-bottom: 1rem; }
.vcard-title span { color: #FFD700; }
.vcard-text { color: #CCCCCC; font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 800px; margin: 0 auto 2.5rem; line-height: 1.8; }

.vcard-btn-premium {
    display: inline-flex; align-items: center; gap: 18px; padding: 22px 60px;
    background: transparent; border: 4px solid #FFD700; border-radius: 100px;
    color: #FFD700; text-decoration: none; font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 800; text-transform: uppercase; letter-spacing: 3px; transition: all 0.4s ease;
}

.vcard-btn-premium:hover { background: #FFD700; color: #000000; transform: translateY(-8px) scale(1.03); box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5); }

/* ========== RESPONSIVE TASARIM (KESİN DÜZENLEME) ========== */

@media (max-width: 1024px) {
    .contact-grid { gap: 2rem; }
}

@media (max-width: 768px) {
    /* SIRALAMA: Bilgiler -> Form -> Kartvizit */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }

    .contact { padding: 80px 15px !important; }
    .section-title { font-size: 2.2rem; }

    .vcard-cta { padding: 3rem 1.5rem; margin-top: 3rem; }
    .vcard-btn-premium { width: 100%; justify-content: center; padding: 16px; font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .section-title { font-size: 1.8rem; }
    .info-card { flex-direction: column; text-align: center; }
    .social-links { justify-content: center; }
}