/* Landlord Registration Modal Styles */
.landlord-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.landlord-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.landlord-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 550px;
    width: 90%;
    margin: 20px;
    animation: slideUp 0.4s ease-out;
    overflow: hidden;
}

.landlord-modal-header {
    background: linear-gradient(135deg, #6f6259 0%, #5a4f47 100%);
    color: #ffffff;
    padding: 30px;
    text-align: center;
}

.landlord-modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.landlord-modal-icon svg {
    color: #ffffff;
}

.landlord-modal-header h2 {
    color: #ffffff !important;
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.landlord-modal-body {
    padding: 35px 30px;
}

.landlord-modal-message {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 25px;
    text-align: center;
}

.landlord-modal-link-container {
    background: #f8f9fa;
    border-left: 4px solid #6f6259;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.landlord-modal-arrow {
    font-size: 24px;
    flex-shrink: 0;
}

.landlord-modal-link-container strong {
    display: block;
    color: #333333;
    margin-bottom: 8px;
    font-size: 15px;
}

.landlord-modal-link {
    color: #6f6259;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    word-break: break-all;
    transition: all 0.3s ease;
    display: inline-block;
}

.landlord-modal-link:hover {
    color: #5a4f47;
    text-decoration: underline;
}

.landlord-modal-footer-text {
    text-align: center;
    color: #666666;
    font-size: 15px;
    margin: 0;
    font-style: italic;
}

.landlord-modal-actions {
    padding: 0 30px 30px;
    text-align: center;
}

.landlord-modal-btn {
    background: linear-gradient(135deg, #6f6259 0%, #5a4f47 100%);
    color: #ffffff;
    border: none;
    padding: 14px 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 98, 89, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.landlord-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 98, 89, 0.6);
}

.landlord-modal-btn:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .landlord-modal-content {
        max-width: 95%;
        margin: 10px;
    }

    .landlord-modal-header {
        padding: 25px 20px;
    }

    .landlord-modal-header h2 {
        color: #ffffff !important;
        font-size: 22px;
    }

    .landlord-modal-icon {
        width: 70px;
        height: 70px;
    }

    .landlord-modal-icon svg {
        width: 40px;
        height: 40px;
    }

    .landlord-modal-body {
        padding: 25px 20px;
    }

    .landlord-modal-message {
        font-size: 15px;
    }

    .landlord-modal-link-container {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .landlord-modal-arrow {
        font-size: 20px;
    }

    .landlord-modal-actions {
        padding: 0 20px 25px;
    }

    .landlord-modal-btn {
        padding: 12px 40px;
        font-size: 15px;
        width: 100%;
    }
}

/* RTL Support for Arabic */
[dir="rtl"] .landlord-modal-link-container {
    border-left: none;
    border-right: 4px solid #6f6259;
}

[dir="rtl"] .landlord-modal-link-container {
    flex-direction: row-reverse;
}

