/* ===== FLOATING LABEL FIELDS ===== */
.contact-field {
    position: relative;
}
.contact-field .contact-input {
    background: transparent !important;
    border: 1px solid #3A3A5A !important;
    border-radius: 8px !important;
    padding: 22px 16px 8px !important;
    color: #fff !important;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}
.contact-field .contact-input:focus {
    border-color: #6c4bd8 !important;
    box-shadow: 0 0 0 3px rgba(108, 75, 216, 0.15) !important;
    outline: none;
}
.contact-field label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6A6A8A;
    pointer-events: none;
    transition: all 0.25s ease;
    margin: 0;
    display: block;
    line-height: 1;
}
.contact-field .contact-textarea ~ label {
    top: 22px;
    transform: none;
}
.contact-field .contact-input:focus ~ label,
.contact-field .contact-input:not(:placeholder-shown) ~ label {
    top: 10px;
    transform: translateY(0);
    font-size: 11px;
    color: #6c4bd8;
}
.contact-field .contact-textarea:focus ~ label,
.contact-field .contact-textarea:not(:placeholder-shown) ~ label {
    top: 10px;
    font-size: 11px;
    color: #6c4bd8;
}

/* ===== CONTACT SUBMIT ===== */
.contact-submit {
    display: block;
    width: 100%;
    height: 50px;
    background: #fff;
    color: #6c4bd8;
    border: none;
    border-radius: 28px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.contact-submit:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 75, 216, 0.3);
}
.contact-submit.sending {
    pointer-events: none;
    opacity: 0.6;
    transform: scale(0.98);
}

/* ===== SUCCESS STATE ===== */
.contact-success {
    display: none;
    text-align: center;
    padding: 50px 20px;
    animation: successFadeIn 0.5s ease forwards;
}
.contact-success.show {
    display: block;
}
.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(108, 75, 216, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #6c4bd8;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
.contact-success h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-success p {
    color: #9e9fb8;
    font-size: 14px;
    margin: 0;
}
@keyframes successFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes successPop {
    0% { transform: scale(0); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-field .contact-input { padding: 20px 14px 8px !important; }
    .contact-field label { left: 14px; font-size: 13px; }
}

/* ===== CONTACT INFO SIDEBAR ===== */
.contact-info-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.contact-info-item:last-child {
    margin-bottom: 0;
}
.contact-info-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(108, 75, 216, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-info-item h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-bottom: 4px;
}
.contact-info-item p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}
.contact-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 991.98px) {
    .contact-info-card {
        margin-top: 30px;
    }
}