/* Enhanced Contact Form Styles */

.contact-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 40px 40px;
    /* Grid pattern on form */
}

.contact-info {
    background: rgba(0, 0, 0, 0.2);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff1f3d, #7000ff);
}

.info-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 136, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    color: #00ff88;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
}

.pulse-red {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(0, 255, 136, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.info-items {
    margin: 40px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #ff1f3d;
    /* Red icon matches button */
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.info-item:hover .icon-box {
    background: #ff1f3d;
    color: white;
    transform: rotate(10deg);
}

.contact-form {
    padding: 50px;
    background: rgba(255, 255, 255, 0.01);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Floating Inputs */
.floating-input {
    position: relative;
    margin-bottom: 30px;
}

.floating-input input,
.floating-input textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-color);
    padding: 10px 0;
    color: var(--text-main);
    font-size: 1rem;
    border-radius: 0;
    transition: 0.3s;
}

.floating-input input:focus,
.floating-input textarea:focus {
    outline: none;
    border-color: #ff1f3d;
    background: transparent;
}

.floating-input label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: 0.3s ease all;
}

.floating-input input:focus~label,
.floating-input input:not(:placeholder-shown)~label,
.floating-input textarea:focus~label,
.floating-input textarea:not(:placeholder-shown)~label {
    top: -20px;
    font-size: 0.8rem;
    color: #ff1f3d;
    font-weight: 600;
}

.form-footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 15px;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .contact-info {
        padding: 30px;
    }
}