/* ===================================================
   CONTACT PAGE CSS
   =================================================== */

.contact-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.contact-hero p {
    color: #94a3b8;
    font-size: 1.05rem;
}

.contact-section {
    padding: 40px 0 80px;
}

/* ====== INFO CARD ====== */
.contact-info-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 32px;
    height: 100%;
}

.light-mode .contact-info-card {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-icon.location {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}

.contact-icon.phone {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    color: #fff;
}

.contact-icon.email {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
}

.contact-icon.wa {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    color: #fff;
}

.contact-info-text h6 {
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: #e2e8f0;
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.5;
}

.light-mode .contact-info-text h6 {
    color: #64748b;
}

.light-mode .contact-info-text p {
    color: #334155;
}

/* ====== FORM CARD ====== */
.contact-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 36px;
    height: 100%;
}

.light-mode .contact-form-card {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form-card h4 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: #f1f5f9;
}

.light-mode .contact-form-card h4 {
    color: #1e293b;
}

/* ====== FORM FIELDS ====== */
.contact-form-card .form-group {
    margin-bottom: 18px;
}

.contact-form-card .form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 7px;
}

.contact-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 11px 15px;
    color: #f1f5f9;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: inherit;
}

.contact-input:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.contact-input::placeholder {
    color: rgba(148, 163, 184, 0.7);
}

.light-mode .contact-input {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #1e293b;
}

.light-mode .contact-input:focus {
    border-color: #0ea5e9;
    background: #fff;
}

.light-mode .contact-input::placeholder {
    color: #94a3b8;
}

textarea.contact-input {
    resize: vertical;
    min-height: 110px;
}

.row-inline {
    display: flex;
    gap: 14px;
}

.row-inline .form-group {
    flex: 1;
}

@media (max-width: 576px) {
    .row-inline {
        flex-direction: column;
        gap: 0;
    }
}

/* ====== SUBMIT BUTTON ====== */
.btn-send {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
    font-weight: 700;
    font-size: 0.97rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    letter-spacing: 0.02em;
}

.btn-send:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-send:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ====== ALERTS ====== */
.alert-success-custom {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert-error-custom {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 0.82rem;
    margin-top: 5px;
}