/* ========================================
   SKYFALL V3 - CONTACT PAGE STYLES
   Modular contact section styling
======================================== */

/* Contact Form Inputs */
.contact-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #fff;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.contact-input:focus {
    outline: none;
    border-color: #ea580c;
    background: rgba(234, 88, 12, 0.05);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.contact-input {
    resize: vertical;
    min-height: 120px;
}

/* Contact Input Group */
.contact-input-group {
    position: relative;
}

.contact-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
}

/* Map Frame */
.contact-map-frame {
    position: relative;
    overflow: hidden;
}

.contact-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Form Success/Error States */
.contact-form-success {
    animation: contactSuccess 0.5s ease forwards;
}

.contact-form-error {
    animation: contactError 0.5s ease;
}

@keyframes contactSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); opacity: 0.9; }
}

@keyframes contactError {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

/* FAQ Accordion Enhancements */
details.hud-card-no3d summary {
    list-style: none;
}

details.hud-card-no3d summary::-webkit-details-marker {
    display: none;
}

details.hud-card-no3d[open] {
    border-color: rgba(234, 88, 12, 0.3);
}

details.hud-card-no3d[open] .hud-corner::before {
    background: #ea580c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-input {
        padding: 0.75rem;
    }

    .contact-map-frame {
        height: 250px;
    }
}
