/* Contact Page Styles */

.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #fef6e4 100%);
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    min-height: auto;
    height: auto;
    overflow: visible;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: auto;
}

footer {
    position: relative;
    z-index: 10;
    margin-top: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.contact-section .bg-white {
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

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

.contact-section .w-40 {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.contact-section img {
    transition: transform 0.3s;
}

.contact-section img:hover {
    transform: scale(1.05) rotate(-2deg);
}

#contactForm input, #contactForm textarea {
    transition: border-color 0.2s, box-shadow 0.2s;
}

#contactForm input:focus, #contactForm textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px #2563eb33;
}

#contactForm button {
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.10);
}

#contactStatus {
    min-height: 1.5em;
}

@media (max-width: 640px) {
    .contact-section .w-40, .contact-section .h-40 {
        width: 6rem;
        height: 6rem;
    }
    .contact-section img {
        width: 3.5rem;
        height: 3.5rem;
    }
    .contact-section h1 {
        font-size: 2rem;
    }
    .contact-section .bg-white {
        padding: 1.5rem;
    }
} 