 
.contact-info-card {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 18px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);

    border-color: #bfdbfe;

    background: #f8fbff;

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.07);
}


/* =========================================================
   CONTACT ICON
========================================================= */

.contact-info-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eff6ff;

    color: #1d4ed8;

    font-size: 20px;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: #dbeafe;

    transform: scale(1.05);
}


/* =========================================================
   CONTACT TEXT
========================================================= */

.contact-info-card span {
    display: block;

    margin-bottom: 4px;

    color: #64748b;

    font-size: 13px;
}

.contact-info-card strong {
    display: block;

    color: #0f172a;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.5;

    word-break: break-word;
}


/* =========================================================
   CONTACT FORM WRAPPER
========================================================= */

.contact-form-wrapper {
    padding: 32px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 20px;

    box-shadow:
        0 12px 35px
        rgba(15, 23, 42, 0.07);
}


/* =========================================================
   FORM LABELS
========================================================= */

.contact-label {
    display: block;

    margin-bottom: 8px;

    color: #334155;

    font-size: 14px;

    font-weight: 600;
}

.contact-label span {
    color: #dc2626;

    margin-left: 2px;
}


/* =========================================================
   FORM INPUTS
========================================================= */

.contact-input {
    width: 100%;

    min-height: 48px;

    padding: 12px 14px;

    border: 1px solid #cbd5e1;

    border-radius: 10px;

    background: #ffffff;

    color: #0f172a;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.contact-input::placeholder {
    color: #94a3b8;
}

.contact-input:hover {
    border-color: #94a3b8;
}

.contact-input:focus {
    border-color: #2563eb;

    background: #ffffff;

    box-shadow:
        0 0 0 3px
        rgba(37, 99, 235, 0.12);
}


/* Select */

select.contact-input {
    cursor: pointer;

    appearance: auto;
}


/* Textarea */

textarea.contact-input {
    min-height: 150px;

    line-height: 1.6;

    resize: vertical;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-btn {
    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 24px;

    padding: 14px 20px;

    border: none;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    color: #ffffff;

    font-family: inherit;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 8px 20px
        rgba(37, 99, 235, 0.20);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px
        rgba(37, 99, 235, 0.28);

    background:
        linear-gradient(
            135deg,
            #1d4ed8,
            #1e3a8a
        );
}

.contact-submit-btn:active {
    transform: translateY(0);
}


/* Arrow */

.contact-submit-btn span {
    font-size: 18px;

    transition:
        transform 0.25s ease;
}

.contact-submit-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   FORM VALIDATION
========================================================= */

.contact-input:invalid:not(:placeholder-shown) {
    border-color: #fca5a5;
}

.contact-input:valid:not(:placeholder-shown) {
    border-color: #cbd5e1;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.contact-info-card:focus-visible,
.contact-submit-btn:focus-visible,
.contact-input:focus-visible {
    outline:
        3px solid
        rgba(37, 99, 235, 0.20);

    outline-offset: 2px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-form-wrapper {
        padding: 24px;

        border-radius: 16px;
    }

    .contact-info-card {
        padding: 15px;

        gap: 13px;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;

        min-width: 44px;

        font-size: 18px;
    }

    .contact-info-card strong {
        font-size: 13px;
    }

    .contact-input {
        min-height: 46px;

        padding: 11px 13px;
    }

    textarea.contact-input {
        min-height: 135px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .contact-form-wrapper {
        padding: 20px;

        border-radius: 14px;
    }

    .contact-info-card {
        align-items: flex-start;
    }

    .contact-info-icon {
        margin-top: 2px;
    }

    .contact-submit-btn {
        min-height: 50px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-info-card,
    .contact-info-icon,
    .contact-submit-btn,
    .contact-submit-btn span {
        transition: none;
    }

}