.rtl-form {
    direction: rtl;
    text-align: right;
}

p {
    line-height: 1.9;
}

/* HERO */
.hero-title {
    font-size: 2rem;
}

.hero-subtitle {
    font-size: 1rem;
}

/* FORM CONTAINER */
.rtl-form {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Labels */
.rtl-form label {
    display: block;
    text-align: right;
    font-weight: 600;
    margin-bottom: 8px;
    color: #212529;
}

/* Inputs */
.rtl-form input,
.rtl-form textarea,
.rtl-form select {
    direction: rtl;
    text-align: right;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

/* Focus */
.rtl-form input:focus,
.rtl-form textarea:focus,
.rtl-form select:focus,
.rtl-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
}

/* Error messages */
.rtl-form .invalid-feedback {
    display: block;
    text-align: right;
    font-size: 0.875rem;
    margin-top: 4px;
}

/* CTA */
.cta-buttons {
    gap: 0.75rem;
}

.cta-btn {
    white-space: nowrap;
}

/* Button */
.rtl-form button {
    transition: all 0.3s ease;
}

.rtl-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* MOBILE */
@media (max-width: 576px) {

    .hero-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .rtl-form {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .rtl-form .form-control {
        margin-bottom: 6px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
    }

    /* Remove hover effects on mobile */
    .rtl-form button:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }
}