.dot-section {
    padding: 40px 0;
}

.dot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dot-header h2 {
    font-size: 40px;
    color: #412a8f;
    margin-bottom: 10px;
}

.dot-filter {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.dot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dot-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}


.dot-image {
    position: relative;
}

.dot-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.dot-rating {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 700;
}


.dot-status {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #12b76a;
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.dot-content {
    padding: 24px;
}

.dot-content h3 {
    margin: 0;
    font-size: 24px;
}



.dot-specialty-text {
    color: #5b8def;
    margin-top: 8px;
    font-weight: 600;
}

.dot-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    color: #666;
}


.dot-book-btn {
    width: 100%;
    border: none;
    background: #006b8f;
    color: white;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
}

@media (max-width: 991px) {

    .dot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 767px) {

    .dot-grid {
        grid-template-columns: 1fr;
    }

    .dot-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}