/* Kontak Page Styling */
.kontak-section {
    background: linear-gradient(135deg, #a65ce6 0%, #9042d6 40%, #7d35c0 100%);
    min-height: 85vh;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.kontak-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Typography */
.kontak-section h2,
.kontak-section h6,
.kontak-section h4,
.kontak-section p {
    color: white;
}

.kontak-section h2.display-6 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-item {
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Form Styling - Glassmorphism */
.footer-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 12px 18px;
    transition: all 0.3s ease;
}

.footer-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-input:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1) !important;
}

.btn-primary#footerSubmitBtn {
    background: #ff85a1;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 133, 161, 0.4);
}

.btn-primary#footerSubmitBtn:hover {
    background: #ff6b8e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 133, 161, 0.6);
}

/* Illustration */
.illustration-wrapper img {
    border: 8px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.illustration-wrapper:hover img {
    transform: scale(1.02);
}

/* Social Media Buttons */
.social-btn {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.social-btn:hover {
    background: white;
    color: #9042d6 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-btn:hover span, 
.social-btn:hover i {
    color: #9042d6;
}

@media (max-width: 991px) {
    .illustration-wrapper {
        margin-top: 3rem;
        text-align: center;
    }
}