/* Layout */
.blu-demo-hero {
    width: 100%;
    background-color: #ffffff;
    padding-top: 64px;
}

.blu-demo-container, .blu-demo-form-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.blu-demo-text-wrap {
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

/* Typography */
.blu-demo-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    line-height: 1.2;
    color: #000;
}

.blu-demo-subtitle {
    font-size: 20px;
    color: #4b5563; /* gray-600 */
    line-height: 1.4;
}

/* Form Section */
.blu-demo-form-section {
    width: 100%;
    background-color: #ffffff;
    padding: 64px 0;
}

.blu-demo-form {
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blu-input-group {
    width: 100%;
}

.blu-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151; /* gray-700 */
    margin-bottom: 8px;
    text-align: start;
}

.blu-req {
    color: #ef4444; /* red-500 */
    margin-left: 4px;
}

/* Inputs */
.blu-input-field {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb; /* gray-200 */
    font-size: 16px;
    text-align: start;
    outline: none;
    transition: all 0.2s;
    background-color: #fff;
    color: #000;
}

.blu-input-field:focus {
    border-color: transparent;
    box-shadow: 0 0 0 2px #3b82f6; /* blue-500 ring */
}

/* Select */
.blu-select-wrapper {
    position: relative;
}

.blu-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px; /* Space for arrow */
}

.blu-select-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    pointer-events: none;
    width: 20px;
    height: 20px;
    color: #9ca3af; /* gray-400 */
}

/* RTL Arrow */
:lang(ar) .blu-select-arrow {
    right: auto;
    left: 16px;
}
:lang(ar) .blu-select {
    padding-right: 16px;
    padding-left: 40px;
}

/* Button */
.blu-submit-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    background-color: #3b82f6; /* blue-500 */
    color: white;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blu-submit-btn:hover {
    background-color: #2563eb; /* blue-600 */
}

/* Responsive */
@media (min-width: 768px) {
    .blu-demo-title {
        font-size: 60px;
    }
}