/* Business Subscription Styles */
.subscription-plan-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
}

.subscription-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.subscription-plan-card.featured {
    border: 3px solid var(--colorPrimary);
    transform: scale(1.05);
}

.subscription-plan-card.featured .plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--colorPrimary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.plan-price .currency {
    font-size: 20px;
    color: var(--colorPrimary);
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--colorPrimary);
}

.plan-price .period {
    font-size: 16px;
    color: #666;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features ul li:last-child {
    border-bottom: none;
}

.plan-features ul li i {
    color: var(--colorPrimary);
    font-size: 18px;
}

.plan-footer {
    margin-top: 30px;
    text-align: center;
}

.benefit-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--colorPrimary);
    color: #fff;
    transform: translateY(-5px);
}

.benefit-item:hover .benefit-icon {
    background: #fff;
    color: var(--colorPrimary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--colorPrimary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    transition: all 0.3s ease;
}

.benefit-item h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* Mobile App Styles */
.mobile-app-area {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    color: #333;
    position: relative;
    overflow: hidden;
}

.mobile-app-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 180, 126, 0.03) 0%, rgba(241, 99, 76, 0.03) 100%);
    pointer-events: none;
}

.mobile-app-content {
    position: relative;
    z-index: 1;
}

.mobile-app-area .title {
    color: var(--colorBlack) !important;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.mobile-app-area .title span {
    color: var(--colorPrimary) !important;
    display: block;
}

.mobile-app-content p {
    color: #555 !important;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.app-features .feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.app-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.app-features .feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(200, 180, 126, 0.3);
}

.app-features .feature-text h4 {
    color: var(--colorBlack) !important;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
}

.app-features .feature-text p {
    color: #666 !important;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.app-download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--colorBlack);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.app-download-btn:hover {
    background: var(--colorPrimary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.app-download-btn img {
    height: 40px;
}

.app-mockup-placeholder {
    display: block;
    padding: 40px 20px;
}

.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    perspective: 1000px;
}

.phone-screen {
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    border-radius: 30px;
    padding: 40px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.phone-mockup:hover .phone-screen {
    transform: rotateY(0) rotateX(0) scale(1.05);
}

.screen-content {
    text-align: center;
    color: #fff;
}

.screen-content i {
    font-size: 120px;
    margin-bottom: 20px;
    opacity: 0.9;
    display: block;
}

.screen-content h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.screen-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.mobile-app-image img {
    max-width: 100%;
    height: auto;
    display: none;
}

/* How It Works Styles */
.how-it-works-item {
    position: relative;
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.how-it-works-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--colorPrimary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(200, 180, 126, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 5px 20px rgba(200, 180, 126, 0.3);
    transition: all 0.3s ease;
}

.how-it-works-item:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(200, 180, 126, 0.4);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Fixed Price Area Styles */
.fixed-price-content .title {
    color: #333;
}

.fixed-price-image {
    position: relative;
    padding: 20px;
}

.fixed-price-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.fixed-price-image:hover img {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.price-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* RTL Support for benefit items */
[dir="rtl"] .price-benefits .benefit-item {
    flex-direction: row;
    justify-content: flex-end;
}

[dir="rtl"] .price-benefits .benefit-item i {
    margin-left: 10px;
    margin-right: 0;
}

[dir="rtl"] .price-benefits .benefit-item .benefit-content {
    text-align: right;
    flex: 1;
}

[dir="ltr"] .price-benefits .benefit-item {
    flex-direction: row;
}

.price-benefits .benefit-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.price-benefits .benefit-item i {
    color: var(--colorPrimary);
    font-size: 28px;
    flex-shrink: 0;
    min-width: 32px;
    text-align: center;
    margin-top: 5px;
}

.price-benefits .benefit-item span {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Legal Aid Check Styles */
.legal-aid-check-home {
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.legal-aid-check-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 180, 126, 0.1) 0%, rgba(241, 99, 76, 0.1) 100%);
    pointer-events: none;
}

.legal-aid-check-box {
    background: rgba(255, 255, 255, 0.98);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.legal-aid-check-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.legal-aid-check-box .title {
    color: var(--colorBlack);
    font-weight: 700;
}

.legal-aid-check-box p {
    color: var(--paraColor);
    font-size: 16px;
    line-height: 1.8;
}

.check-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 48px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(200, 180, 126, 0.3);
    transition: all 0.3s ease;
}

.check-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(200, 180, 126, 0.4);
}

.legal-aid-check-box .btn-primary {
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(200, 180, 126, 0.3);
}

.legal-aid-check-box .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 180, 126, 0.4);
    background: linear-gradient(135deg, var(--colorSecondary) 0%, var(--colorPrimary) 100%);
}

/* Partnerships Styles */
.partnership-type-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.partnership-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.partnership-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 5px 20px rgba(200, 180, 126, 0.3);
    transition: all 0.3s ease;
}

.partnership-type-card:hover .partnership-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(200, 180, 126, 0.4);
}

.partnership-type-card h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.partnership-type-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.partnership-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partnership-benefits li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.partnership-benefits li i {
    color: var(--colorPrimary);
    font-size: 18px;
}

.partnership-form-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.partnership-form .form-group {
    margin-bottom: 20px;
}

.partnership-form .form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.partnership-info .info-item {
    margin-bottom: 30px;
    padding-left: 50px;
    position: relative;
}

.partnership-info .info-item i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--colorPrimary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.partnership-info .info-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.partnership-info .info-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Legal Aid Check Form Styles */
.legal-aid-check-form {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.check-form .form-group {
    margin-bottom: 25px;
}

.check-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.check-form .form-control {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.check-form .form-control:focus {
    border-color: var(--colorPrimary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(200, 180, 126, 0.1);
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.radio-label:hover {
    border-color: var(--colorPrimary);
    background: rgba(200, 180, 126, 0.05);
}

.radio-label input[type="radio"] {
    margin: 0;
}

.radio-label input[type="radio"]:checked + span {
    color: var(--colorPrimary);
    font-weight: 600;
}

.eligibility-result {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--colorPrimary);
}

.result-content h4 {
    color: var(--colorPrimary);
    font-size: 24px;
    margin-bottom: 15px;
}

.result-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.aid-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.aid-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.aid-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 5px 20px rgba(200, 180, 126, 0.3);
    transition: all 0.3s ease;
}

.aid-info-card:hover .aid-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(200, 180, 126, 0.4);
}

.aid-info-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.aid-info-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* RTL Support */
[dir="rtl"] .subscription-plan-card.featured .plan-badge {
    right: auto;
    left: 20px;
}

[dir="rtl"] .app-features .feature-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .partnership-info .info-item {
    padding-left: 0;
    padding-right: 50px;
}

[dir="rtl"] .partnership-info .info-item i {
    left: auto;
    right: 0;
}

[dir="rtl"] .radio-group {
    direction: rtl;
}

[dir="rtl"] .price-benefits .benefit-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .app-download-buttons {
    direction: rtl;
}

/* Book Appointment Page Styles */
.book-appointment-page {
    background: #f8f9fa;
}

.duration-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.duration-label {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.duration-btn {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
    pointer-events: auto !important;
    z-index: 10;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.duration-btn:hover {
    border-color: var(--colorPrimary);
    color: var(--colorPrimary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.duration-btn.active {
    background: var(--colorPrimary);
    border-color: var(--colorPrimary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.lawyer-booking-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lawyer-booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.lawyer-card-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.lawyer-avatar {
    text-align: center;
}

.lawyer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--colorPrimary);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.2);
}

.lawyer-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.lawyer-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f0f4ff;
    color: var(--colorPrimary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin: 3px;
}

.specialty-badge i {
    font-size: 12px;
}

.lawyer-availability {
    flex: 1;
    min-height: 150px;
    margin-bottom: 20px;
}

.availability-dates {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.available-date {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
}

.date-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.day-name {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.day-number {
    font-size: 14px;
    color: #666;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.time-slot {
    display: inline-block;
    padding: 8px 15px;
    background: #fff;
    border: 2px solid var(--colorPrimary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: var(--colorPrimary);
}

.time-slot:hover {
    background: var(--colorPrimary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.lawyer-card-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.book-lawyer-btn {
    flex: 1;
}

.loading-spinner {
    color: var(--colorPrimary);
}

.loading-spinner i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lawyer-fee {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 15px;
}

.fee-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.fee-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--colorPrimary);
}

.no-availability {
    padding: 30px 20px;
}

.no-availability i {
    opacity: 0.5;
}

.time-slot.selected {
    background: var(--colorPrimary);
    color: #fff;
    border-color: var(--colorPrimary);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
}

.lawyer-booking-card {
    position: relative;
    overflow: hidden;
}

.lawyer-booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.lawyer-booking-card:hover::before {
    transform: scaleX(1);
}

.available-date {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-lawyers-message {
    padding: 60px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-lawyers-message h3 {
    color: #333;
    margin-bottom: 10px;
}

.no-lawyers-message p {
    color: #666;
}

/* RTL Support for Booking */
[dir="rtl"] .duration-selector {
    direction: rtl;
}

[dir="rtl"] .date-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .lawyer-card-footer {
    flex-direction: row-reverse;
}

/* Book Appointment Modal Enhancements */
#bookingModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#bookingModal .modal-header {
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 20px 30px;
}

#bookingModal .modal-header .modal-title {
    font-weight: 700;
    font-size: 22px;
}

#bookingModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

#bookingModal .modal-body {
    padding: 30px;
}

#bookingModal .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

#bookingModal .form-label i {
    color: var(--colorPrimary);
    margin-right: 8px;
}

#bookingModal .form-control,
#bookingModal .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

#bookingModal .form-control:focus,
#bookingModal .form-select:focus {
    border-color: var(--colorPrimary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

#bookingModal .modal-footer {
    border-top: 2px solid #f0f0f0;
    padding: 20px 30px;
}

#bookingModal .btn-primary {
    background: linear-gradient(135deg, var(--colorPrimary) 0%, var(--colorSecondary) 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#bookingModal .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

#bookingModal .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .subscription-plan-card.featured {
        transform: scale(1);
    }
    
    .app-download-buttons {
        flex-direction: column;
    }
    
    .app-download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .radio-group {
        flex-direction: column;
    }
    
    .radio-label {
        width: 100%;
    }
    
    .partnership-form-section,
    .legal-aid-check-form {
        padding: 30px 20px;
    }
    
    .lawyer-booking-card {
        margin-bottom: 20px;
    }
    
    .lawyer-card-footer {
        flex-direction: column;
    }
    
    .lawyer-card-footer .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .time-slots {
        justify-content: center;
    }
    
    .time-slot {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }
    
    #bookingModal .modal-body {
        padding: 20px;
    }
    
    #bookingModal .modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    #bookingModal .modal-footer .btn {
        width: 100%;
    }
}

