/* --- CONTACT PAGE FOUNDATION --- */

.contact-wrapper {
    padding: 160px 0 100px;
    background: #ffffff;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h1 {
    font-size: 3.5rem;
    color: #1e293b;
}

.text-red {
    background: linear-gradient(90deg, #ff3b30, #34c759, #007aff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* --- GRID LAYOUT --- */

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}


/* --- NEO-FORM STYLE --- */

.neo-form {
    background: #f8fafc;
    padding: 50px;
    border-radius: 40px;
    border: 1px solid #e2e8f0;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
    font-size: 14px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    background: white;
    font-family: inherit;
    transition: 0.3s;
}


/* Focus colors based on RGB system */

.input-group input:focus {
    border-color: #007aff;
    outline: none;
    box-shadow: 0 0 15px rgba(0, 122, 255, 0.1);
}

.btn-send {
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    border: none;
    background: #0f172a;
    color: white;
    font-weight: 800;
    cursor: pointer;
    transition: 0.4s;
}

.btn-send:hover {
    background: #007aff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.3);
}


/* --- SIDEBAR INFO CARDS --- */

.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 25px;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.info-card i {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.info-card h4 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.info-card p {
    color: #64748b;
    font-size: 14px;
}

.border-blue:hover {
    border-color: #007aff;
    background: #f0f7ff;
}

.border-green:hover {
    border-color: #34c759;
    background: #f0fdf4;
}

.border-red:hover {
    border-color: #ff3b30;
    background: #fff5f5;
}

.text-blue {
    color: #007aff;
}

.text-green {
    color: #34c759;
}

.text-red {
    color: #ff3b30;
}

/* Alert Messages */
.alert {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}











