.fast-message-section {
    width: 100%;
    padding: 46px 24px;
    padding-top: 0;
    background: #f5f5f5;
    overflow: hidden;
}

.fast-message-container {
    max-width: 1180px;
    margin: 0 auto;

    display: flex;
    align-items: stretch;
    gap: 28px;

    padding: 22px;
    padding-top: 0px;
    margin-top: -30px;

    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);

    direction: ltr;
}

.fast-message-image-wrapper {
    flex: 0 0 40%;
    width: 40%;
    min-height: 300px;

    border-radius: 24px;
    overflow: hidden;
    /* background: #e5e7eb; */
}

.fast-message-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.fast-message-content {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fast-message-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin-bottom: 22px;
}

.fast-message-line {
    flex: 1;
    max-width: 110px;
    height: 1px;
    background: linear-gradient(
        to left,
        transparent,
        rgba(29, 78, 216, 0.45),
        transparent
    );
}

.fast-message-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--color-text, #1f2937);
    white-space: nowrap;
}

.fast-message-form {
    width: 100%;
}

.fast-message-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    direction: rtl;
}

.fast-message-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
    direction: rtl;
}

.fast-message-field label {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
}

.fast-message-field input,
.fast-message-field textarea {
    width: 100%;

    border: 1px solid rgba(148, 163, 184, 0.35);
    outline: none;

    background: rgba(255, 255, 255, 0.78);
    color: #1f2937;

    font-family: inherit;
    font-size: 14px;
    font-weight: 500;

    border-radius: 16px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;

}

.fast-message-field input {
    height: 46px;
    padding: 0 14px;
}

.fast-message-field textarea {
    min-height: 105px;
    max-height: 180px;
    padding: 12px 14px;
    resize: vertical;
}

.fast-message-field input::placeholder,
.fast-message-field textarea::placeholder {
    color: #9ca3af;
}

.fast-message-field input:focus,
.fast-message-field textarea:focus {
    border-color: rgba(29, 78, 216, 0.55);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.08);
}

.fast-message-note {
    margin: 2px 0 16px;
    font-size: 13px;
    line-height: 1.9;
    color: #4b5563;
    text-align: center;
    direction: rtl;
}

.fast-message-submit {
    min-width: 132px;
    height: 44px;
    padding: 0 24px;

    border: none;
    border-radius: 14px;

    background: var(--color-primary, #1d4ed8);
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.fast-message-submit:hover {
    background: var(--color-primary-hover, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(29, 78, 216, 0.22);
}

/* Responsive */
@media (max-width: 900px) {
    .fast-message-section {
        padding: 40px 16px;
    }

    .fast-message-container {
        gap: 20px;
        padding: 18px;
        border-radius: 26px;
    }

    .fast-message-image-wrapper {
        flex-basis: 38%;
        width: 38%;
        min-height: 280px;
    }

    .fast-message-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .fast-message-container {
        flex-direction: column;
    }

    .fast-message-image-wrapper {
        width: 100%;
        flex-basis: auto;
        min-height: 220px;
        max-height: 260px;
    }

    .fast-message-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .fast-message-header {
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .fast-message-section {
        padding: 34px 14px;
    }

    .fast-message-container {
        padding: 14px;
        border-radius: 22px;
    }

    .fast-message-image-wrapper {
        min-height: 190px;
        border-radius: 18px;
    }

    .fast-message-title {
        font-size: 21px;
    }

    .fast-message-line {
        max-width: 70px;
    }

    .fast-message-field input {
        height: 44px;
        font-size: 13px;
    }

    .fast-message-field textarea {
        min-height: 96px;
        font-size: 13px;
    }

    .fast-message-submit {
        width: 100%;
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fast-message-submit,
    .fast-message-field input,
    .fast-message-field textarea {
        transition: none !important;
    }

    .fast-message-submit:hover {
        transform: none !important;
    }
}
