/* Contact Section Styles */

.contact-section {
    background: linear-gradient(135deg, #001D24 0%, #001D24 100%);
    position: relative;
}

.contact-bg-pattern {
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(0, 205, 255, 0.02) 100px, rgba(0, 205, 255, 0.02) 101px),
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(0, 205, 255, 0.02) 100px, rgba(0, 205, 255, 0.02) 101px);
}

/* Contact Content */
.contact-content h2 {
    text-shadow: 0 0 30px rgba(0, 205, 255, 0.3);
}

.contact-description-wrapper {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-bullet {
    width: 12px;
    height: 12px;
    min-width: 12px;
    background: #00CDFF;
    border-radius: 50%;
    margin-top: 8px;
    box-shadow: 0 0 10px rgba(0, 205, 255, 0.5);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    font-family: 'Roboto', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 2px rgba(0, 205, 255, 0.5);
}

.contact-submit-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-submit-btn::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;
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 205, 255, 0.3);
}

#form-message {
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

#form-message.success {
    background: rgba(0, 205, 255, 0.1);
    color: #00CDFF;
    border: 1px solid rgba(0, 205, 255, 0.3);
}

#form-message.error {
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-content {
        text-align: center;
    }
    
    .contact-description-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-bullet {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .contact-content h2 {
        font-size: 2rem !important;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem !important;
    }
}

.contact-section-img{
    top: 0;
    right: 0;
    width: 800px;
    transform: translateY(-50%) translateX(41%);
    animation: contactFloat 40s ease-out infinite;
}

.contact-section-img-bottom{
    bottom: 0;
    left: 0;
    width: 600px;
    transform: translateY(39%) translateX(-28%);
    opacity: 0.5;
    animation: contactFloatBottom 40s ease-out infinite;
    animation-delay: -20s;
}

@keyframes contactFloat {
    0% {
        transform: translateY(-50%) translateX(41%) scale(1);
    }
    25% {
        transform: translateY(-53%) translateX(41%) scale(1.03);
    }
    50% {
        transform: translateY(-56%) translateX(41%) scale(1.05);
    }
    75% {
        transform: translateY(-53%) translateX(41%) scale(1.03);
    }
    100% {
        transform: translateY(-50%) translateX(41%) scale(1);
    }
}

@keyframes contactFloatBottom {
    0% {
        transform: translateY(39%) translateX(-28%) scale(1);
    }
    25% {
        transform: translateY(36%) translateX(-28%) scale(1.03);
    }
    50% {
        transform: translateY(33%) translateX(-28%) scale(1.05);
    }
    75% {
        transform: translateY(36%) translateX(-28%) scale(1.03);
    }
    100% {
        transform: translateY(39%) translateX(-28%) scale(1);
    }
}